summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/cantata/PKGBUILD22
-rw-r--r--community/cdcd/PKGBUILD37
-rw-r--r--community/cinnamon-control-center/PKGBUILD14
-rw-r--r--community/cinnamon/PKGBUILD13
-rw-r--r--community/cinnamon/fix-control-center-check.patch12
-rw-r--r--community/dgen-sdl/PKGBUILD8
-rw-r--r--community/erlang-sdl/PKGBUILD15
-rw-r--r--community/gen2shp/PKGBUILD11
-rw-r--r--community/gputils/PKGBUILD16
-rw-r--r--community/gtkpod/PKGBUILD20
-rw-r--r--community/kiwi/PKGBUILD13
-rw-r--r--community/libextractor/PKGBUILD4
-rw-r--r--community/libxkbcommon/PKGBUILD28
-rw-r--r--community/nautilus-sound-converter/PKGBUILD36
-rw-r--r--community/nautilus-sound-converter/nautilus-sound-converter.install17
-rw-r--r--community/packagekit/PKGBUILD11
-rw-r--r--community/packagekit/libarchive.patch39
-rw-r--r--community/shapelib/PKGBUILD29
-rw-r--r--community/sigil/PKGBUILD10
-rw-r--r--community/vdrift/PKGBUILD12
-rw-r--r--community/winegame/PKGBUILD40
-rw-r--r--community/winegame/winegame.install9
-rw-r--r--community/winestuff/PKGBUILD36
23 files changed, 267 insertions, 185 deletions
diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD
index 664db3e74..1c1bb4e3a 100644
--- a/community/cantata/PKGBUILD
+++ b/community/cantata/PKGBUILD
@@ -1,5 +1,6 @@
-# $Id: PKGBUILD 84345 2013-02-16 22:50:24Z ioni $
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# $Id: PKGBUILD 85533 2013-03-02 23:09:58Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Mcder3 <mcder3[at]gmail[dot]com>
# Contributor: MisterFred <mister.fred[at]free[dot]fr>
@@ -10,23 +11,26 @@ pkgrel=2
arch=('i686' 'x86_64' 'mips64el')
url="http://kde-apps.org/content/show.php/Cantata?content=147733"
license=('GPL')
-depends=('kdebase-runtime' 'taglib-extras' 'ffmpeg' 'mpg123' 'libmtp' 'speex')
+depends=('kdebase-runtime' 'taglib-extras' 'mpg123' 'libmtp')
makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://cantata.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2")
+install="$pkgname.install"
+source=("http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2")
md5sums=('882cec90eb01d190b899689675e990b0')
build() {
+ cd "$srcdir/$pkgname-$pkgver"
mkdir build
- cd build
- cmake ../${pkgname}-${pkgver} \
+
+ cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_PHONON=ON
+
make
}
package() {
- cd build
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" PREFIX="/usr" install
}
diff --git a/community/cdcd/PKGBUILD b/community/cdcd/PKGBUILD
index f2430863b..fef6593f9 100644
--- a/community/cdcd/PKGBUILD
+++ b/community/cdcd/PKGBUILD
@@ -1,5 +1,6 @@
-# $Id: PKGBUILD 55773 2011-09-20 06:44:34Z andrea $
-# Maintainer: dorphell <dorphell@archlinux.org>
+# $Id: PKGBUILD 85538 2013-03-03 01:33:53Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor dorphell <dorphell@archlinux.org>
# Contributor Sarah Hay <sarahhay@mb.sympatico.ca>
pkgname=cdcd
@@ -11,23 +12,33 @@ depends=('libcdaudio' 'readline')
url="http://libcdaudio.sourceforge.net/"
license=('GPL2')
install=cdcd.install
-source=("http://downloads.sourceforge.net/libcdaudio/$pkgname-$pkgver.tar.gz"
- cdcd-0.6.6-x86_64.patch)
-md5sums=('dc17f2e275c7214cb693f6abb50f29fb'
- '7c39f01408fc084e2c62da4da324370e')
+source=("http://downloads.sourceforge.net/libcdaudio/$pkgname-$pkgver.tar.gz")
+md5sums=('dc17f2e275c7214cb693f6abb50f29fb')
+
+if [[ "$CARCH" == "x86_64" ]]; then
+ source+=("cdcd-0.6.6-$CARCH.patch")
+ md5sums+=('7c39f01408fc084e2c62da4da324370e')
+fi
build() {
- cd "${srcdir}"/$pkgname-$pkgver
- patch -Np1 -i "${srcdir}"/cdcd-0.6.6-x86_64.patch
+ cd "$srcdir/$pkgname-$pkgver"
+
+ if [[ "$CARCH" == "x86_64" ]]; then
+ patch -Np1 -i "$srcdir/cdcd-0.6.6-$CARCH.patch"
+ fi
+
./configure --prefix=/usr
make
}
package() {
- cd "${srcdir}"/$pkgname-$pkgver
- make prefix="${pkgdir}"/usr install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make PREFIX=/usr DESTDIR="$pkgdir" install
+
+ mv "$pkgdir/usr/info" "$pkgdir/usr/share/"
+ mv "$pkgdir/usr/man/" "$pkgdir/usr/share/"
+ rm "$pkgdir/usr/share/dir"
- install -dm755 "${pkgdir}"/usr/share
- mv "${pkgdir}"/usr/{man,info} "${pkgdir}"/usr/share
- rm "${pkgdir}"/usr/share/info/dir
+ install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share"
}
diff --git a/community/cinnamon-control-center/PKGBUILD b/community/cinnamon-control-center/PKGBUILD
index 1aba7553d..c066ea4b3 100644
--- a/community/cinnamon-control-center/PKGBUILD
+++ b/community/cinnamon-control-center/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 85223 2013-02-27 18:49:20Z bgyorgy $
+# $Id: PKGBUILD 85563 2013-03-03 05:46:41Z bgyorgy $
# Maintainer: Alexandre Filgueira <alexfilgueira@cinnarch.com
# Based on gnome-control-center:
# Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
@@ -6,13 +6,13 @@
pkgname=cinnamon-control-center
pkgver=1.7.1
-pkgrel=2
+pkgrel=3
pkgdesc="The Control Center for Cinnamon"
arch=('i686' 'x86_64')
-depends=('cinnamon' 'cheese' 'libgnomekbd' 'libgtop' 'network-manager-applet')
+depends=('cinnamon' 'cheese' 'libgtop' 'network-manager-applet')
optdepends=('mesa-demos: provides glxinfo for graphics information'
'gnome-color-manager: for color management tasks')
-makedepends=('intltool' 'gnome-common')
+makedepends=('intltool' 'gnome-common' 'libgnomekbd')
url="https://github.com/linuxmint/cinnamon-control-center"
install=cinnamon-control-center.install
license=('GPL')
@@ -42,6 +42,9 @@ build() {
# Fix faces location on User accounts dialog
patch -Np1 -i ../fix-faces-location.patch
+ # Use freedesktop as default sound theme instead of ubuntu (otherwise the Sound panel craches)
+ patch -RNp1 -i debian/patches/98_default_sound_theme.patch
+
autoreconf -fi
./configure --prefix=/usr --sysconfdir=/etc \
@@ -67,6 +70,9 @@ package() {
make -C shell DESTDIR="$pkgdir" uninstall
make -C shell DESTDIR="$pkgdir" install-libLTLIBRARIES
+ # Remove Region panel, because it's not compatible with gnome-settings-daemon 3.6
+ make -C panels/region DESTDIR="$pkgdir" uninstall
+
# Remove broken desktop files
rm -R "$pkgdir/usr/share/applications"
rm -R "$pkgdir/etc"
diff --git a/community/cinnamon/PKGBUILD b/community/cinnamon/PKGBUILD
index 5dc9ee675..ce4c8d209 100644
--- a/community/cinnamon/PKGBUILD
+++ b/community/cinnamon/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 84919 2013-02-26 05:29:14Z bgyorgy $
+# $Id: PKGBUILD 85558 2013-03-03 05:39:31Z bgyorgy $
# Maintainer: Alexandre Filgueira <alexfilgueira@cinnarch.com>
# Contributor: M0Rf30
# Contributor: unifiedlinux
@@ -6,7 +6,7 @@
pkgname=cinnamon
pkgver=1.7.1
-pkgrel=3
+pkgrel=4
pkgdesc="Linux desktop which provides advanced innovative features and a traditional user experience"
arch=('i686' 'x86_64')
url="http://cinnamon.linuxmint.com/"
@@ -26,10 +26,12 @@ options=('!libtool' '!emptydirs')
install=${pkgname}.install
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/tarball/$pkgver"
"gnome-autogen.sh"
- "keyboard_applet.patch")
+ "keyboard_applet.patch"
+ "fix-control-center-check.patch")
md5sums=('13daa8fde1480bbee25eddc2e2630319'
'a925691c9b57a6a884dcf07da057fd1f'
- '2b1ece84416c3e4de030be15f1774d82')
+ '2b1ece84416c3e4de030be15f1774d82'
+ 'fd429779aa986ffb3f481149f19a0baf')
build() {
cd ${srcdir}/linuxmint-Cinnamon*
@@ -38,6 +40,9 @@ build() {
# https://github.com/linuxmint/Cinnamon/issues/1337
patch -Np1 -i ${srcdir}/keyboard_applet.patch
+ # Check for the cc-panel path, not for the unneeded binary
+ patch -Np1 -i ${srcdir}/fix-control-center-check.patch
+
cp ${srcdir}/gnome-autogen.sh .
sed -i 's/\ --warn-all\ --warn-error//' src/Makefile.am
sed -i 's/gnome-autogen.sh/.\/gnome-autogen.sh/g' autogen.sh
diff --git a/community/cinnamon/fix-control-center-check.patch b/community/cinnamon/fix-control-center-check.patch
new file mode 100644
index 000000000..4c7b3bb0e
--- /dev/null
+++ b/community/cinnamon/fix-control-center-check.patch
@@ -0,0 +1,12 @@
+diff -Naur cinnamon-1.7.1.orig/files/usr/bin/cinnamon-settings cinnamon-1.7.1/files/usr/bin/cinnamon-settings
+--- cinnamon-1.7.1.orig/files/usr/bin/cinnamon-settings 2013-02-21 17:23:45.000000000 +0100
++++ cinnamon-1.7.1/files/usr/bin/cinnamon-settings 2013-03-03 03:03:24.151209998 +0100
+@@ -7,7 +7,7 @@
+ if os.path.exists("/usr/lib/cinnamon-settings/modules/cs_%s.py" % module):
+ print "Python module"
+ os.execvp("/usr/lib/cinnamon-settings/cinnamon-settings.py", ("",) + tuple(sys.argv[1:]))
+- elif os.path.exists("/usr/bin/cinnamon-control-center"):
++ elif os.path.exists("/usr/lib/cinnamon-control-center-1/panels"):
+ print "Unknown module %s, using cinnamon-control-center" % module
+ os.execvp("/usr/lib/cinnamon-settings/cinnamon-settings.py", ("",) + tuple(sys.argv[1:]))
+ elif os.path.exists("/usr/bin/gnome-control-center"):
diff --git a/community/dgen-sdl/PKGBUILD b/community/dgen-sdl/PKGBUILD
index 633f6244a..edad3936a 100644
--- a/community/dgen-sdl/PKGBUILD
+++ b/community/dgen-sdl/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 84168 2013-02-12 18:03:41Z jsteel $
+# $Id: PKGBUILD 85586 2013-03-03 17:28:52Z dreisner $
# Maintainer: Jonathan Steel <mail@jsteel.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Jason Chu <jason@archlinux.org>
@@ -6,13 +6,15 @@
pkgname=dgen-sdl
pkgver=1.32
-pkgrel=1
+pkgrel=2
pkgdesc="An emulator for Sega Genesis/Mega Drive systems ported to SDL"
arch=('i686' 'x86_64' 'mips64el')
url="http://dgen.sourceforge.net"
license=('BSD')
depends=('sdl' 'libgl' 'libarchive')
-makedepends=('nasm')
+if test "$CARCH" == i686; then
+ makedepends=('nasm')
+fi
source=(http://downloads.sourceforge.net/dgen/$pkgname-$pkgver.tar.gz)
md5sums=('81b6f1c4bd612e81a9b8663c38d51890')
diff --git a/community/erlang-sdl/PKGBUILD b/community/erlang-sdl/PKGBUILD
index 1968dac35..4482f52ef 100644
--- a/community/erlang-sdl/PKGBUILD
+++ b/community/erlang-sdl/PKGBUILD
@@ -1,30 +1,29 @@
-# $Id: PKGBUILD 85286 2013-02-28 12:24:52Z arodseth $
+# $Id: PKGBUILD 85602 2013-03-03 21:28:43Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: kappa <kappacurve@gmail.com>
pkgname=erlang-sdl
pkgver=1.2
-pkgrel=6
+pkgrel=7
arch=('x86_64' 'i686' 'mips64el')
-pkgdesc='SDL and OpenGL bindings for Erlang (r15b-driver-compat branch)'
+pkgdesc='SDL and OpenGL bindings for Erlang'
url='http://esdl.sourceforge.net/'
license=('custom')
depends=('erlang' 'sdl' 'glu' 'libgl' 'erlang')
makedepends=('mesa-libgl')
replaces=('esdl')
-source=("$pkgname-$pkgver.tar.gz::https://nodeload.github.com/dgud/esdl/tar.gz/dgud/r15b-driver-compat")
-sha256sums=('a14d695229b93401a304b773874e87c02c5b304d4b5b66f35cba75e140672086')
-_dirname='esdl-dgud-r15b-driver-compat'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dgud/esdl/archive/master.tar.gz")
+sha256sums=('6a18010e12eed2abeb9b9893a2d89586e3ff14b44fce9c15b8ed091b67709438')
build() {
- cd "$srcdir/$_dirname"
+ cd "$srcdir/esdl-master"
find -type f -print0 | xargs -0 chmod 644
make
}
package() {
- cd "$srcdir/$_dirname"
+ cd "$srcdir/esdl-master"
make INSTALLDIR="$pkgdir/usr/lib/erlang/lib/esdl-$pkgver" install
install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
diff --git a/community/gen2shp/PKGBUILD b/community/gen2shp/PKGBUILD
index f164dda17..b64a3e379 100644
--- a/community/gen2shp/PKGBUILD
+++ b/community/gen2shp/PKGBUILD
@@ -1,4 +1,5 @@
-# $Id: PKGBUILD 66526 2012-02-25 23:23:48Z lfleischer $
+# $Id: PKGBUILD 85542 2013-03-03 01:59:29Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
pkgname=gen2shp
@@ -8,12 +9,12 @@ pkgdesc='Converts ArcInfo generate format to shapefile format'
arch=('i686' 'x86_64' 'mips64el')
url='http://www.intevation.de/~jan/gen2shp/'
license=('GPL')
-depends=('shapelib')
-source=("http://intevation.de/%7Ejan/gen2shp/${pkgname}-${pkgver}.tar.gz")
+depends=('glibc' 'shapelib')
+source=("http://web.archive.org/web/20110716144136/http://intevation.de/~jan/gen2shp/$pkgname-$pkgver.tar.gz")
md5sums=('1cf9f1c2097825ef96290f7e9a7eb195')
build() {
- cd ${pkgname}-${pkgver}
+ cd "$pkgname-$pkgver"
# fix conflicting function names
sed -i 's/getline/get_line/' gen2shp.c utils.c utils.h
@@ -22,5 +23,5 @@ build() {
}
package() {
- install -D ${pkgname}-${pkgver}/gen2shp ${pkgdir}/usr/bin/gens2shp
+ install -D "$pkgname-$pkgver/gen2shp" "$pkgdir/usr/bin/gens2shp"
}
diff --git a/community/gputils/PKGBUILD b/community/gputils/PKGBUILD
index 6ea946bc2..7f74702a1 100644
--- a/community/gputils/PKGBUILD
+++ b/community/gputils/PKGBUILD
@@ -1,27 +1,27 @@
-# $Id: PKGBUILD 75360 2012-08-21 09:13:35Z ebelanger $
+# $Id: PKGBUILD 85546 2013-03-03 02:24:18Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
# Contributor: Johannes Martin <honzor@gmx.net>
# Contributor: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=gputils
-pkgver=0.14.2
+pkgver=1.0.0
pkgrel=1
pkgdesc="PIC Programming Utilities"
arch=('i686' 'x86_64' 'mips64el')
url="http://gputils.sourceforge.net/"
license=('GPL')
depends=('glibc')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('90fa2803e77723de32b482f6a57d9c5a')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('a68b389b4717adde2b1cf14328e910e3')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
}
diff --git a/community/gtkpod/PKGBUILD b/community/gtkpod/PKGBUILD
index 5cb27cb9b..18ca42456 100644
--- a/community/gtkpod/PKGBUILD
+++ b/community/gtkpod/PKGBUILD
@@ -1,4 +1,5 @@
-# $Id: PKGBUILD 83150 2013-01-27 16:17:12Z pierre $
+# $Id: PKGBUILD 85548 2013-03-03 02:45:35Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
# Contributor: Kevin Piche <kevin@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>
@@ -9,8 +10,8 @@ pkgdesc="A platform independent GUI for Apple's iPod using GTK3"
arch=('i686' 'x86_64')
url="http://gtkpod.sourceforge.net"
license=('GPL')
-depends=('libanjuta' 'curl' 'flac' 'libid3tag' 'libgpod' 'awk' 'hicolor-icon-theme' 'dconf' 'libwebkit3')
-makedepends=('flex' 'intltool' 'libvorbis' 'faad2')
+depends=('libanjuta' 'curl' 'flac' 'libid3tag' 'libgpod' 'awk' 'hicolor-icon-theme' 'libwebkit3')
+makedepends=('flex' 'intltool' 'faad2' 'libvorbis')
optdepends=('libmp4v2: MP4/h264 support'
'vorbis-tools: OGG support'
'libvorbis: OGG support'
@@ -18,20 +19,23 @@ optdepends=('libmp4v2: MP4/h264 support'
'faad2: m4a conversion support')
install=gtkpod.install
options=('!libtool')
-source=("http://downloads.sourceforge.net/gtkpod/${pkgname}-${pkgver}.tar.gz"
+source=("http://downloads.sourceforge.net/gtkpod/$pkgname-$pkgver.tar.gz"
gtkpod-2.1.3-gdl-3.6.patch)
md5sums=('57f04578de6e3262a436ec574422b144'
'8d725015081bd89bc8f9a4521d170aef')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 -i "${srcdir}/gtkpod-2.1.3-gdl-3.6.patch"
+ cd "$srcdir/$pkgname-$pkgver"
+
+ patch -p1 -i "$srcdir/gtkpod-2.1.3-gdl-3.6.patch"
sed -i 's#python#python2#' scripts/sync-palm-jppy.py
+
./configure --prefix=/usr
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
}
diff --git a/community/kiwi/PKGBUILD b/community/kiwi/PKGBUILD
index d9e7ffd20..feb6e9870 100644
--- a/community/kiwi/PKGBUILD
+++ b/community/kiwi/PKGBUILD
@@ -1,5 +1,5 @@
-# $Id: PKGBUILD 66623 2012-02-26 15:04:14Z lfleischer $
-# Maintainer: Brad Fanella <bradfanella@archlinux.us>
+# $Id: PKGBUILD 85550 2013-03-03 03:09:38Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
@@ -10,7 +10,7 @@ pkgdesc="A set of classes and wrappers for PyGTK"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.async.com.br/projects/kiwi"
license=("LGPL")
-depends=('pygtk')
+depends=('python2' 'python' 'pygtk' 'gtk')
makedepends=('gettext')
source=("http://download.gnome.org/sources/$pkgname/1.9/$pkgname-$pkgver.tar.bz2")
sha256sums=('0ffa912cd180b3092b3ff636c582ab2c40f0f8eb541ada07b1432631a2d49e90')
@@ -18,14 +18,15 @@ sha256sums=('0ffa912cd180b3092b3ff636c582ab2c40f0f8eb541ada07b1432631a2d49e90')
build() {
cd "$srcdir/$pkgname-$pkgver"
- # python2 fix
+ # Apply Python2 fix.
for file in bin/{kiwi-i18n,kiwi-ui-test} setup.py; do
- echo "Applying python2 fix for ${file}"
- sed -i 's_/usr/bin/env python_/usr/bin/env python2_' ${file}
+ echo "Applying python2 fix for $file"
+ sed -i 's_/usr/bin/env python_/usr/bin/env python2_' "$file"
done
}
package() {
cd "$srcdir/$pkgname-$pkgver"
+
python2 setup.py install --root="$pkgdir"
}
diff --git a/community/libextractor/PKGBUILD b/community/libextractor/PKGBUILD
index 11d8ed40e..4832ce7c8 100644
--- a/community/libextractor/PKGBUILD
+++ b/community/libextractor/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 85370 2013-03-01 10:35:05Z andrea $
+# $Id: PKGBUILD 85587 2013-03-03 17:28:54Z dreisner $
# Maintainer: Sergej Pupykin <pupykin.s@gmail.com>
# Contributor: damir <damir@archlinux.org>
pkgname=libextractor
pkgver=1.0.1
-pkgrel=3
+pkgrel=4
pkgdesc="A library used to extract meta-data from files of arbitrary type"
arch=("i686" "x86_64" 'mips64el')
license=('GPL')
diff --git a/community/libxkbcommon/PKGBUILD b/community/libxkbcommon/PKGBUILD
deleted file mode 100644
index 3602d778b..000000000
--- a/community/libxkbcommon/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay <danielmicay@gmail.com>
-# Contributor: Mladen Pejakovic <pejakm@gmail.com>
-
-pkgname=libxkbcommon
-pkgver=0.2.0
-pkgrel=3
-pkgdesc="Keyboard handling library using XKB data"
-arch=(i686 x86_64 mips64el)
-url="http://xkbcommon.org/"
-license=('custom')
-depends=(glibc)
-makedepends=(doxygen xorg-util-macros)
-source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.bz2")
-md5sums=('2be3d4a255d02c7d46fc6a9486f21f6a')
-options=('!libtool')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
- install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
diff --git a/community/nautilus-sound-converter/PKGBUILD b/community/nautilus-sound-converter/PKGBUILD
deleted file mode 100644
index 00157594d..000000000
--- a/community/nautilus-sound-converter/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 79481 2012-11-06 03:41:36Z bgyorgy $
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=nautilus-sound-converter
-pkgver=3.0.2
-pkgrel=2
-pkgdesc="Nautilus extension to convert audio files formats"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://code.google.com/p/nautilus-sound-converter/"
-license=('GPL')
-depends=('nautilus' 'libgnome-media-profiles')
-makedepends=('intltool')
-optdepends=('gstreamer0.10-good-plugins: Extra media codecs'
- 'gstreamer0.10-ugly-plugins: Extra media codecs'
- 'gstreamer0.10-bad-plugins: Extra media codecs'
- 'gstreamer0.10-ffmpeg: Extra media codecs')
-conflicts=('totem>=3.6.0')
-options=('!libtool')
-install=$pkgname.install
-source=(http://nautilus-sound-converter.googlecode.com/files/$pkgname-$pkgver.tar.xz)
-sha1sums=('f0799af3c7f14e2cd4cf70499d9bde07ec4ab89d')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --disable-static --disable-schemas-install \
- --with-gconf-schema-file-dir=/usr/share/gconf/schemas
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir/" install
-}
diff --git a/community/nautilus-sound-converter/nautilus-sound-converter.install b/community/nautilus-sound-converter/nautilus-sound-converter.install
deleted file mode 100644
index d2da24898..000000000
--- a/community/nautilus-sound-converter/nautilus-sound-converter.install
+++ /dev/null
@@ -1,17 +0,0 @@
-pkgname=nautilus-sound-converter
-
-post_install() {
- gconfpkg --install $pkgname
-}
-
-pre_upgrade() {
- pre_remove $1
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- gconfpkg --uninstall $pkgname
-}
diff --git a/community/packagekit/PKGBUILD b/community/packagekit/PKGBUILD
index 19ea8f2db..49e5f52b4 100644
--- a/community/packagekit/PKGBUILD
+++ b/community/packagekit/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 85382 2013-03-01 10:36:54Z andrea $
+# $Id: PKGBUILD 85588 2013-03-03 17:28:55Z dreisner $
# Maintainer: Jonathan Conder <jonno.conder@gmail.com>
pkgbase='packagekit'
pkgname=('packagekit' 'packagekit-qt2' 'packagekit-python')
pkgver=0.7.6
-pkgrel=3
+pkgrel=5
pkgdesc="A system designed to make installation and updates of packages easier."
arch=('i686' 'x86_64' 'mips64el')
url="http://www.packagekit.org"
@@ -13,9 +13,11 @@ makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
'shared-mime-info' 'sqlite' 'udev')
options=('!libtool')
source=("http://www.packagekit.org/releases/PackageKit-$pkgver.tar.xz"
- 'adopt.patch')
+ 'adopt.patch'
+ 'libarchive.patch')
sha256sums=('82c0a553075d49add3c4f58e6e93f7f3613938809a4b8e36f46476e86981b45d'
- 'd0ee8580202a878571dddd470017731299c63e5c5120afe881bb41b9544322b8')
+ 'd0ee8580202a878571dddd470017731299c63e5c5120afe881bb41b9544322b8'
+ '0d3798c8992afdc0930aa271b3e44deb55c046ab4adee25b4ec4c33bcdd950e2')
build() {
cd "$srcdir/PackageKit-$pkgver"
@@ -25,6 +27,7 @@ build() {
sed -i 's@bin/python@bin/python2@' 'lib/python/packagekit/'*.py
patch -Np1 -i "$srcdir/adopt.patch"
+ patch -Np1 -i "$srcdir/libarchive.patch"
export PYTHON=/usr/bin/python2
./configure --prefix=/usr \
diff --git a/community/packagekit/libarchive.patch b/community/packagekit/libarchive.patch
new file mode 100644
index 000000000..083a9433a
--- /dev/null
+++ b/community/packagekit/libarchive.patch
@@ -0,0 +1,39 @@
+diff -Nru a/lib/packagekit-glib2/pk-service-pack.c b/lib/packagekit-glib2/pk-service-pack.c
+--- a/lib/packagekit-glib2/pk-service-pack.c 2012-08-17 00:36:38.000000000 +1200
++++ b/lib/packagekit-glib2/pk-service-pack.c 2013-03-01 19:00:08.773738469 +1300
+@@ -207,7 +207,7 @@
+ archive_read_support_format_tar (arch);
+
+ /* open the tar file */
+- r = archive_read_open_file (arch, filename, 10240);
++ r = archive_read_open_filename (arch, filename, 10240);
+ if (r) {
+ g_set_error (error, PK_SERVICE_PACK_ERROR, PK_SERVICE_PACK_ERROR_FAILED_EXTRACTION,
+ "cannot open: %s", archive_error_string (arch));
+@@ -246,7 +246,7 @@
+ /* close the archive */
+ if (arch != NULL) {
+ archive_read_close (arch);
+- archive_read_finish (arch);
++ archive_read_free (arch);
+ }
+
+ /* switch back to PWD */
+@@ -572,7 +572,7 @@
+
+ /* we can only write tar achives */
+ arch = archive_write_new ();
+- archive_write_set_compression_none (arch);
++ archive_write_add_filter_none (arch);
+ archive_write_set_format_ustar (arch);
+ archive_write_open_filename (arch, state->filename);
+
+@@ -596,7 +596,7 @@
+ /* close the archive */
+ if (arch != NULL) {
+ archive_write_close (arch);
+- archive_write_finish (arch);
++ archive_write_free (arch);
+ }
+ return ret;
+ }
diff --git a/community/shapelib/PKGBUILD b/community/shapelib/PKGBUILD
index 849cb918d..2ea1983d6 100644
--- a/community/shapelib/PKGBUILD
+++ b/community/shapelib/PKGBUILD
@@ -1,32 +1,31 @@
-# $Id: PKGBUILD 67779 2012-03-14 11:48:39Z giovanni $
-# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# $Id: PKGBUILD 85552 2013-03-03 03:16:05Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Bob Finch <w9ya@arrl.net>
pkgname=shapelib
-pkgver=1.2.10
-pkgrel=5
+pkgver=1.3.0
+pkgrel=1
pkgdesc='simple C API for reading and writing ESRI Shapefiles'
arch=('i686' 'x86_64' 'mips64el')
url='http://shapelib.maptools.org/'
license=('LGPL' 'MIT')
options=('!libtool')
-source=("http://dl.maptools.org/dl/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'LICENSE')
-md5sums=('4d96bd926167193d27bf14d56e2d484e'
- '431dfe7afb1d2c082682ecfcc9ee7a34')
+source=("http://download.osgeo.org/$pkgname/$pkgname-$pkgver.tar.gz"
+ "LICENSE")
+sha256sums=('23d474016158ab5077db2f599527631706ba5c0dc7c4178a6a1d685bb014f68f'
+ '67e45b04045e27a9d6f64f92b295831b8739b32668ce497d3fa02999e349a789')
build() {
- cd ${pkgname}-${pkgver}
+ cd "$pkgname-$pkgver"
- sed -i -e s:'-O2':"${CFLAGS}": Makefile
make lib
}
package() {
- cd ${pkgname}-${pkgver}
+ cd "$pkgname-$pkgver"
- sed -i -e s:/usr/local:${pkgdir}/usr: Makefile
- #sed -i -e s:/usr/bin/install:/bin/install: Makefile
- make lib_install
- install -D -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ install -d "$pkgdir/usr/lib" "$pkgdir/usr/include"
+ make PREFIX="$pkgdir/usr lib_install"
+ install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
diff --git a/community/sigil/PKGBUILD b/community/sigil/PKGBUILD
index 2842ab3c5..4db41c5f5 100644
--- a/community/sigil/PKGBUILD
+++ b/community/sigil/PKGBUILD
@@ -1,19 +1,19 @@
-# $Id: PKGBUILD 85410 2013-03-01 10:40:05Z andrea $
+# $Id: PKGBUILD 85597 2013-03-03 19:43:42Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Larry Hajali <larryhaja [at] gmail [dot] com>
pkgname=sigil
-pkgver=0.7.0
-pkgrel=2
+pkgver=0.7.1
+pkgrel=1
pkgdesc="WYSIWYG ebook editor"
arch=('i686' 'x86_64' 'mips64el')
url="http://code.google.com/p/sigil/"
license=('GPL3')
depends=('qt5-webkit' 'boost-libs')
-makedepends=('qt5-addons' 'qt5-declarative' 'qt5-tools' 'cmake' 'gendesk' 'boost')
+makedepends=('qt5-tools' 'qt5-svg' 'cmake' 'gendesk' 'boost')
install=sigil.install
source=("http://sigil.googlecode.com/files/Sigil-${pkgver}-Code.zip")
-md5sums=('06ba5ace506e01adf4a37534fa276cec')
+md5sums=('e6c281b6702a8f9d79cc85703dc8d3ea')
build() {
cd "${srcdir}"
diff --git a/community/vdrift/PKGBUILD b/community/vdrift/PKGBUILD
index e721b176c..35ac2775e 100644
--- a/community/vdrift/PKGBUILD
+++ b/community/vdrift/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 78946 2012-10-27 23:46:16Z ebelanger $
+# $Id: PKGBUILD 85589 2013-03-03 17:28:55Z dreisner $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Lone_Wolf lonewolf@xs4all.nl
pkgname=vdrift
pkgver=2012.07.22
-pkgrel=3
+pkgrel=4
pkgdesc="Open source driving simulation made with drift racing in mind"
arch=('i686' 'x86_64')
url="http://vdrift.net/"
@@ -22,19 +22,11 @@ md5sums=('fcfd6b65724d32dfe383df216d7afb74'
build() {
cd VDrift
- # select arch
- if [ `uname -m` = "x86_64" ]; then
- _sconsarch="a64"
- else
- _sconsarch="686"
- fi
-
patch -Np0 < "$srcdir"/vdrift-2012-07-22c_bullet281_patch.diff
# build and install
scons $MAKEFLAGS \
"destdir"="$pkgdir" \
- "arch"=$_sconsarch \
"release"=1 \
"force_feedback"=1 \
"prefix"=/usr \
diff --git a/community/winegame/PKGBUILD b/community/winegame/PKGBUILD
new file mode 100644
index 000000000..6df4bc45a
--- /dev/null
+++ b/community/winegame/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 85556 2013-03-03 05:22:22Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.com>
+# Contributor: Laurent Carlier <lordheavym@gmail.com>
+
+pkgname=winegame
+pkgver=0.2.0
+pkgrel=2
+pkgdesc="An interface to install windows programs in Wine"
+arch=('i686' 'x86_64')
+install=winegame.install
+url="http://code.google.com/p/winegame/"
+license=('GPL3')
+depends=('winestuff')
+optdepends=('libnotify: Desktop notifaction support')
+makedepends=('cmake')
+source=("http://winegame.googlecode.com/files/$pkgname-$pkgver.tar.gz")
+md5sums=('631dd218707c6efb2901ef1206092538')
+
+if [[ $CARCH == "x86_64" ]]; then
+ depends+=('lib32-mesa-libgl')
+fi
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ mkdir -p build
+ cd build
+
+ cmake -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr ..
+
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver/build"
+
+ make DESTDIR="$pkgdir/" install
+}
+
diff --git a/community/winegame/winegame.install b/community/winegame/winegame.install
new file mode 100644
index 000000000..e85c7ac73
--- /dev/null
+++ b/community/winegame/winegame.install
@@ -0,0 +1,9 @@
+post_install () {
+ update-desktop-database -q
+}
+post_upgrade () {
+ post_install
+}
+post_removal () {
+ post_install
+}
diff --git a/community/winestuff/PKGBUILD b/community/winestuff/PKGBUILD
new file mode 100644
index 000000000..d08334eb8
--- /dev/null
+++ b/community/winestuff/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 85554 2013-03-03 05:17:35Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Laurent Carlier <lordheavym@gmail.com>
+
+pkgname=winestuff
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Library utility for winegame"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/winegame/"
+license=('LGPL2.1')
+makedepends=('qt4' 'cmake')
+source=("http://winegame.googlecode.com/files/$pkgname-$pkgver.tar.gz")
+md5sums=('a01f55d30bd0e1dcee3a44aa0fa5369d')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ mkdir -p build
+ cd build
+
+ cmake -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr ..
+
+ make translations
+ make
+}
+
+package() {
+ depends=('qt4' 'fuseiso' 'winetricks')
+
+ cd "$srcdir/$pkgname-$pkgver/build"
+
+ make DESTDIR="$pkgdir" install
+}
+