summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/fcgiwrap/PKGBUILD7
-rw-r--r--community/gkrellm/PKGBUILD8
-rw-r--r--community/gkrellm/gkrellmd40
-rw-r--r--community/glusterfs/PKGBUILD10
-rw-r--r--community/glusterfs/glusterd.service2
-rw-r--r--community/lib32-libtxc_dxtn/PKGBUILD36
-rw-r--r--community/libvirt/PKGBUILD13
-rw-r--r--community/nodejs/PKGBUILD6
-rw-r--r--community/ntop/PKGBUILD11
-rw-r--r--community/ntop/ntop38
-rw-r--r--community/ntop/ntop.conf.d5
-rw-r--r--community/parrot/PKGBUILD6
-rw-r--r--community/sshguard/PKGBUILD4
-rw-r--r--community/uml_utilities/PKGBUILD26
-rw-r--r--community/webfs/PKGBUILD11
-rw-r--r--community/webfs/webfsd.rc38
16 files changed, 36 insertions, 225 deletions
diff --git a/community/fcgiwrap/PKGBUILD b/community/fcgiwrap/PKGBUILD
index b42bf575d..068d81a63 100644
--- a/community/fcgiwrap/PKGBUILD
+++ b/community/fcgiwrap/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 92039 2013-05-31 00:13:34Z seblu $
+# $Id: PKGBUILD 92086 2013-05-31 10:35:32Z seblu $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Aaron Bull Schaefer <aaron@elasticdog.com>
# Contributor: Ron Huang <ronhuang+aur at gmail dot com>
pkgname=fcgiwrap
pkgver=1.1.0
-pkgrel=2
+pkgrel=3
pkgdesc='A simple server for running CGI applications over FastCGI.'
arch=('i686' 'x86_64')
url='http://nginx.localdomain.pl/wiki/FcgiWrap'
@@ -20,7 +20,8 @@ build() {
cd "${srcdir}/${pkgname}-${pkgver}"
autoreconf --install
- ./configure --prefix=/usr --mandir=/share/man --sbindir=/usr/bin
+ # Here --sbindir is implicitly prefixed by /usr
+ ./configure --prefix=/usr --mandir=/share/man --sbindir=/bin
make
}
diff --git a/community/gkrellm/PKGBUILD b/community/gkrellm/PKGBUILD
index 7feef83b4..efb22b4f9 100644
--- a/community/gkrellm/PKGBUILD
+++ b/community/gkrellm/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 79153 2012-10-31 05:24:09Z ebelanger $
+# $Id: PKGBUILD 92097 2013-05-31 14:27:10Z foutrelis $
# Maintainer: dorphell <dorphell@archlinux.org>
# Contributor: Matt Smith (Majik) <darkknight@helpdesk.zaz.net>
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
@@ -6,7 +6,7 @@
# Contributor: Alexander Rødseth <rodseth@gmail.com>
pkgname=gkrellm
pkgver=2.3.5
-pkgrel=3
+pkgrel=4
pkgdesc="System monitor package for GTK2"
arch=('x86_64' 'i686')
url="http://members.dslextreme.com/users/billw/gkrellm/gkrellm.html"
@@ -15,9 +15,8 @@ depends=('gtk2' 'libsm' 'lm_sensors')
makedepends=('gettext')
backup=('etc/gkrellmd.conf')
source=("http://members.dslextreme.com/users/billw/$pkgname/$pkgname-$pkgver.tar.bz2"
- "gkrellmd" "gkrellm.service")
+ "gkrellm.service")
sha256sums=('702b5b0e9c040eb3af8e157453f38dd6f53e1dcd8b1272d20266cda3d4372c8b'
- 'c6d532dd7a706891aed92d750bceda74d4618e86ad82feadc0503214de904360'
'2829931127632d0391f6749024809594b78c138fe4f03c98cd65fdbd47cea376')
build() {
@@ -31,7 +30,6 @@ package() {
make DESTDIR="$pkgdir" PREFIX=/usr install
install -Dm644 "server/gkrellmd.conf" "$pkgdir/etc/gkrellmd.conf"
- install -Dm755 "../gkrellmd" "$pkgdir/etc/rc.d/gkrellmd"
install -Dm644 "../gkrellm.service" "$pkgdir/usr/lib/systemd/system/gkrellm.service"
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
diff --git a/community/gkrellm/gkrellmd b/community/gkrellm/gkrellmd
deleted file mode 100644
index 1f255e755..000000000
--- a/community/gkrellm/gkrellmd
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-# source application-specific settings
-GKRELLMD_ARGS='-d'
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=$(pidof -o %PPID /usr/bin/gkrellmd)
-case "$1" in
- start)
- stat_busy "Starting GKrellM Daemon"
- [ -z "$PID" ] && /usr/bin/gkrellmd ${GKRELLMD_ARGS}
- PID=$(pidof -o %PPID /usr/bin/gkrellmd)
- if [ -z "$PID" ]; then
- stat_fail
- else
- add_daemon gkrellmd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping GKrellM Daemon"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon gkrellmd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
diff --git a/community/glusterfs/PKGBUILD b/community/glusterfs/PKGBUILD
index 82100d9ab..9c53249d6 100644
--- a/community/glusterfs/PKGBUILD
+++ b/community/glusterfs/PKGBUILD
@@ -1,13 +1,13 @@
-# $Id: PKGBUILD 91880 2013-05-28 18:08:16Z spupykin $
+# $Id: PKGBUILD 92113 2013-05-31 16:29:44Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributors:
# Andrei Antoukh - niwi@niwi.be - http://www.niwi.be
# henning mueller <henning@orgizm.net>
pkgname=glusterfs
-_basever=3.3
-pkgver=$_basever.1
-pkgrel=3
+pkgver=3.3.1
+_basever=`echo $pkgver | cut -f1-2 -d.`
+pkgrel=4
pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
arch=(i686 x86_64)
url='http://www.gluster.org/'
@@ -19,6 +19,8 @@ source=(http://download.gluster.org/pub/gluster/glusterfs/$_basever/$pkgver/glus
glusterd.service)
sha256sums=('19aaefe3a0f9059ae831b44c92944503cf439da82da23467101ac13da8b77519'
'e9aa54fcff422e0266e0f89d4bda73e0c77458f7c5443b8327db1e7b4242e6f7')
+sha256sums=('19aaefe3a0f9059ae831b44c92944503cf439da82da23467101ac13da8b77519'
+ '18e6c3bcca396a4524d866977d3fa86135377d7bf5d28a130e697ae2e85f043b')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/glusterfs/glusterd.service b/community/glusterfs/glusterd.service
index c44024317..b1dd5c18d 100644
--- a/community/glusterfs/glusterd.service
+++ b/community/glusterfs/glusterd.service
@@ -4,7 +4,7 @@ After=network.target
[Service]
Type=forking
-ExecStart=/usr/sbin/glusterd
+ExecStart=/usr/bin/glusterd
[Install]
WantedBy=multi-user.target
diff --git a/community/lib32-libtxc_dxtn/PKGBUILD b/community/lib32-libtxc_dxtn/PKGBUILD
deleted file mode 100644
index 6306e1c7e..000000000
--- a/community/lib32-libtxc_dxtn/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 91929 2013-05-29 16:41:31Z lcarlier $
-# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
-
-_pkgbasename=libtxc_dxtn
-pkgname=lib32-$_pkgbasename
-pkgver=1.0.1
-pkgrel=4
-arch=(x86_64)
-pkgdesc="S3 Texture Compression (S3TC) library for Mesa (32-bit)"
-url="http://dri.freedesktop.org/wiki/S3TC"
-license=(custom:BSD)
-depends=(lib32-mesa)
-makedepends=(gcc-multilib)
-options=(!libtool)
-source=(http://people.freedesktop.org/~cbrill/$_pkgbasename/$_pkgbasename-$pkgver.tar.bz2)
-md5sums=('7105107f07ac49753f4b61ba9d0c79c5')
-
-build() {
- cd "$srcdir/$_pkgbasename-$pkgver"
-
- CC="gcc -m32" ./configure --prefix=/usr --libdir=/usr/lib32
- make
-}
-
-package() {
- cd "$srcdir/$_pkgbasename-$pkgver"
-
- make DESTDIR="$pkgdir" install
-
- rm -rf "$pkgdir/usr/include"
-
- # License
- mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
- sed -n '5,22{s|^ \* \?||;p}' txc_dxtn.h \
- > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD
index 6b6ba9bad..d267f726e 100644
--- a/community/libvirt/PKGBUILD
+++ b/community/libvirt/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 91813 2013-05-28 11:39:01Z spupykin $
+# $Id: PKGBUILD 92095 2013-05-31 13:59:18Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jonathan Wiersma <archaur at jonw dot org>
pkgname=libvirt
pkgver=1.0.5
-pkgrel=5
+pkgrel=7
pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)"
arch=('i686' 'x86_64')
url="http://libvirt.org/"
@@ -50,17 +50,18 @@ build() {
done
export LDFLAGS=-lX11
- export RADVD=/usr/sbin/radvd
- [ -f Makefile ] || ./configure --prefix=/usr --libexec=/usr/lib/"$pkgname" \
+ export RADVD=/usr/bin/radvd
+ [ -f Makefile ] || ./configure --prefix=/usr --libexec=/usr/lib/"$pkgname" --sbindir=/usr/bin \
--with-storage-lvm --without-xen --with-udev --without-hal --disable-static \
--with-init-script=systemd --with-audit \
--with-qemu-user=nobody --with-qemu-group=nobody \
--without-netcf --with-interface \
- --with-dnsmasq-path=/usr/bin/dnsmasq
+ --with-dnsmasq-path=/usr/bin/dnsmasq \
+ --with-iptables-path=/usr/bin/iptables
make
sed -i 's|/etc/sysconfig/|/etc/conf.d/|' daemon/libvirtd.service tools/libvirt-guests.service
- sed -i 's|@sbindir@|/usr/sbin|g' src/virtlockd.service
+ sed -i 's|@sbindir@|/usr/bin|g' src/virtlockd.service
sed -i 's|#group =.*|group="kvm"|' src/qemu/qemu.conf
}
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD
index 643ea3673..8b1c40d5a 100644
--- a/community/nodejs/PKGBUILD
+++ b/community/nodejs/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 91630 2013-05-25 17:27:12Z bpiotrowski $
+# $Id: PKGBUILD 92090 2013-05-31 11:38:30Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: James Campos <james.r.campos@gmail.com>
@@ -8,7 +8,7 @@
# Contributor: TIanyi Cui <tianyicui@gmail.com>
pkgname=nodejs
-pkgver=0.10.8
+pkgver=0.10.9
pkgrel=1
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@ makedepends=('python2')
checkdepends=('curl')
options=('!emptydirs')
source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz)
-sha256sums=('edf6f766c8ccc7ef5b02a50c94567343eb1ffae479db93684ba89976e3f18354')
+sha256sums=('25fb276ac6765ebb19f44d3e3775ed1c0275f874c896755d0d619226caee9c30')
prepare() {
cd node-v$pkgver
diff --git a/community/ntop/PKGBUILD b/community/ntop/PKGBUILD
index b6e1a6dc1..1689d4a55 100644
--- a/community/ntop/PKGBUILD
+++ b/community/ntop/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 81126 2012-12-12 00:49:38Z eric $
+# $Id: PKGBUILD 92109 2013-05-31 15:39:41Z foutrelis $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
pkgname=ntop
pkgver=5.0.1
-pkgrel=2
+pkgrel=3
pkgdesc='A network traffic probe that shows the network usage.'
arch=('i686' 'x86_64')
url='http://www.ntop.org/'
@@ -14,12 +14,8 @@ makedepends=('subversion' 'wget' 'ca-certificates')
options=('!libtool' '!makeflags')
install='ntop.install'
source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/Stable/${pkgname}-${pkgver}.tar.gz"
- 'ntop'
- 'ntop.conf.d'
'ntop.service')
md5sums=('01710b6925a8a5ffe1a41b8b512ebd69'
- '7b0d7bb57432e768ff387e9f7236f87c'
- '6a9371de1dcf31d8ef13a4cf349c02b3'
'0e149d20f881600e8387d850ac268483')
build() {
@@ -37,9 +33,6 @@ package() {
install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop"
install -dm0755 -o nobody -g nobody "${pkgdir}/var/lib/ntop/rrd"
- install -Dm0755 "${srcdir}/ntop" "${pkgdir}/etc/rc.d/ntop"
- install -Dm0644 "${srcdir}/ntop.conf.d" "${pkgdir}/etc/conf.d/ntop"
-
for _f in "${pkgdir}/usr/lib/ntop/plugins/"*.so; do
_plug="$(basename ${_f})"
ln -sf "../../lib${_plug}" "${_f}"
diff --git a/community/ntop/ntop b/community/ntop/ntop
deleted file mode 100644
index 2f0dbcbdd..000000000
--- a/community/ntop/ntop
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-# source application-specific settings
-[ -f /etc/conf.d/ntop ] && . /etc/conf.d/ntop
-
-case "$1" in
- start)
- stat_busy "Starting ntop daemon"
- /usr/bin/ntop -d ${NTOP_ARGS} 2>&1 >> ${NTOP_LOG}
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon ntop
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping ntop daemon"
- killall /usr/bin/ntop &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon ntop
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
diff --git a/community/ntop/ntop.conf.d b/community/ntop/ntop.conf.d
deleted file mode 100644
index 28e2a3166..000000000
--- a/community/ntop/ntop.conf.d
+++ /dev/null
@@ -1,5 +0,0 @@
-# Parameters to be passed to ntop.
-NTOP_ARGS="-i eth0 -w 3000"
-
-# Location of the log file.
-NTOP_LOG="/var/log/ntop.log"
diff --git a/community/parrot/PKGBUILD b/community/parrot/PKGBUILD
index 176196262..c7169a504 100644
--- a/community/parrot/PKGBUILD
+++ b/community/parrot/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 88524 2013-04-19 10:31:48Z spupykin $
+# $Id: PKGBUILD 92115 2013-05-31 16:30:12Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: mpie <michael.kyne-phillips1@ntlworld.com>
pkgname=parrot
-pkgver=5.3.0
+pkgver=5.4.0
#_rel=stable
_rel=devel
pkgrel=1
@@ -16,7 +16,7 @@ makedepends=('perl-json')
optdepends=('freeglut')
options=('!makeflags')
source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('4f9fd4994bffd7664901dcace9ab6c16')
+md5sums=('5f4603d4c4ee8d60826e56f9012d2e99')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/sshguard/PKGBUILD b/community/sshguard/PKGBUILD
index 386d73c83..758fa96da 100644
--- a/community/sshguard/PKGBUILD
+++ b/community/sshguard/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 90628 2013-05-13 12:25:45Z mtorromeo $
+# $Id: PKGBUILD 92088 2013-05-31 11:33:59Z mtorromeo $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
pkgname=sshguard
pkgver=1.5
-pkgrel=12
+pkgrel=13
pkgdesc="Brute force detector for SSH, Exim, VSFTPD and more. Blocks by ip with iptables"
arch=('i686' 'x86_64')
#url="http://sourceforge.net/projects/sshguard/"
diff --git a/community/uml_utilities/PKGBUILD b/community/uml_utilities/PKGBUILD
deleted file mode 100644
index 958997347..000000000
--- a/community/uml_utilities/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Maintainer: Mike Sampson <mike at sambodata dot com>
-# Contributor: Jason Chu <jason@archlinux.org>
-# Contributor: Juergen Hoetzel <juergen@archlinux.org>
-
-pkgname=uml_utilities
-pkgver=20070815
-pkgrel=5
-pkgdesc="User Mode Linux Utilities"
-arch=(i686 x86_64)
-depends=('fuse' 'readline' 'perl')
-url="http://user-mode-linux.sourceforge.net/"
-source=(http://user-mode-linux.sourceforge.net/${pkgname}_${pkgver}.tar.bz2)
-license=('GPL2')
-md5sums=('b0468ac8b79cef53f36f5f9517907462')
-
-build() {
- cd $srcdir/tools-$pkgver
- sed 's|lib64|lib|g' -i Makefile
- make all
-}
-
-package() {
- cd $srcdir/tools-$pkgver
- make DESTDIR=$pkgdir install
- chown root $pkgdir/usr/bin/*
-}
diff --git a/community/webfs/PKGBUILD b/community/webfs/PKGBUILD
index e15dba63e..580b9053d 100644
--- a/community/webfs/PKGBUILD
+++ b/community/webfs/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 79331 2012-11-03 03:32:04Z kkeen $
+# $Id: PKGBUILD 92107 2013-05-31 15:10:32Z foutrelis $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: Mark Rosenstand <mark@archlinux.org>
@@ -7,18 +7,18 @@
pkgname=webfs
pkgver=1.21
-pkgrel=9
+pkgrel=10
pkgdesc="Simple and instant http server for mostly static content."
arch=(i686 x86_64)
url="http://linux.bytesex.org/misc/webfs.html"
license=("GPL")
depends=('mime-types' 'openssl')
-backup=(etc/conf.d/webfsd)
+backup=('etc/conf.d/webfsd')
source=(http://dl.bytesex.org/releases/webfs/webfs-${pkgver}.tar.gz
- webfsd.rc webfsd.conf webfs.patch
+ webfsd.conf
+ webfs.patch
webfsd.service)
md5sums=('6dc125fe160479404147e7bbfc781dbc'
- '3ae9fcdcf79b193aa88e386055e9ebd7'
'b2c1ab041a82acd8391b06dc38d986be'
'7294edcec2589df04bb775270d56536e'
'e1202dd915cba1a02e0016aa3a516b4a')
@@ -34,7 +34,6 @@ package() {
cd "$srcdir/$pkgname-$pkgver"
make prefix=/usr DESTDIR="$pkgdir" install
- install -Dm755 "$srcdir/webfsd.rc" "$pkgdir/etc/rc.d/webfsd"
install -Dm644 "$srcdir/webfsd.conf" "$pkgdir/etc/conf.d/webfsd"
install -Dm755 "$srcdir/webfsd.service" "$pkgdir/usr/lib/systemd/system/webfsd.service"
}
diff --git a/community/webfs/webfsd.rc b/community/webfs/webfsd.rc
deleted file mode 100644
index 1c854ebdb..000000000
--- a/community/webfs/webfsd.rc
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-# source application-specific settings
-[ -f /etc/conf.d/webfsd ] && . /etc/conf.d/webfsd
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID webfsd`
-case "$1" in
- start)
- stat_busy "Starting webfsd"
- [ -z "$PID" ] && /usr/bin/webfsd ${WEBFSD_ARGS} &
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon webfsd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping webfsd"
- [ ! -z "$PID" ] && kill $PID &>/dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon webfsd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0