diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/i3-wm/PKGBUILD | 6 | ||||
-rw-r--r-- | community/ltris/PKGBUILD | 39 | ||||
-rw-r--r-- | community/ltris/ltris.changelog | 25 | ||||
-rw-r--r-- | community/mp3splt-gtk/PKGBUILD | 14 | ||||
-rw-r--r-- | community/openbox/PKGBUILD | 6 | ||||
-rw-r--r-- | community/openbox/openbox.install | 2 | ||||
-rw-r--r-- | community/pcsclite/PKGBUILD | 5 | ||||
-rw-r--r-- | community/soundkonverter/PKGBUILD | 21 | ||||
-rw-r--r-- | community/springlobby/PKGBUILD | 6 | ||||
-rw-r--r-- | community/tilda/PKGBUILD | 32 | ||||
-rw-r--r-- | community/tilda/fix.patch | 16 | ||||
-rw-r--r-- | community/tilda/tilda.changelog | 16 | ||||
-rw-r--r-- | community/viking/PKGBUILD | 17 | ||||
-rw-r--r-- | community/viking/viking.changelog | 9 | ||||
-rw-r--r-- | community/viking/viking.install | 2 |
15 files changed, 139 insertions, 77 deletions
diff --git a/community/i3-wm/PKGBUILD b/community/i3-wm/PKGBUILD index f63ac08fd..4de8eb067 100644 --- a/community/i3-wm/PKGBUILD +++ b/community/i3-wm/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 53231 2011-08-01 21:41:41Z ttopper $ +# $Id: PKGBUILD 54951 2011-08-28 19:13:33Z ttopper $ # Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de> pkgname=i3-wm _pkgsourcename=i3 -pkgver=4.0.1 +pkgver=4.0.2 pkgrel=1 pkgdesc="An improved dynamic tiling window manager" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ optdepends=('rxvt-unicode: The terminal emulator used in the default config.' 'perl: To migrate your configuration to v4 format.') options=('docs' '!strip') source=(http://i3wm.org/downloads/${_pkgsourcename}-${pkgver}.tar.bz2) -md5sums=('87c5961589068269da611b79064c628e') +md5sums=('8b173504824d312a954ccb32b092b068') build() { cd "$srcdir/$_pkgsourcename-$pkgver" diff --git a/community/ltris/PKGBUILD b/community/ltris/PKGBUILD index 4eb9204db..c500494db 100644 --- a/community/ltris/PKGBUILD +++ b/community/ltris/PKGBUILD @@ -1,32 +1,35 @@ -# $Id: PKGBUILD 53908 2011-08-09 20:01:00Z ttopper $ -# Maintainer: Eric Belanger <eric@archlinux.org> +# $Id: PKGBUILD 54927 2011-08-28 13:23:10Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Eric Belanger <eric@archlinux.org> # Contributor: SmackleFunky <smacklefunky@optusnet.com.au> pkgname=ltris -pkgver=1.0.16 +pkgver=1.0.17 pkgrel=1 -pkgdesc="A tetris clone where you have a bowl with blocks falling down." +pkgdesc="A tetris clone where you have a bowl with blocks falling down" arch=('i686' 'x86_64') url="http://lgames.sourceforge.net/index.php?project=LTris" license=('GPL') depends=('sdl_mixer') -install=ltris.install -source=(http://downloads.sourceforge.net/lgames/${pkgname}-${pkgver}.tar.gz) -md5sums=('07b5a41f8de62ea083575384f05545c6') -sha1sums=('08785fc962ed83678b955f61a9a87a0215938123') +install=$pkgname.install +source=(http://downloads.sourceforge.net/lgames/$pkgname-$pkgver.tar.gz) +sha256sums=('b4d2888bc50bb2ad9dd59f97c15fbfaee96c54d86c834f1231cd6e8af66bf52c') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --localstatedir=/var/games make - make DESTDIR="${pkgdir}" install - install -d "${pkgdir}/usr/share/pixmaps" - install -m644 icons/ltris{16,32,48}.xpm "${pkgdir}/usr/share/pixmaps" - - chown root:games "${pkgdir}/usr/bin/ltris" - chmod 2755 "${pkgdir}/usr/bin/ltris" - chown root:games "${pkgdir}/var/games" - chmod 775 "${pkgdir}/var/games" - rm "${pkgdir}/var/games/ltris.hscr" } +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install + + install -d ${pkgdir}/usr/share/pixmaps + install -m644 icons/ltris{16,32,48}.xpm ${pkgdir}/usr/share/pixmaps + + ./configure --prefix=/usr --localstatedir=/var/games + make +} diff --git a/community/ltris/ltris.changelog b/community/ltris/ltris.changelog new file mode 100644 index 000000000..0454493b1 --- /dev/null +++ b/community/ltris/ltris.changelog @@ -0,0 +1,25 @@ +2011-08-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + + * ltris 1.0.17-1 + * Upstream update + +2011-03-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + + * ltris 1.0.16-1 + * Upstream update + +2009-12-29 Eric Belanger <eric@archlinux.org> + + * ltris 1.0.14-1 + * Upstream update + +2009-11-07 Eric Belanger <eric@archlinux.org> + + * ltris 1.0.13-1 + * Upstream update + +2009-04-07 Eric Belanger <eric@archlinux.org> + + * ltris 1.0.12-1 + * Fixed score file location and permissions (close FS#13489) + * Added ChangeLog diff --git a/community/mp3splt-gtk/PKGBUILD b/community/mp3splt-gtk/PKGBUILD index b17201866..a55ebce67 100644 --- a/community/mp3splt-gtk/PKGBUILD +++ b/community/mp3splt-gtk/PKGBUILD @@ -1,26 +1,26 @@ -# $Id: PKGBUILD 54576 2011-08-20 18:15:41Z jlichtblau $ +# $Id: PKGBUILD 54946 2011-08-28 16:49:45Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=mp3splt-gtk pkgver=0.7 -pkgrel=1 +pkgrel=2 pkgdesc="Split mp3 and ogg files without decoding" arch=('i686' 'x86_64') url="http://mp3splt.sourceforge.net/" license=('GPL') -depends=('desktop-file-utils' 'gstreamer0.10-ffmpeg' 'gtk2' 'libgnomeui' 'libmp3splt') -makedepends=('gnome-doc-utils' 'pkgconfig') +depends=('desktop-file-utils' 'gstreamer0.10-ffmpeg' 'gtk2' 'libmp3splt') +makedepends=('pkgconfig') install=$pkgname.install changelog=$pkgname.changelog source=(http://downloads.sourceforge.net/sourceforge/mp3splt/$pkgname-$pkgver.tar.gz \ $pkgname.desktop) -sha256sums=('e52935ef5f9be41c2eacd8c8a473366bad0aa7472de5916e088da3d19a673c7f' +sha256sums=('67046b0ab119907e8614089d42f180bdca034e758e24e2d078308e4d26fe8fd0' 'a50dd43c28a723c824d658b9468ff3719dcc302c57ecb3b122124e63c20800ed') build() { cd ${srcdir}/$pkgname-$pkgver - ./configure --prefix=/usr --disable-mp3splttest --disable-audacious + ./configure --prefix=/usr --disable-gnome --disable-mp3splttest --disable-audacious make } @@ -32,5 +32,3 @@ package() { install -D -m644 ${srcdir}/$pkgname.desktop \ ${pkgdir}/usr/share/applications/$pkgname.desktop } -sha256sums=('67046b0ab119907e8614089d42f180bdca034e758e24e2d078308e4d26fe8fd0' - 'a50dd43c28a723c824d658b9468ff3719dcc302c57ecb3b122124e63c20800ed') diff --git a/community/openbox/PKGBUILD b/community/openbox/PKGBUILD index 3948b5727..9241dabf8 100644 --- a/community/openbox/PKGBUILD +++ b/community/openbox/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 54399 2011-08-18 05:37:17Z bfanella $ -# Maintainer: +# $Id: PKGBUILD 54954 2011-08-29 00:03:04Z bfanella $ +# Maintainer: Brad Fanella <bradfanella@archlinux.us> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: tobias <tobias@archlinux.org> pkgname=openbox pkgver=3.5.0 -pkgrel=3 +pkgrel=4 pkgdesc="A window manager for the X11 windowing system" arch=('i686' 'x86_64') url="http://openbox.org" diff --git a/community/openbox/openbox.install b/community/openbox/openbox.install index a8088b4db..762a3ef14 100644 --- a/community/openbox/openbox.install +++ b/community/openbox/openbox.install @@ -1,4 +1,4 @@ post_install() { - echo "Place menu.xml, rc.xml and autostart.sh in ~/.config/openbox" + echo "Place menu.xml, rc.xml and autostart in ~/.config/openbox" echo "They can be found in /etc/xdg/openbox" } diff --git a/community/pcsclite/PKGBUILD b/community/pcsclite/PKGBUILD index 7e222b301..b1e9f37ac 100644 --- a/community/pcsclite/PKGBUILD +++ b/community/pcsclite/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 50103 2011-06-24 19:11:00Z giovanni $ +# $Id: PKGBUILD 54922 2011-08-28 11:38:33Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com> pkgname=pcsclite pkgver=1.7.4 -pkgrel=1 +pkgrel=2 pkgdesc="PC/SC Architecture smartcard middleware library" arch=('i686' 'x86_64') url="https://alioth.debian.org/projects/pcsclite/" @@ -23,6 +23,7 @@ build() { ./configure --prefix=/usr \ --enable-libudev \ --sysconfdir=/etc \ + --enable-ipcdir=/run/pcscd \ --enable-usbdropdir=/usr/lib/pcsc/drivers make diff --git a/community/soundkonverter/PKGBUILD b/community/soundkonverter/PKGBUILD index 9c57ef810..16126aa59 100644 --- a/community/soundkonverter/PKGBUILD +++ b/community/soundkonverter/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 35231 2010-12-17 20:25:58Z mherych $ +# $Id: PKGBUILD 54953 2011-08-28 23:34:04Z andrea $ # Maintainer: Eric Belanger <eric@archlinux.org> # Maintainer: Mateusz Herych <heniekk@gmail.com> # Contributor: Darwin Bautista <djclue917@gmail.com> pkgname=soundkonverter -pkgver=0.9.94rc2 +pkgver=1.0.0 pkgrel=1 pkgdesc="Front-end to various audio converters" arch=('i686' 'x86_64') @@ -25,17 +25,20 @@ optdepends=('cdrkit: cdda2wav backend' ) options=('libtool') install=$pkgname.install -source=(https://api.opensuse.org/public/source/home:HessiJames/soundkonverter/soundkonverter-$pkgver.tar.gz) -md5sums=('5cc2442b26282f18ce51379dc4429f32') - +source=("https://api.opensuse.org/public/source/home:HessiJames/${pkgname}/"${pkgname}-"${pkgver}.tar.gz") +md5sums=('fc8bab43a27c53e651907489f5ce5032') build() { - cd $srcdir/$pkgname-$pkgver - cmake . -DCMAKE_INSTALL_PREFIX=/usr + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release make } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install } diff --git a/community/springlobby/PKGBUILD b/community/springlobby/PKGBUILD index 8e7f8dc7c..663103b4f 100644 --- a/community/springlobby/PKGBUILD +++ b/community/springlobby/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 54276 2011-08-16 04:26:01Z svenstaro $ +# $Id: PKGBUILD 54945 2011-08-28 16:40:38Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: DuGi <dugi@irc.pl> pkgname=springlobby -pkgver=0.136 +pkgver=0.137 pkgrel=1 pkgdesc="A free cross-platform lobby client for the Spring RTS project." arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ makedepends=('boost' 'asio' 'cmake') source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2 springlobby.desktop springlobby.png) -md5sums=('b08d209ab8b338112ca46ac959ca6d1b' +md5sums=('28aeeab2eb63bd43b81a9e64c166341a' '45f8b59d033931d02e734fe3bd7777dd' '1f388187539aeb0358b51995e26ed890') diff --git a/community/tilda/PKGBUILD b/community/tilda/PKGBUILD index d613e6e5f..7e58700e9 100644 --- a/community/tilda/PKGBUILD +++ b/community/tilda/PKGBUILD @@ -1,25 +1,33 @@ -# $Id: PKGBUILD 4131 2009-10-16 15:26:47Z ibiru $ -# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org> +# $Id: PKGBUILD 54949 2011-08-28 17:21:28Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=tilda pkgver=0.9.6 -pkgrel=3 -pkgdesc="Linux terminal based on classic terminals from first person shooter games." +pkgrel=4 +pkgdesc="Linux terminal based on classic terminals from first person shooter games" arch=('i686' 'x86_64') url="http://tilda.sourceforge.net" license=('GPL') depends=('vte' 'confuse' 'libglade') makedepends=('gawk') -source=(http://downloads.sourceforge.net/sourceforge/tilda/tilda-$pkgver.tar.gz fix.patch) +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz \ + fix.patch) +sha256sums=('b3bd0f63eb83a5001ef26056ca116e5f8005d454f8f82a94f334868862068411' + '5f3aa2a58f52475e476b1871ea3f407c0cf4414670e861794888737b605c3caf') build() { - cd $startdir/src/tilda-$pkgver - patch -Np1 -i $srcdir/fix.patch || return 1 + cd ${srcdir}/$pkgname-$pkgver - ./configure --prefix=/usr - make || return 1 - make DESTDIR=$startdir/pkg install + patch -Np1 -i ${srcdir}/fix.patch + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/tilda-$pkgver + + make DESTDIR=${pkgdir} install } -md5sums=('b44ebe04fdfd312e9ddc5e0ed77f4289' - 'ae926cd3bb0917960c09115462f8dddb') diff --git a/community/tilda/fix.patch b/community/tilda/fix.patch index cd217682e..058af6a36 100644 --- a/community/tilda/fix.patch +++ b/community/tilda/fix.patch @@ -1,5 +1,4 @@ -diff -Nur tilda-0.9.6.orig/src/key_grabber.c tilda-0.9.6/src/key_grabber.c ---- tilda-0.9.6.orig/src/key_grabber.c 2008-04-08 01:12:31.000000000 +0300 +--- tilda-0.9.6/src/key_grabber.c 2008-04-08 01:12:31.000000000 +0300 +++ tilda-0.9.6/src/key_grabber.c 2009-10-16 17:39:16.399679408 +0300 @@ -190,7 +190,7 @@ * Overriding the user time here seems to work a lot better than calling @@ -10,3 +9,16 @@ diff -Nur tilda-0.9.6.orig/src/key_grabber.c tilda-0.9.6/src/key_grabber.c tomboy_keybinder_get_current_event_time()); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); gtk_widget_show (GTK_WIDGET(tw->window)); + +--- tilda-0.9.6/tilda.desktop.in 2007-03-16 04:53:34.000000000 +0100 ++++ tilda-0.9.6/tilda.desktop.in 2011-08-28 19:08:53.000000000 +0200 +@@ -2 +1,0 @@ +-Encoding=UTF-8 +@@ -4,2 +3,2 @@ +-Exec=@BINDIR@/tilda +-Icon=@PIXMAPSDIR@/tilda.png ++Exec=tilda ++Icon=tilda +@@ -8 +7 @@ +-Categories=GNOME;GTK;Application;Utility;TerminalEmulator; ++Categories=GNOME;GTK;Utility;TerminalEmulator;System; diff --git a/community/tilda/tilda.changelog b/community/tilda/tilda.changelog new file mode 100644 index 000000000..af3650071 --- /dev/null +++ b/community/tilda/tilda.changelog @@ -0,0 +1,16 @@ +2011-08-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + + * FS#25762 fixed + +2008-04-29 Mateusz Herych <heniekk@gmail.com> + + * Updated for x86_64 - 0.9.6 + +2008-04-28 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated for i686 - 0.9.6 + +2007-12-30 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated to newer version - 0.9.5 + diff --git a/community/viking/PKGBUILD b/community/viking/PKGBUILD index 6f73fc6ef..b007a93dd 100644 --- a/community/viking/PKGBUILD +++ b/community/viking/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 45239 2011-04-18 13:40:23Z spupykin $ +# $Id: PKGBUILD 54936 2011-08-28 15:44:24Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Nick Østergaard <oe.nick@gmail.com> # Contributor: Jonny Gerold <jonny@fsk141.com> pkgname=viking -pkgver=1.1 -pkgrel=2 +pkgver=1.2.1 +pkgrel=1 pkgdesc="GTK+2 application to manage GPS data" arch=('i686' 'x86_64') url="http://viking.sourceforge.net/" @@ -16,18 +16,15 @@ optdepends=('gpsbabel: for GPS management') options=('!emptydirs') install=$pkgname.install changelog=$pkgname.changelog -source=(http://downloads.sourceforge.net/viking/$pkgname-$pkgver.tar.gz - gpsd-2.96.patch) -sha256sums=('5c34a76c09b6fda092e8170f7546606814382cf9d13174e87c4ee43fffa36743' - '7277a6f0bbe7b16440ca92a5975c6f0b38261f13bbbb6f04e4fc684b8965c902') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) +sha256sums=('7c4b36398a9ec121ab11b66f042d17368dd46cf328a2a0e00bda38fd357a9743') build() { cd ${srcdir}/$pkgname-$pkgver - patch -p1 <$srcdir/gpsd-2.96.patch - autoreconf + sed '/#include <curl\/types.h>/d' -i src/osm-traces.c - ./configure --prefix=/usr + ./configure --prefix=/usr --disable-realtime-gps-tracking --enable-geocaches --enable-expedia make } diff --git a/community/viking/viking.changelog b/community/viking/viking.changelog index d38e25a9e..bffeb3245 100644 --- a/community/viking/viking.changelog +++ b/community/viking/viking.changelog @@ -1,6 +1,5 @@ -2011-02-23 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * gebabbel 1.1-1 +2011-08-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * viking 1.2.1-1 -2011-02-06 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * gebabbel 1.0.2-2 - * moved to [community] with 62 AUR votes +2011-06-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * viking 1.2-1 diff --git a/community/viking/viking.install b/community/viking/viking.install index 8de1998bf..1a05f573e 100644 --- a/community/viking/viking.install +++ b/community/viking/viking.install @@ -1,5 +1,5 @@ post_install() { - which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor } post_upgrade() { |