summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch45
-rw-r--r--community/acpid/PKGBUILD25
-rw-r--r--community/acpid/acpid.service3
-rw-r--r--community/arptables/PKGBUILD27
-rw-r--r--community/arptables/arptables.systemd3
-rw-r--r--community/bird/PKGBUILD28
-rw-r--r--community/bird/bird.service1
-rw-r--r--community/bird/bird6.service1
-rw-r--r--community/gdal/PKGBUILD8
-rw-r--r--community/gmic/PKGBUILD10
-rw-r--r--community/gmic/opencv-buildfix.patch12
-rw-r--r--community/gnote/PKGBUILD6
-rw-r--r--community/inn/PKGBUILD7
-rw-r--r--community/inn/inn.tmpfiles1
-rw-r--r--community/iperf/PKGBUILD16
-rw-r--r--community/iperf/iperf-tcp.service1
-rw-r--r--community/iperf/iperf-udp.service1
-rw-r--r--community/ipset/PKGBUILD23
-rw-r--r--community/ipset/ipset.systemd3
-rw-r--r--community/librime/PKGBUILD6
-rw-r--r--community/linux-tools/cpupower.default29
-rw-r--r--community/lksctp-tools/0001-Modernize-autotools.patch257
-rw-r--r--community/lksctp-tools/PKGBUILD23
-rw-r--r--community/macchanger/PKGBUILD8
-rw-r--r--community/multitail/PKGBUILD6
-rw-r--r--community/ndisc6/PKGBUILD42
-rw-r--r--community/ndisc6/ndisc6.install5
-rw-r--r--community/nemiver/PKGBUILD14
-rw-r--r--community/opendkim/PKGBUILD6
-rw-r--r--community/os-prober/PKGBUILD15
-rw-r--r--community/perl-dbd-odbc/PKGBUILD6
-rw-r--r--community/perl-dbd-pg/PKGBUILD8
-rw-r--r--community/perl-json-xs/PKGBUILD8
-rw-r--r--community/processing/PKGBUILD21
-rw-r--r--community/python-pymongo/PKGBUILD6
-rw-r--r--community/python-simplejson/PKGBUILD2
-rw-r--r--community/python2-tagpy/PKGBUILD47
-rw-r--r--community/python2-tagpy/taglib1.7.patch37
-rw-r--r--community/yaml-cpp/PKGBUILD11
-rw-r--r--community/yaml-cpp0.3/PKGBUILD29
40 files changed, 615 insertions, 192 deletions
diff --git a/community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch b/community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch
new file mode 100644
index 000000000..d111214d3
--- /dev/null
+++ b/community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch
@@ -0,0 +1,45 @@
+From ddf5be1f8fc35c38dc241ca935bf4d408f2ff61d Mon Sep 17 00:00:00 2001
+From: Ted Felix <ted@tedfelix.com>
+Date: Thu, 17 Jan 2013 20:03:54 -0500
+Subject: [PATCH] Fix format of video/tabletmode event string
+
+The previous format caused Xorg's xserver to crash in
+lnxACPIGetEventFromOs() because it doesn't check for NULL
+returns from strtok().
+---
+ input_layer.c | 12 ++++++++++--
+ 1 file changed, 10 insertions(+), 2 deletions(-)
+
+diff --git a/input_layer.c b/input_layer.c
+index 591ad64..db410c0 100644
+--- a/input_layer.c
++++ b/input_layer.c
+@@ -56,6 +56,14 @@ struct evtab_entry {
+ evtest.c, acpi_genl, or kacpimon to find new events to add to this
+ table. */
+
++/*
++ * The two numbers (e.g. "00000080 00000000") in each string is a format
++ * that Xorg and maybe others expect.
++ *
++ * See hw/xfree86/os-support/linux/lnx_acpi.c in xserver and specifically
++ * lnxACPIGetEventFromOs().
++ */
++
+ static struct evtab_entry evtab[] = {
+
+ /*** COMMON EVENTS ***/
+@@ -66,8 +74,8 @@ static struct evtab_entry evtab[] = {
+ {{{0,0}, EV_KEY, KEY_SLEEP, 1}, "button/sleep SBTN 00000080 00000000"},
+ {{{0,0}, EV_SW, SW_LID, 1}, "button/lid LID close"},
+ {{{0,0}, EV_SW, SW_LID, 0}, "button/lid LID open"},
+- {{{0,0}, EV_SW, SW_TABLET_MODE, 0}, "video/tabletmode TBLT off"},
+- {{{0,0}, EV_SW, SW_TABLET_MODE, 1}, "video/tabletmode TBLT on"},
++ {{{0,0}, EV_SW, SW_TABLET_MODE, 0}, "video/tabletmode TBLT 0000008A 00000000"},
++ {{{0,0}, EV_SW, SW_TABLET_MODE, 1}, "video/tabletmode TBLT 0000008A 00000001"},
+
+
+ /*** VIDEO ***/
+--
+1.8.1.1
+
diff --git a/community/acpid/PKGBUILD b/community/acpid/PKGBUILD
index 5bf2b9974..355f848fb 100644
--- a/community/acpid/PKGBUILD
+++ b/community/acpid/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 77739 2012-10-14 03:02:21Z seblu $
+# $Id: PKGBUILD 82787 2013-01-24 12:57:51Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: xduugu
# Contributor: Manolis Tzanidakis
@@ -6,7 +6,7 @@
pkgname=acpid
pkgver=2.0.17
-pkgrel=3
+pkgrel=4
pkgdesc='A daemon for delivering ACPI power management events with netlink support'
arch=('i686' 'x86_64' 'mips64el')
url='http://tedfelix.com/linux/acpid-netlink.html'
@@ -14,24 +14,23 @@ license=('GPL')
depends=('bash')
optdepends=('perl: use perl based examples')
replaces=('acpid2')
-backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything' 'etc/conf.d/acpid')
+backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything')
source=("http://www.tedfelix.com/linux/$pkgname-$pkgver.tar.xz"
- 'acpid.rc'
- 'acpid.conf'
'acpid.socket'
'acpid.service'
'anything'
- 'handler.sh')
+ 'handler.sh'
+ '0001-Fix-format-of-video-tabletmode-event-string.patch')
md5sums=('d858729b7d984c5e3a0c7558e9de1584'
- '077475c75fbdd9de75f9a397130ccd91'
- '929c6d2e91295c22ed9ec6212d7eabef'
'ee6cb99e50e580c50331a73045412ae9'
- '7f545754db5be7296d2dd97c049062ee'
+ '10290f69491206cd104654e5b900b661'
'2d37b98d6e74bab815604b8b48c6cfd4'
- '47f44ff5f02685dce8bcdab8568f0c38')
+ '47f44ff5f02685dce8bcdab8568f0c38'
+ 'a813e00553104f2129f64cae95a7983f')
build() {
cd $pkgname-$pkgver
+ patch -p1 -i "$srcdir/0001-Fix-format-of-video-tabletmode-event-string.patch"
./configure --prefix=/usr
make
}
@@ -45,9 +44,7 @@ package() {
install -Dm644 anything "$pkgdir/etc/acpi/events/anything"
install -Dm755 handler.sh "$pkgdir/etc/acpi/handler.sh"
- # initscripts
- install -Dm755 acpid.rc "$pkgdir/etc/rc.d/acpid"
- install -Dm644 acpid.conf "$pkgdir/etc/conf.d/acpid"
+ # systemd
install -Dm644 acpid.socket "$pkgdir/usr/lib/systemd/system/acpid.socket"
install -Dm644 acpid.service "$pkgdir/usr/lib/systemd/system/acpid.service"
@@ -55,4 +52,4 @@ package() {
chmod 755 "$pkgdir/usr/sbin/acpid"
}
-# vim:set ts=2 sw=2 ft=sh et:
+# vim:set ts=2 sw=2 et:
diff --git a/community/acpid/acpid.service b/community/acpid/acpid.service
index 4c0e073b0..e4ddacdbe 100644
--- a/community/acpid/acpid.service
+++ b/community/acpid/acpid.service
@@ -3,8 +3,7 @@ Description=ACPI event daemon
Requires=acpid.socket
[Service]
-EnvironmentFile=/etc/conf.d/acpid
-ExecStart=/usr/sbin/acpid -f $ACPID_ARGS
+ExecStart=/usr/sbin/acpid -f
[Install]
WantedBy=multi-user.target
diff --git a/community/arptables/PKGBUILD b/community/arptables/PKGBUILD
index 21023214b..03485a112 100644
--- a/community/arptables/PKGBUILD
+++ b/community/arptables/PKGBUILD
@@ -1,26 +1,22 @@
-# $Id: PKGBUILD 71317 2012-05-26 14:59:39Z seblu $
+# $Id: PKGBUILD 82774 2013-01-24 11:14:44Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Daniel Micay <danielmicay@gmail.com>
# Contributor: Michal Soltys <soltys@ziu.info>
pkgname=arptables
-pkgver=0.0.3_4
-pkgrel=3
+pkgver=0.0.4
+pkgrel=1
pkgdesc='ARP filtering utility'
arch=('i686' 'x86_64' 'mips64el')
url='http://ebtables.sourceforge.net/'
+depends=('glibc' 'perl' 'bash')
license=('GPL')
-backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname")
-install=$pkgname.install
+backup=("etc/$pkgname.conf")
source=("http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz"
- "$pkgname.conf"
- "$pkgname.rc"
"$pkgname.systemd"
"$pkgname.service")
-md5sums=('1d4ab05761f063b0751645d8f2b8f8e5'
- '00bfb5bd8a83a5b466c650ee5d8f86f3'
- '60e0319b55b1ef9e13d9ac03dd98c8d4'
- '65a9ed0b866f727184a87e4d480975bd'
+md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
+ 'e54342a833c52b2bc67e7985e8f8fdfd'
'b26771191e52905d8aea6333c26cb1c3')
build() {
@@ -39,16 +35,15 @@ package() {
INITDIR=/etc/rc.d \
SYSCONFIGDIR=/etc
popd
- # install initscripts
- install -Dm 755 $pkgname.rc "$pkgdir/etc/rc.d/$pkgname"
- install -Dm 644 $pkgname.conf "$pkgdir/etc/conf.d/$pkgname"
- # install systemd service
+ # systemd
install -Dm 755 $pkgname.systemd \
"$pkgdir/usr/lib/systemd/scripts/$pkgname"
install -Dm 644 $pkgname.service \
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
# default config file
install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
+ # remove upstream rc
+ rm -rf "$pkgdir/etc/rc.d"
}
-# vim:set ts=2 sw=2 ft=sh et:
+# vim:set ts=2 sw=2 et:
diff --git a/community/arptables/arptables.systemd b/community/arptables/arptables.systemd
index bc5acdbcf..6a4019257 100644
--- a/community/arptables/arptables.systemd
+++ b/community/arptables/arptables.systemd
@@ -1,13 +1,12 @@
#!/bin/bash
-. /etc/conf.d/arptables
+CONFIG_FILE='/etc/arptables.conf'
case $1 in
start)
arptables-restore < "$CONFIG_FILE"
;;
stop)
- [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save
arptables-restore < /dev/null
;;
save)
diff --git a/community/bird/PKGBUILD b/community/bird/PKGBUILD
index d25f71aa7..332b9fd78 100644
--- a/community/bird/PKGBUILD
+++ b/community/bird/PKGBUILD
@@ -1,24 +1,20 @@
-# $Id: PKGBUILD 75510 2012-08-26 17:46:55Z seblu $
+# $Id: PKGBUILD 82772 2013-01-24 11:12:07Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
pkgbase=bird
pkgname=('bird' 'bird6')
-pkgver=1.3.8
-pkgrel=2
+pkgver=1.3.9
+pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
url='http://bird.network.cz/'
license=('GPL2')
depends=('readline' 'ncurses')
source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz"
- 'bird.rc'
- 'bird.conf'
'bird.service'
'bird6.service')
-md5sums=('965fee1be1d5cd45ceef3926e49c18ce'
- '5e5346a057f187f56cce928b7e423636'
- '25241a4d7ef639506e0080431b2c1690'
- '14e684c84249b8f7748d94eee6df155a'
- '4988006fc8169c5e00771c75ca67e78f')
+md5sums=('86042560b5053dd008ba0b5ecbdde136'
+ 'ccd12c994501e28a7256a6a2a17154b2'
+ '631eea3de9be2f259aaf91f281d2d39a')
build() {
cd $pkgbase-$pkgver
@@ -48,10 +44,7 @@ package_bird () {
# no /var inside pkg
rm -r "$pkgdir/var"
- # iniscripts files
- install -D -m 755 "$srcdir/bird.rc" "$pkgdir/etc/rc.d/bird"
- install -D -m 644 "$srcdir/bird.conf" "$pkgdir/etc/conf.d/bird"
- # systemd file
+ # systemd
install -D -m 644 "$srcdir/bird.service" "$pkgdir/usr/lib/systemd/system/bird.service"
}
@@ -66,11 +59,8 @@ package_bird6 () {
# no /var inside pkg
rm -r "$pkgdir/var"
- # iniscripts files
- install -D -m 755 "$srcdir/bird.rc" "$pkgdir/etc/rc.d/bird6"
- install -D -m 644 "$srcdir/bird.conf" "$pkgdir/etc/conf.d/bird6"
- # systemd config file
+ # systemd
install -D -m 644 "$srcdir/bird6.service" "$pkgdir/usr/lib/systemd/system/bird6.service"
}
-# vim:set ts=2 sw=2 ft=sh et:
+# vim:set ts=2 sw=2 et:
diff --git a/community/bird/bird.service b/community/bird/bird.service
index b72247208..f40068646 100644
--- a/community/bird/bird.service
+++ b/community/bird/bird.service
@@ -1,5 +1,6 @@
[Unit]
Description=BIRD routing daemon
+After=network.target
[Service]
ExecStart=/usr/sbin/bird -d
diff --git a/community/bird/bird6.service b/community/bird/bird6.service
index 4d245d187..284c75842 100644
--- a/community/bird/bird6.service
+++ b/community/bird/bird6.service
@@ -1,5 +1,6 @@
[Unit]
Description=BIRD IPv6 routing daemon
+After=network.target
[Service]
ExecStart=/usr/sbin/bird6 -d
diff --git a/community/gdal/PKGBUILD b/community/gdal/PKGBUILD
index f788a3902..a3eb291c0 100644
--- a/community/gdal/PKGBUILD
+++ b/community/gdal/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 63578 2012-02-05 11:57:36Z ibiru $
+# $Id: PKGBUILD 82847 2013-01-25 01:53:13Z svenstaro $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=gdal
-pkgver=1.9.0
+pkgver=1.9.1
pkgrel=1
pkgdesc="A translator library for raster geospatial data formats"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.gdal.org/"
license=('custom')
-depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libtiff' 'netcdf' 'python2' 'python2-numpy' 'cfitsio' 'sqlite3' 'libmysqlclient' 'postgresql-libs')
+depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libtiff' 'netcdf' 'python2' 'python2-numpy' 'cfitsio' 'sqlite' 'libmysqlclient' 'postgresql-libs')
makedepends=('perl' 'swig')
optdepends=('postgresql: postgresql database support'
'mysql: mysql database support'
@@ -20,7 +20,7 @@ options=('!libtool')
changelog=$pkgname.changelog
source=(http://download.osgeo.org/${pkgname}/${pkgname}-${pkgver}.tar.gz
gdal-1.5.1-python-install.patch)
-md5sums=('1853f3d8eb5232ae030abe007840cade'
+md5sums=('c5cf09b92dac1f5775db056e165b34f5'
'81afc1c26d29cee84aadb6924fe33861')
build() {
diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD
index 91e89eee3..56e2f337c 100644
--- a/community/gmic/PKGBUILD
+++ b/community/gmic/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 78931 2012-10-27 23:44:41Z ebelanger $
+# $Id: PKGBUILD 82913 2013-01-25 17:29:35Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: farid <farid at archlinuc-br.org>
@@ -6,8 +6,8 @@
pkgbase=gmic
pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.1.8
-pkgrel=4
+pkgver=1.5.3.0
+pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
url="http://gmic.sourceforge.net"
license=("custom:CeCILL")
@@ -15,8 +15,8 @@ makedepends=("gimp" "qt" "fftw" "openexr" "opencv")
#options=('!emptydirs')
source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz"
"opencv-buildfix.patch")
-md5sums=('1fc38346269bdd829dd7c4864a27fbc3'
- '8d1cf5000239099255d25c7d3dbe5728')
+md5sums=('2b3c385d727556d201767d338d97946f'
+ '120319b0d6c81c5af186abe2281b79ca')
build() {
cd "${srcdir}/gmic-${pkgver}"
diff --git a/community/gmic/opencv-buildfix.patch b/community/gmic/opencv-buildfix.patch
index b204cb721..ae6f71487 100644
--- a/community/gmic/opencv-buildfix.patch
+++ b/community/gmic/opencv-buildfix.patch
@@ -18,15 +18,3 @@ diff -wbBur gmic-1.5.1.7/src/Makefile gmic-1.5.1.7.q/src/Makefile
if test -d /etc/bash_completion.d/; then mkdir -p $(DESTDIR)/etc/bash_completion.d/; cp -f gmic_bashcompletion.sh $(DESTDIR)/etc/bash_completion.d/gmic; fi
if test -d /opt/local/etc/bash_completion.d/; then mkdir -p $(DESTDIR)/opt/local/etc/bash_completion.d/; cp -f gmic_bashcompletion.sh $(DESTDIR)/opt/local/etc/bash_completion.d/gmic; fi
-diff -wbBur gmic-1.5.1.7/zart/zart.pro gmic-1.5.1.7.q/zart/zart.pro
---- gmic-1.5.1.7/zart/zart.pro 2012-07-26 12:59:33.000000000 +0400
-+++ gmic-1.5.1.7.q/zart/zart.pro 2012-08-03 12:32:27.000000000 +0400
-@@ -34,7 +34,7 @@
- FORMS = ui/MainWindow.ui ui/DialogAbout.ui ui/DialogLicence.ui
-
- !macx {
-- LIBS += -lX11 ../src/libgmic.a -lcxcore -lcv -lml -lhighgui -lml -lfftw3
-+ LIBS += -lX11 ../src/libgmic.a `pkg-config --libs opencv` -lopencv_core -lopencv_ml -lopencv_highgui -lfftw3
- } else {
- LIBS += -lX11 ../src/libgmic.a `pkg-config opencv --libs` -lfftw3
- }
diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD
index 71a0e4a0c..b94941c8e 100644
--- a/community/gnote/PKGBUILD
+++ b/community/gnote/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 79122 2012-10-30 23:06:42Z heftig $
+# $Id: PKGBUILD 82837 2013-01-24 20:04:23Z ioni $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: uastasi <uastasi@archlinux.us>
pkgname=gnote
-pkgver=3.6.1
+pkgver=3.6.2
pkgrel=1
pkgdesc="A note taking application."
arch=('i686' 'x86_64' 'mips64el')
@@ -13,7 +13,7 @@ makedepends=('intltool' 'itstool' 'boost')
options=('!libtool')
install=gnote.install
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f1f62ccf9cce1eef2ee2b41039360f946f3b4223983ca52223ccb6687a59f2f9')
+sha256sums=('38f3b069874658f281445e04b8376d946580e4a5e39620f7e30fdd8216d46c1e')
build() {
cd $pkgname-$pkgver
diff --git a/community/inn/PKGBUILD b/community/inn/PKGBUILD
index ab6e3ca69..9ec3784ca 100644
--- a/community/inn/PKGBUILD
+++ b/community/inn/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 76159 2012-09-12 10:42:46Z spupykin $
+# $Id: PKGBUILD 82923 2013-01-25 21:39:24Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Edward Tjörnhammar <xhemi@cube2.se>
# Contributor: Edward Tjörnhammar <xhemi@cube2.se>
pkgname=inn
pkgver=2.5.3
-pkgrel=1
+pkgrel=2
pkgdesc="Complete open source Usenet system. De facto standard for handling news routing, news spool and serving the spool to customers."
url="http://www.isc.org/software/inn/"
arch=('i686' 'x86_64' 'mips64el')
@@ -52,6 +52,7 @@ source=(http://ftp.isc.org/isc/inn/inn-$pkgver.tar.gz
innd.conf
nnrpd.conf
innd.service
+ inn.tmpfiles
site.make.patch)
md5sums=('353fe95232828ddbc80debff86c240bc'
'a243d9498568f1beee20da5684b5fbfc'
@@ -59,6 +60,7 @@ md5sums=('353fe95232828ddbc80debff86c240bc'
'fbf1d2c5b3c5a08ae3e515c71c2e2e4a'
'bb4bbe86ae52fbbf08b0f6f370dea052'
'9da925a486fcf0cd67fdf462cbb9c0b4'
+ '050b7bffff3361c673a118739e42349e'
'960c800026ed6e03901cf0bafdfd53d8')
build() {
@@ -133,4 +135,5 @@ package() {
chmod 05555 $pkgdir/usr/bin/innbind
install -Dm0644 $srcdir/innd.service $pkgdir/usr/lib/systemd/system/innd.service
+ install -Dm0644 $srcdir/inn.tmpfiles $pkgdir/usr/lib/tmpfiles.d/inn.conf
}
diff --git a/community/inn/inn.tmpfiles b/community/inn/inn.tmpfiles
new file mode 100644
index 000000000..234b97c2c
--- /dev/null
+++ b/community/inn/inn.tmpfiles
@@ -0,0 +1 @@
+d /run/inn 0755 news news -
diff --git a/community/iperf/PKGBUILD b/community/iperf/PKGBUILD
index 58fe40947..7c98b4f7a 100644
--- a/community/iperf/PKGBUILD
+++ b/community/iperf/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 80971 2012-12-08 03:52:17Z seblu $
+# $Id: PKGBUILD 82783 2013-01-24 12:34:05Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Dale Blount <dale@archlinux.org>
pkgname=iperf
pkgver=2.0.5
-pkgrel=6
+pkgrel=7
pkgdesc='A tool to measure maximum TCP bandwidth'
arch=('i686' 'x86_64' 'mips64el')
license=('custom')
@@ -13,16 +13,12 @@ url='http://iperf.sourceforge.net'
depends=('gcc-libs')
install=iperf.install
source=("http://downloads.sourceforge.net/iperf/iperf-$pkgver.tar.gz"
- 'iperf.rc'
- 'iperf.conf'
'iperf-tcp.service'
'iperf-udp.service'
'client.cpp.patch')
md5sums=('44b5536b67719f4250faed632a3cd016'
- 'e99dc0d41eb800970390dd149d70b544'
- 'c75cb18434c6bf19fdc89b9caa766d7d'
- 'd2203fb26bb50a3378c2699714ada8e5'
- '573964ec1b1558a78cd667459676cdb7'
+ '1d8660b540aa0db2e627d3d400cb8de4'
+ 'a27a8d27b1585bc999a04a2f082e2726'
'82ce63c87cc8bb2f0f94069857ac14a9')
build() {
@@ -41,9 +37,7 @@ package() {
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
popd
- # install initscripts
- install -Dm755 iperf.rc "$pkgdir/etc/rc.d/iperf"
- install -Dm644 iperf.conf "$pkgdir/etc/conf.d/iperf"
+ # systemd
install -Dm644 iperf-tcp.service "$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
install -Dm644 iperf-udp.service "$pkgdir/usr/lib/systemd/system/iperf-udp.service"
}
diff --git a/community/iperf/iperf-tcp.service b/community/iperf/iperf-tcp.service
index 29967815a..ccb8401c8 100644
--- a/community/iperf/iperf-tcp.service
+++ b/community/iperf/iperf-tcp.service
@@ -1,5 +1,6 @@
[Unit]
Description=Iperf TCP Server
+After=network.target
[Service]
ExecStart=/usr/bin/iperf -s -V
diff --git a/community/iperf/iperf-udp.service b/community/iperf/iperf-udp.service
index 2253f9c45..b3c5d2686 100644
--- a/community/iperf/iperf-udp.service
+++ b/community/iperf/iperf-udp.service
@@ -1,5 +1,6 @@
[Unit]
Description=Iperf UDP Server
+After=network.target
[Service]
ExecStart=/usr/bin/iperf -u -s -V
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD
index 30f3e07e4..93dfedb16 100644
--- a/community/ipset/PKGBUILD
+++ b/community/ipset/PKGBUILD
@@ -1,25 +1,21 @@
-# $Id: PKGBUILD 80651 2012-11-28 16:13:35Z seblu $
+# $Id: PKGBUILD 82785 2013-01-24 12:55:11Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
pkgname=ipset
pkgver=6.16.1
-pkgrel=1
+pkgrel=2
pkgdesc='Administration tool for IP sets'
arch=('i686' 'x86_64' 'mips64el')
url='http://ipset.netfilter.org'
license=('GPL2')
-depends=('libmnl')
-backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname")
+depends=('libmnl' 'bash')
+backup=("etc/$pkgname.conf")
options=('!libtool')
source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2"
- "$pkgname.conf"
- "$pkgname.rc"
"$pkgname.systemd"
"$pkgname.service")
md5sums=('9fd70c825f052db7dc9d5ba0562b7083'
- '3e606a2823a700b4e9c5f17511a6f6a5'
- 'de89b054d967036e08b13bc6a7235286'
- 'dfc3105b89ed41fc4a1feb4f4f13f2a3'
+ '7daa4f163eef9db216cb4c428e0342a3'
'b032241b96b5802975fe4321cc511c6b')
build() {
@@ -34,11 +30,10 @@ package() {
# install doc
install -dm755 "$pkgdir/usr/share/doc/$pkgname"
install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname"
+ # install pkgconfig file
+ install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc"
popd
- # install initscripts
- install -Dm 755 $pkgname.rc "$pkgdir/etc/rc.d/$pkgname"
- install -Dm 644 $pkgname.conf "$pkgdir/etc/conf.d/$pkgname"
- # install systemd service
+ # systemd
install -Dm 755 $pkgname.systemd \
"$pkgdir/usr/lib/systemd/scripts/$pkgname"
install -Dm 644 $pkgname.service \
@@ -47,4 +42,4 @@ package() {
install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
}
-# vim:set ts=2 sw=2 ft=sh et:
+# vim:set ts=2 sw=2 et:
diff --git a/community/ipset/ipset.systemd b/community/ipset/ipset.systemd
index 92397f3a7..c28086322 100644
--- a/community/ipset/ipset.systemd
+++ b/community/ipset/ipset.systemd
@@ -1,13 +1,12 @@
#!/bin/bash
-. /etc/conf.d/ipset
+CONFIG_FILE='/etc/ipset.conf'
case $1 in
start)
ipset restore < "$CONFIG_FILE"
;;
stop)
- [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save
ipset destroy
;;
save)
diff --git a/community/librime/PKGBUILD b/community/librime/PKGBUILD
index 5b9445720..d1899bb58 100644
--- a/community/librime/PKGBUILD
+++ b/community/librime/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 82381 2013-01-16 11:25:08Z fyan $
+# $Id: PKGBUILD 82860 2013-01-25 04:19:04Z svenstaro $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: GONG Chen <chen dot sst at gmail dot com>
# Contributor: 網軍總司令
pkgname=librime
pkgver=0.9.7
-pkgrel=1
+pkgrel=3
pkgdesc="Rime input method engine"
arch=('i686' 'x86_64' 'mips64el')
url="http://code.google.com/p/rimeime/"
license=('GPL3')
-depends=('boost>=1.46' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp')
+depends=('boost>=1.46' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp0.3')
optdepends=('brise: Rime schema repository')
makedepends=('cmake')
source=("http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz")
diff --git a/community/linux-tools/cpupower.default b/community/linux-tools/cpupower.default
new file mode 100644
index 000000000..b5c522ea1
--- /dev/null
+++ b/community/linux-tools/cpupower.default
@@ -0,0 +1,29 @@
+# Define CPUs governor
+# valid governors: ondemand, performance, powersave, conservative, userspace.
+#governor='ondemand'
+
+# Limit frequency range
+# Valid suffixes: Hz, kHz (default), MHz, GHz, THz
+#min_freq="2.25GHz"
+#max_freq="3GHz"
+
+# Specific frequency to be set.
+# Requires userspace governor to be available.
+# Do not set governor field if you use this one.
+#freq=
+
+# Utilizes cores in one processor package/socket first before processes are
+# scheduled to other processor packages/sockets.
+# See man (1) CPUPOWER-SET for additional details.
+#mc_scheduler=
+
+# Utilizes thread siblings of one processor core first before processes are
+# scheduled to other cores. See man (1) CPUPOWER-SET for additional details.
+#smp_scheduler=
+
+# Sets a register on supported Intel processore which allows software to convey
+# its policy for the relative importance of performance versus energy savings to
+# the processor. See man (1) CPUPOWER-SET for additional details.
+#perf_bias=
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/lksctp-tools/0001-Modernize-autotools.patch b/community/lksctp-tools/0001-Modernize-autotools.patch
new file mode 100644
index 000000000..2fa0b23c6
--- /dev/null
+++ b/community/lksctp-tools/0001-Modernize-autotools.patch
@@ -0,0 +1,257 @@
+From 6812d5ed157869d466058ad7383e1a94c3ead65c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= <seblu@seblu.net>
+Date: Thu, 24 Jan 2013 12:41:49 +0100
+Subject: [PATCH] Modernize autotools
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Allow compilation with last version of autotools
+- libtool 2.4.2
+- m4 1.4.16
+- autoconf 2.69
+- automake 1.13.1
+- make 3.82
+
+Signed-off-by: Sébastien Luttringer <seblu@seblu.net>
+---
+ Makefile.am | 2 ++
+ configure.ac | 75 ++++++++++++++++++++++++++++++++++++++++++++++
+ configure.in | 74 ---------------------------------------------
+ src/apps/Makefile.am | 2 +-
+ src/func_tests/Makefile.am | 2 +-
+ src/lib/Makefile.am | 2 +-
+ src/testlib/Makefile.am | 2 +-
+ 7 files changed, 81 insertions(+), 78 deletions(-)
+ create mode 100644 configure.ac
+ delete mode 100644 configure.in
+
+diff --git a/Makefile.am b/Makefile.am
+index 109f01d..2c9c8c6 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -12,6 +12,8 @@ EXTRA_DIST += ChangeLog AUTHORS COPYING COPYING.lib INSTALL \
+ # bin or src products may be required to generate stuff in test/
+ SUBDIRS = man bin src doc
+
++ACLOCAL_AMFLAGS=-I m4
++
+ # Libtool support
+ LIBTOOL_DEPS = @LIBTOOL_DEPS@
+ libtool: $(LIBTOOL_DEPS)
+diff --git a/configure.ac b/configure.ac
+new file mode 100644
+index 0000000..9af138b
+--- /dev/null
++++ b/configure.ac
+@@ -0,0 +1,75 @@
++dnl -*-autoconf-*-
++
++dnl lksctp-tools: Autoconf script
++dnl
++dnl $Id: configure.in,v 1.1.1.2 2002/08/06 23:55:45 inaky Exp $
++
++dnl (C) 2002 Intel Corporation
++dnl Iaky Prez-Gonzlez <inaky.perez-gonzalez@intel.com>
++dnl - Initial packaging
++
++dnl Package info
++dnl (CONFIG_AUX_DIR is for putting stuff in $TOPSRCDIR/bin, so we
++dnl reduce clutter in the root; if we put it below AM_INIT_AUTOMAKE,
++dnl configure will fail ...)
++
++AC_INIT([lksctp-tools], [1.0.13])
++AC_CONFIG_AUX_DIR(bin)
++AC_CONFIG_SRCDIR([src/apps/sctp_darn.c])
++AC_CONFIG_HEADERS([config.h])
++AC_CONFIG_MACRO_DIR([m4])
++AC_REVISION($Revision: 1.1.1.2 $)
++AM_INIT_AUTOMAKE
++AM_SILENT_RULES([yes])
++
++dnl Set defaults
++dnl CFLAGS="$CFLAGS -g -Wall"
++
++dnl Checks for programs.
++AC_PROG_AWK
++AC_PROG_CC
++AC_PROG_INSTALL
++AC_PROG_LN_S
++AC_ISC_POSIX
++
++dnl Checks for libraries.
++AC_LIBTOOL_DLOPEN
++AC_PROG_LIBTOOL
++AC_SUBST(LIBTOOL_DEPS)
++
++dnl Checks for header files.
++AC_HEADER_STDC
++AC_HEADER_SYS_WAIT
++AC_CHECK_HEADERS([arpa/inet.h fcntl.h malloc.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h unistd.h])
++
++dnl Checks for typedefs, structures, and compiler characteristics.
++AC_C_CONST
++AC_C_INLINE
++AC_TYPE_SIZE_T
++AC_HEADER_TIME
++AC_STRUCT_TM
++AC_C_VOLATILE
++
++# Checks for library functions.
++AC_FUNC_MALLOC
++AC_FUNC_MEMCMP
++AC_FUNC_REALLOC
++AC_FUNC_SELECT_ARGTYPES
++AC_FUNC_SETVBUF_REVERSED
++AC_FUNC_VPRINTF
++AC_CHECK_FUNCS([bzero gethostbyname gettimeofday memmove memset select socket strchr strerror strtol strtoul])
++
++AC_CONFIG_FILES([lksctp-tools.spec
++ Makefile
++ bin/Makefile
++ man/Makefile
++ src/Makefile
++ src/apps/Makefile
++ src/func_tests/Makefile
++ src/include/Makefile
++ src/include/netinet/Makefile
++ src/lib/Makefile
++ src/testlib/Makefile
++ src/withsctp/Makefile
++ doc/Makefile])
++AC_OUTPUT
+diff --git a/configure.in b/configure.in
+deleted file mode 100644
+index c43ed9d..0000000
+--- a/configure.in
++++ /dev/null
+@@ -1,74 +0,0 @@
+-dnl -*-autoconf-*-
+-
+-dnl lksctp-tools: Autoconf script
+-dnl
+-dnl $Id: configure.in,v 1.1.1.2 2002/08/06 23:55:45 inaky Exp $
+-
+-dnl (C) 2002 Intel Corporation
+-dnl Iaky Prez-Gonzlez <inaky.perez-gonzalez@intel.com>
+-dnl - Initial packaging
+-
+-dnl Package info
+-dnl (CONFIG_AUX_DIR is for putting stuff in $TOPSRCDIR/bin, so we
+-dnl reduce clutter in the root; if we put it below AM_INIT_AUTOMAKE,
+-dnl configure will fail ...)
+-
+-AC_INIT([src/apps/sctp_darn.c])
+-AC_CONFIG_AUX_DIR(bin)
+-AM_INIT_AUTOMAKE(lksctp-tools,1.0.13)
+-AC_CONFIG_SRCDIR([config.h.in])
+-AM_CONFIG_HEADER([config.h])
+-AC_REVISION($Revision: 1.1.1.2 $)
+-AM_SILENT_RULES([yes])
+-
+-dnl Set defaults
+-dnl CFLAGS="$CFLAGS -g -Wall"
+-
+-dnl Checks for programs.
+-AC_PROG_AWK
+-AC_PROG_CC
+-AC_PROG_INSTALL
+-AC_PROG_LN_S
+-AC_ISC_POSIX
+-
+-dnl Checks for libraries.
+-AC_LIBTOOL_DLOPEN
+-AC_PROG_LIBTOOL
+-AC_SUBST(LIBTOOL_DEPS)
+-
+-dnl Checks for header files.
+-AC_HEADER_STDC
+-AC_HEADER_SYS_WAIT
+-AC_CHECK_HEADERS([arpa/inet.h fcntl.h malloc.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h unistd.h])
+-
+-dnl Checks for typedefs, structures, and compiler characteristics.
+-AC_C_CONST
+-AC_C_INLINE
+-AC_TYPE_SIZE_T
+-AC_HEADER_TIME
+-AC_STRUCT_TM
+-AC_C_VOLATILE
+-
+-# Checks for library functions.
+-AC_FUNC_MALLOC
+-AC_FUNC_MEMCMP
+-AC_FUNC_REALLOC
+-AC_FUNC_SELECT_ARGTYPES
+-AC_FUNC_SETVBUF_REVERSED
+-AC_FUNC_VPRINTF
+-AC_CHECK_FUNCS([bzero gethostbyname gettimeofday memmove memset select socket strchr strerror strtol strtoul])
+-
+-AC_CONFIG_FILES([lksctp-tools.spec
+- Makefile
+- bin/Makefile
+- man/Makefile
+- src/Makefile
+- src/apps/Makefile
+- src/func_tests/Makefile
+- src/include/Makefile
+- src/include/netinet/Makefile
+- src/lib/Makefile
+- src/testlib/Makefile
+- src/withsctp/Makefile
+- doc/Makefile])
+-AC_OUTPUT
+diff --git a/src/apps/Makefile.am b/src/apps/Makefile.am
+index c2e34e4..6d53e6d 100644
+--- a/src/apps/Makefile.am
++++ b/src/apps/Makefile.am
+@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules
+ include $(top_srcdir)/Makefile.dirs
+
+ # General compilation flags
+-INCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib
++AM_CPPFLAGS = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib
+ AM_CFLAGS = -g -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wimplicit-function-declaration
+ AM_LDFLAGS =
+ LDADD = $(top_builddir)/src/testlib/libsctputil.la \
+diff --git a/src/func_tests/Makefile.am b/src/func_tests/Makefile.am
+index 9092ffb..b21e151 100644
+--- a/src/func_tests/Makefile.am
++++ b/src/func_tests/Makefile.am
+@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules
+ include $(top_srcdir)/Makefile.dirs
+
+ # General compilation flags
+-INCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib
++AM_CPPFLAGS = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib
+ AM_CFLAGS = -g -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wimplicit-function-declaration
+ AM_LDFLAGS = -lpthread
+ LDADD = $(top_builddir)/src/testlib/libsctputil.la \
+diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
+index 81cc814..af8bb51 100644
+--- a/src/lib/Makefile.am
++++ b/src/lib/Makefile.am
+@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules
+ include $(top_srcdir)/Makefile.dirs
+
+ # General compilation flags
+-INCLUDES = -I$(top_srcdir)/src/include
++AM_CPPFLAGS = -I$(top_srcdir)/src/include
+
+ lib_LTLIBRARIES = libsctp.la
+ libsctp_la_SOURCES = bindx.c connectx.c peeloff.c opt_info.c addrs.c sendmsg.c recvmsg.c Versions.map
+diff --git a/src/testlib/Makefile.am b/src/testlib/Makefile.am
+index 3d7fd49..fae6bbc 100644
+--- a/src/testlib/Makefile.am
++++ b/src/testlib/Makefile.am
+@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules
+ include $(top_srcdir)/Makefile.dirs
+
+ # General compilation flags
+-INCLUDES = -I$(top_srcdir)/src/include
++AM_CPPFLAGS = -I$(top_srcdir)/src/include
+
+ noinst_LTLIBRARIES = libsctputil.la
+ libsctputil_la_SOURCES = sctputil.c sctputil.h
+--
+1.8.1.1
+
diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD
index 658a7565e..9ac4b38d3 100644
--- a/community/lksctp-tools/PKGBUILD
+++ b/community/lksctp-tools/PKGBUILD
@@ -1,28 +1,39 @@
# $Id$
-# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
+# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
# Contributer: Nicolas Martyanoff <khaelin@gmail.com>
pkgname=lksctp-tools
-pkgver=1.0.11
+pkgver=1.0.13
pkgrel=1
pkgdesc='An implementation of the SCTP protocol'
arch=('i686' 'x86_64' 'mips64el')
url='http://lksctp.sourceforge.net/'
-license=('GPL2')
+license=('GPL2' 'LGPL2.1')
depends=('bash')
options=('!libtool')
-source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz")
-md5sums=('e9cf6c57402c9d4f1173a9529466e16d')
+source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz"
+ '0001-Modernize-autotools.patch')
+md5sums=('96436a1b0d30ae588d0a13f6b646549a'
+ '84635abc83bcd85ef263160b6f435336')
build() {
cd $pkgname-$pkgver
+ # fix autotools
+ patch -p1 -i "$srcdir/0001-Modernize-autotools.patch"
+ ./bootstrap
./configure --prefix=/usr
make
}
+#check() {
+# cd $pkgname-$pkgver/src/func_tests
+# make v4test
+# make v6test
+#}
+
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
-# vim:set ts=2 sw=2 ft=sh et:
+# vim:set ts=2 sw=2 et:
diff --git a/community/macchanger/PKGBUILD b/community/macchanger/PKGBUILD
index b1a96f587..4d9b37ea1 100644
--- a/community/macchanger/PKGBUILD
+++ b/community/macchanger/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 67090 2012-03-03 20:37:59Z kkeen $
+# $Id: PKGBUILD 82851 2013-01-25 02:08:04Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=macchanger
pkgver=1.5.0
-pkgrel=5
-pkgdesc="A small utility to change you NIC's MAC address"
+pkgrel=6
+pkgdesc="A small utility to change your NIC's MAC address"
arch=('i686' 'x86_64' 'mips64el')
url="http://ftp.gnu.org/gnu/macchanger"
license=('GPL')
@@ -23,5 +23,5 @@ build() {
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR=${pkgdir} install
+ make DESTDIR="${pkgdir}" install
}
diff --git a/community/multitail/PKGBUILD b/community/multitail/PKGBUILD
index 28090b541..3a1815863 100644
--- a/community/multitail/PKGBUILD
+++ b/community/multitail/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 81978 2013-01-05 08:30:36Z kkeen $
+# $Id: PKGBUILD 82845 2013-01-25 01:03:39Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Kevin Piche <kevin@archlinux.org>
# Contributor: Roberto Carvajal <roberto@archlinux.org>
pkgname=multitail
-pkgver=5.2.11
+pkgver=5.2.12
pkgrel=1
pkgdesc="Lets you view one or multiple files like the original tail program"
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ url="http://www.vanheusden.com/multitail"
depends=('ncurses')
backup=('etc/multitail.conf')
source=("${url}/${pkgname}-${pkgver}.tgz")
-md5sums=('2dc525c718ed99265ad3f6e09e6d2e4a')
+md5sums=('15fc4a54778327192b0b5f1c0005a1b3')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/ndisc6/PKGBUILD b/community/ndisc6/PKGBUILD
index e61d42718..a84eac204 100644
--- a/community/ndisc6/PKGBUILD
+++ b/community/ndisc6/PKGBUILD
@@ -1,42 +1,38 @@
-# $Id: PKGBUILD 73033 2012-06-28 18:43:36Z cbrannon $
-# Maintainer: Chris Brannon <chris@the-brannons.com>
+# $Id: PKGBUILD 82792 2013-01-24 13:20:12Z seblu $
+# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
+# Contributor: Chris Brannon <chris@the-brannons.com>
# Contributor: Mark Smith <markzzzsmith@yahoo.com.au>
+
pkgname=ndisc6
pkgver=1.0.2
-pkgrel=4
-pkgdesc="A collection of IPv6 networking utilities - ndisc6, rdisc6, tcptraceroute6, tracert6, rltraceroute6, tcpspray6"
+pkgrel=5
+pkgdesc='Collection of IPv6 networking utilities'
arch=('i686' 'x86_64' 'mips64el')
-url="http://www.remlab.net/ndisc6/"
-license=("GPL")
+url='http://www.remlab.net/ndisc6/'
+license=('GPL')
depends=('glibc' 'perl')
makedepends=('glibc' 'gcc')
options=(!emptydirs)
install=ndisc6.install
-source=(http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2
- rdnssd.rc.d
- rdnssd.confd
- rdnssd.service)
+source=("http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2"
+ 'rdnssd.service')
md5sums=('50cb4c19606cf6ff2b7388e71832f579'
- '3421fd731c4da4f9e07fc6b6ff4e5084'
- 'f1910902932e2622fc166960819db6c4'
'beeb4f033e9eb951e2de962f609c7c2a')
build() {
- cd "$srcdir/$pkgname-$pkgver"
-
+ cd $pkgname-$pkgver
+ # patch invalid path
+ sed -ri 's,PATH=/sbin:/bin,PATH=/sbin:/bin:/usr/sbin:/usr/bin,' rdnssd/merge-hook.in
./configure --localstatedir=/var --sysconfdir=/etc --prefix=/usr
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
-
+ cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
- install -Dm755 "$srcdir/rdnssd.rc.d" "$pkgdir/etc/rc.d/rdnssd"
- install -Dm644 "$srcdir/rdnssd.confd" "$pkgdir/etc/conf.d/rdnssd"
- install -Dm644 "$srcdir/rdnssd.service" \
- "$pkgdir/usr/lib/systemd/system/rdnssd.service"
-
- install -d "$pkgdir/usr/lib/tmpfiles.d"
- echo "d /run/rdnssd 0755 nobody root" > "$pkgdir/usr/lib/tmpfiles.d/ndisc6.conf"
+ install -Dm644 "$srcdir/rdnssd.service" "$pkgdir/usr/lib/systemd/system/rdnssd.service"
+ install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+ echo 'd /run/rdnssd 0755 nobody root' > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/ndisc6/ndisc6.install b/community/ndisc6/ndisc6.install
index 086fb6829..7d917ca19 100644
--- a/community/ndisc6/ndisc6.install
+++ b/community/ndisc6/ndisc6.install
@@ -1,3 +1,8 @@
+#!/bin/sh
+
+# arg 1: the new package version
post_install() {
systemd-tmpfiles --create usr/lib/tmpfiles.d/ndisc6.conf
}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD
index 41af771dc..64fce4172 100644
--- a/community/nemiver/PKGBUILD
+++ b/community/nemiver/PKGBUILD
@@ -1,20 +1,20 @@
-# $Id: PKGBUILD 79336 2012-11-03 04:08:33Z bgyorgy $
+# $Id: PKGBUILD 82907 2013-01-25 12:43:46Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: jordz <jordz@archlinux.us>
pkgname=nemiver
-pkgver=0.9.3
-pkgrel=2
-pkgdesc="C/C++ debugger for GNOME"
+pkgver=0.9.4
+pkgrel=1
+pkgdesc='C/C++ debugger for GNOME'
arch=('x86_64' 'i686' 'mips64el')
license=('GPL')
-url="http://www.gnome.org/projects/nemiver/"
-depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas')
+url='http://www.gnome.org/projects/nemiver/'
+depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas' 'itstool')
makedepends=('boost' 'intltool' 'gnome-doc-utils')
install=nemiver.install
source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz")
options=('!libtool' '!emptydirs')
-sha256sums=('27b8845e54a61ba597050eb16640aaaf2bf21be3191081c9ddd3a34fc2ae617d')
+sha256sums=('12cc5b6092ba720f2524f59928bee4d736e5e5ffeeffb6fd06f99695f17d683f')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/opendkim/PKGBUILD b/community/opendkim/PKGBUILD
index 6e11bf0f4..edd1ed051 100644
--- a/community/opendkim/PKGBUILD
+++ b/community/opendkim/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 78840 2012-10-25 13:10:38Z spupykin $
+# $Id: PKGBUILD 82828 2013-01-24 15:21:21Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Thomas Jost <schnouki@schnouki.net>
pkgname=opendkim
-pkgver=2.7.0
+pkgver=2.7.4
pkgrel=1
pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter."
arch=(i686 x86_64)
@@ -18,7 +18,7 @@ source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.g
opendkim.conf
opendkim.rc
opendkim.service)
-md5sums=('ec3f38e6b612c58cd3b4dabfd923274a'
+md5sums=('310063cabe530eb0b5c16103334b3bb0'
'3e2bb1058ac0662f01e675aa6ac7ee8f'
'093f5c098a45cc68753f97e45a5b374c'
'bc1b73856bc1941faaa4842e00437cb5')
diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD
index ebaa922de..7e69e7cd7 100644
--- a/community/os-prober/PKGBUILD
+++ b/community/os-prober/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 79823 2012-11-13 13:48:38Z tredaelli $
+# $Id: PKGBUILD 82903 2013-01-25 12:14:34Z tredaelli $
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: darkcoder <mario_vazq@hotmail.com>
pkgname=os-prober
-pkgver=1.56
-pkgrel=1
+pkgver=1.57
+pkgrel=2
pkgdesc="Utility to detect other OSes on a set of drives"
url="http://joey.kitenet.net/code/os-prober/"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL3')
depends=('sh')
source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('bd9c1a7fc49a2499d79977cf2c1ec68d')
-sha256sums=('88a79a04617f4ecbeb9c4d318cd9cf8fcb4ae7a724bd503942354011c7da5719')
+md5sums=('67548b17d55cc32c1168bb5a4061170d')
+sha256sums=('d63c6cbb825a7e411aac5e4805edc6db2fbf77a59282b71c10bd29723b8d860c')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -39,9 +39,4 @@ package() {
done
install -Dm755 os-probes/mounted/powerpc/20macosx $pkgdir/usr/lib/os-probes/mounted/20macosx
-
- # create a empty labels file, will be used by os-prober at execution
- mkdir -p $pkgdir/var/lib/os-prober
- touch $pkgdir/var/lib/os-prober/labels
- chmod 644 $pkgdir/var/lib/os-prober/labels
}
diff --git a/community/perl-dbd-odbc/PKGBUILD b/community/perl-dbd-odbc/PKGBUILD
index 3796a6802..dfedd37cb 100644
--- a/community/perl-dbd-odbc/PKGBUILD
+++ b/community/perl-dbd-odbc/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 73845 2012-07-16 05:41:01Z spupykin $
+# $Id: PKGBUILD 82878 2013-01-25 09:55:32Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: François Charette <firmicus ατ gmx δοτ net>
pkgname=perl-dbd-odbc
-pkgver=1.39
+pkgver=1.41
pkgrel=1
pkgdesc="ODBC Driver for DBI"
arch=('i686' 'x86_64' 'mips64el')
@@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic')
depends=('perl-dbi' 'perl' 'unixodbc')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/M/MJ/MJEVANS/DBD-ODBC-${pkgver}.tar.gz")
-md5sums=('d73b16258ec13c811763eafc7813a435')
+md5sums=('94bce7246d69df1ea5b2f8a702f35554')
build() {
cd DBD-ODBC-${pkgver}
diff --git a/community/perl-dbd-pg/PKGBUILD b/community/perl-dbd-pg/PKGBUILD
index 1bd8cb1cc..afdc17312 100644
--- a/community/perl-dbd-pg/PKGBUILD
+++ b/community/perl-dbd-pg/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 71769 2012-06-02 10:30:06Z bluewind $
+# $Id: PKGBUILD 82880 2013-01-25 09:55:54Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: François Charette <firmicus ατ gmx δοτ net>
pkgname=perl-dbd-pg
-pkgver=2.19.2
-pkgrel=2
+pkgver=2.19.3
+pkgrel=1
pkgdesc="Postgres Driver for DBI"
arch=('i686' 'x86_64' 'mips64el')
url="http://search.cpan.org/dist/DBD-Pg"
@@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic')
depends=('perl-dbi>=1.52' 'postgresql-libs')
options=('!emptydirs')
source=("http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz")
-md5sums=('67c859593e40959b42b3ef23ce6b581e')
+md5sums=('026ea19f89aee12051bce23d797e824b')
build() {
cd DBD-Pg-${pkgver}
diff --git a/community/perl-json-xs/PKGBUILD b/community/perl-json-xs/PKGBUILD
index 7396840ec..773cf0b9e 100644
--- a/community/perl-json-xs/PKGBUILD
+++ b/community/perl-json-xs/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 71805 2012-06-02 10:31:18Z bluewind $
+# $Id: PKGBUILD 82882 2013-01-25 09:56:15Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Tor Krill <tor@krill.nu>
pkgname=perl-json-xs
-pkgver=2.32
-pkgrel=2
+pkgver=2.33
+pkgrel=1
pkgdesc="JSON::XS - JSON serialising/deserialising, done correctly and fast"
url="http://search.cpan.org/dist/JSON-XS/"
license=("GPL")
@@ -12,7 +12,7 @@ arch=('i686' 'x86_64' 'mips64el')
depends=('perl' 'perl-common-sense')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz)
-md5sums=('87f71c78010083ad4d158b5765c4a609')
+md5sums=('6a1eafeadc1680a806ec2eb1798f6084')
build() {
cd $srcdir/JSON-XS-$pkgver
diff --git a/community/processing/PKGBUILD b/community/processing/PKGBUILD
index 2549f2832..940517a8a 100644
--- a/community/processing/PKGBUILD
+++ b/community/processing/PKGBUILD
@@ -1,20 +1,27 @@
-# $Id: PKGBUILD 82430 2013-01-17 14:54:20Z arodseth $
+# $Id: PKGBUILD 82915 2013-01-25 17:38:23Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
pkgname=processing
pkgver=2.0b7
-pkgrel=2
+pkgrel=3
pkgdesc='Programming language and environment for creating images, animations and interactions'
arch=('x86_64' 'i686')
url='http://www.processing.org/'
license=('GPL' 'LGPL')
-depends=('libgl' 'libxxf86vm')
+depends=('libgl' 'sh' 'libxxf86vm')
makedepends=('gendesk')
options=(!strip)
-source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver-linux32.tgz"
- "$pkgname.png::http://wiki.$pkgname.org/skins/${pkgname}skin/${pkgname}_wiki_logo.png")
-sha256sums=('55db8370672f9e2658443a7fe577e23f06ca1ab2435719c865a059a0e65cdc83'
- '019ae700333409acbc628779747ab8f153f6647de25e4de3a9bd4a42d0d8056a')
+
+_bits=64
+sha256sums=('844b4280b242176107f6c40fef47fa420695111cdb2b80294570297f63b1186f')
+if [[ "$CARCH" != "x86_64" ]]; then
+ _bits=32
+ sha256sums=('55db8370672f9e2658443a7fe577e23f06ca1ab2435719c865a059a0e65cdc83')
+fi
+source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver-linux$_bits.tgz")
+
+source+=("$pkgname.png::http://wiki.$pkgname.org/skins/${pkgname}skin/${pkgname}_wiki_logo.png")
+sha256sums+=('019ae700333409acbc628779747ab8f153f6647de25e4de3a9bd4a42d0d8056a')
build() {
cd "$srcdir"
diff --git a/community/python-pymongo/PKGBUILD b/community/python-pymongo/PKGBUILD
index 8d257716f..7f62f72e5 100644
--- a/community/python-pymongo/PKGBUILD
+++ b/community/python-pymongo/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 81246 2012-12-14 12:47:15Z arodseth $
+# $Id: PKGBUILD 82839 2013-01-24 23:13:20Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Thomas S Hatch <thatch45@gmail.com>
# Contributor: Jelle van der Waa <jelle@vdwaa.nl>
pkgbase=python-pymongo
pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.4.1
+pkgver=2.4.2
pkgrel=1
pkgdesc='Python driver for MongoDB'
arch=('x86_64' 'i686' 'mips64el')
@@ -13,7 +13,7 @@ license=('APACHE')
url='http://pypi.python.org/pypi/pymongo/'
makedepends=('python-distribute' 'python2-distribute')
source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz")
-sha256sums=('dae8a074137ade3c854c47f76853792b69d1cbc263d9e74aaca50a02842da970')
+sha256sums=('6862c85844f1766c261a39022ec7a6b631988cb5528a31f8d20e78181398aa5f')
build() {
cd $srcdir
diff --git a/community/python-simplejson/PKGBUILD b/community/python-simplejson/PKGBUILD
index bab14945c..6fab1f149 100644
--- a/community/python-simplejson/PKGBUILD
+++ b/community/python-simplejson/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 74926 2012-08-09 22:02:03Z jlichtblau $
+# $Id: PKGBUILD 82843 2013-01-25 00:09:28Z arodseth $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: David Moore <davidm@sjsoft.com>
diff --git a/community/python2-tagpy/PKGBUILD b/community/python2-tagpy/PKGBUILD
new file mode 100644
index 000000000..160e3e143
--- /dev/null
+++ b/community/python2-tagpy/PKGBUILD
@@ -0,0 +1,47 @@
+# $Id: PKGBUILD 82869 2013-01-25 08:19:37Z andrea $
+# Contributor: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Callan Barrett <wizzomafizzo@gmail.com>
+# Contributor: Scott Horowitz <stonecrest@gmail.com>
+
+pkgname=python2-tagpy
+pkgver=0.94.8
+pkgrel=1
+pkgdesc="Python bindings for TagLib"
+arch=('i686' 'x86_64')
+url="http://pypi.python.org/pypi/tagpy"
+license=('MIT')
+depends=('python2' 'taglib' 'boost-libs')
+makedepends=('python2-distribute' 'boost')
+replaces=('tagpy')
+conflicts=('tagpy')
+source=("http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz"
+ 'taglib1.7.patch')
+md5sums=('6baff63318cf90b9bc5a2497a0597802'
+ '5b47cefe5fad98a093232256779da345')
+
+build() {
+ cd tagpy-${pkgver}
+
+ patch -p1 -i "${srcdir}"/taglib1.7.patch
+
+ sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+ $(find . -name '*.py')
+
+ ./configure.py --taglib-lib-dir=/usr/lib/ \
+ --taglib-inc-dir=/usr/include/taglib/ \
+ --boost-inc-dir=/usr/include/boost/ \
+ --boost-lib-dir=/usr/lib/ \
+ --boost-python-libname=boost_python
+ python2 setup.py build
+}
+
+package(){
+ cd tagpy-${pkgver}
+ python2 setup.py install --root="${pkgdir}" --optimize=1
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+
+check(){
+ cd tagpy-${pkgver}
+ python2 setup.py test
+}
diff --git a/community/python2-tagpy/taglib1.7.patch b/community/python2-tagpy/taglib1.7.patch
new file mode 100644
index 000000000..df1d6e886
--- /dev/null
+++ b/community/python2-tagpy/taglib1.7.patch
@@ -0,0 +1,37 @@
+From: Andreas Kloeckner <inform@tiker.net>
+Date: Tue, 25 Dec 2012 19:36:42 +0000 (+0100)
+Subject: Update tagpy for TagLib 1.7 compatibility. (patch by unknown Gentoo user, via Lars...
+X-Git-Tag: v2013.1~6
+X-Git-Url: http://git.tiker.net/tagpy.git/commitdiff_plain/d0759c0ec7d24ae8d1af395a1032521eb00b4d1f?hp=c2801c31493f77d7c33d20fa20f0b298b0f322ef
+
+Update tagpy for TagLib 1.7 compatibility. (patch by unknown Gentoo user, via Lars Wendler)
+---
+
+diff --git a/src/wrapper/id3.cpp b/src/wrapper/id3.cpp
+index a76f7ef..5c08ae1 100644
+--- a/src/wrapper/id3.cpp
++++ b/src/wrapper/id3.cpp
+@@ -79,6 +79,10 @@ namespace
+ MF_OL(setVolumeAdjustment, 1, 2);
+ MF_OL(setPeakVolume, 1, 2);
+
++ #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10700)
++ MF_OL(render, 0, 1)
++ #endif
++
+ // -------------------------------------------------------------
+ // MPEG
+ // -------------------------------------------------------------
+@@ -212,7 +216,11 @@ void exposeID3()
+ .DEF_SIMPLE_METHOD(removeFrame)
+ .DEF_SIMPLE_METHOD(removeFrames)
+
+- .DEF_SIMPLE_METHOD(render)
++ #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10700)
++ .DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)(int) const)
++ #else
++ .DEF_SIMPLE_METHOD(render)
++ #endif
+ ;
+ }
+
diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD
index ee79f87fb..e87b249b8 100644
--- a/community/yaml-cpp/PKGBUILD
+++ b/community/yaml-cpp/PKGBUILD
@@ -1,25 +1,26 @@
+# $Id: PKGBUILD 82853 2013-01-25 03:41:30Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Markus Martin <markus@archwyrm.net>
pkgname=yaml-cpp
-pkgver=0.3.0
+pkgver=0.5.0
pkgrel=1
pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
url="http://code.google.com/p/yaml-cpp/"
arch=('i686' 'x86_64' 'mips64el')
license=('MIT')
-makedepends=('cmake')
+makedepends=('cmake' 'boost')
source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-md5sums=('9aa519205a543f9372bf4179071c8ac6')
+md5sums=('c6d96190434d5959d814c603f98512c6')
build() {
- cd $srcdir/$pkgname
+ cd $srcdir/$pkgname-$pkgver
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
make
}
package() {
- cd $srcdir/$pkgname
+ cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}
diff --git a/community/yaml-cpp0.3/PKGBUILD b/community/yaml-cpp0.3/PKGBUILD
new file mode 100644
index 000000000..f8f7da315
--- /dev/null
+++ b/community/yaml-cpp0.3/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 82852 2013-01-25 03:41:20Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Markus Martin <markus@archwyrm.net>
+pkgname=yaml-cpp0.3
+_pkgname=yaml-cpp
+pkgver=0.3.0
+pkgrel=2
+pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
+url="http://code.google.com/p/yaml-cpp/"
+arch=('i686' 'x86_64')
+license=('MIT')
+conflicts=('yaml-cpp')
+provides=('yaml-cpp=0.3')
+makedepends=('cmake')
+source=(http://yaml-cpp.googlecode.com/files/$_pkgname-$pkgver.tar.gz)
+md5sums=('9aa519205a543f9372bf4179071c8ac6')
+
+build() {
+ cd $srcdir/$_pkgname
+
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
+ make
+}
+
+package() {
+ cd $srcdir/$_pkgname
+
+ make DESTDIR=$pkgdir install
+}