summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-20 23:14:59 +0000
committerroot <root@rshg054.dnsready.net>2011-12-20 23:14:59 +0000
commitea1f4bece8870857691a7123bdc899562760b3fe (patch)
treeb332a0692c3e63d46cb60cb1214fc57871e619c8 /community
parent6d2dec5c3443d142a0131c43666929490961c16a (diff)
Tue Dec 20 23:14:59 UTC 2011
Diffstat (limited to 'community')
-rw-r--r--community/arm-wince-cegcc-binutils/PKGBUILD35
-rw-r--r--community/dwm/PKGBUILD10
-rw-r--r--community/dwm/config.h15
-rw-r--r--community/gnote/PKGBUILD14
-rw-r--r--community/lilypond/PKGBUILD7
-rw-r--r--community/miniupnpc/PKGBUILD25
-rw-r--r--community/nginx/PKGBUILD116
-rwxr-xr-xcommunity/pigz/PKGBUILD37
-rw-r--r--community/qsynergy/PKGBUILD27
-rw-r--r--community/tinc/PKGBUILD40
-rw-r--r--community/tinc/tinc.install20
-rw-r--r--community/tinc/tincd.conf5
-rw-r--r--community/tinc/tincd.rc42
-rw-r--r--community/unbound/PKGBUILD14
-rw-r--r--community/virtualbox-modules/PKGBUILD8
-rw-r--r--community/virtualbox/PKGBUILD12
-rwxr-xr-xcommunity/virtualbox/vboxbuild6
-rw-r--r--community/yagf/PKGBUILD6
-rw-r--r--community/yajl/PKGBUILD3
-rw-r--r--community/zeromq/PKGBUILD6
20 files changed, 326 insertions, 122 deletions
diff --git a/community/arm-wince-cegcc-binutils/PKGBUILD b/community/arm-wince-cegcc-binutils/PKGBUILD
new file mode 100644
index 000000000..491004df4
--- /dev/null
+++ b/community/arm-wince-cegcc-binutils/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 20572 2010-07-09 07:26:42Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=cross-arm-wince-cegcc-binutils
+pkgver=0.59.1
+pkgrel=1
+_prefix=/opt/cegcc
+pkgdesc="CE GCC bundle - cross compilation tools for WinCE"
+arch=(i686 x86_64)
+license=(GPL)
+options=(!libtool)
+url="http://cegcc.sf.net"
+depends=(zlib)
+groups=('cegcc')
+source=(http://arch.pp.ru/~sergej/dl/cegcc-$pkgver.tar.bz2)
+md5sums=('5e3c1098abdf8e5db2a3518ee3578b4b')
+
+build() {
+ cd $srcdir/cegcc/src/binutils
+
+ unset CFLAGS
+ unset LDFLAGS
+
+ [ $NOEXTRACT -eq 1 ] || ./configure \
+ --prefix=${_prefix} \
+ --exec-prefix=${_prefix} \
+ --bindir=${_prefix}/bin \
+ --target=arm-wince-cegcc \
+ --disable-nls \
+ --includedir=${_prefix}/include || return 1
+
+ make || (cd etc && make) && make || return 1
+ make DESTDIR=$pkgdir install || return 1
+ rm -rf $pkgdir/opt/cegcc/info
+}
diff --git a/community/dwm/PKGBUILD b/community/dwm/PKGBUILD
index 0c5b1a448..b2fceeb60 100644
--- a/community/dwm/PKGBUILD
+++ b/community/dwm/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 54496 2011-08-19 09:22:43Z spupykin $
+# $Id: PKGBUILD 60970 2011-12-19 21:33:58Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Dag Odenhall <dag.odenhall@gmail.com>
# Contributor: Grigorios Bouzakis <grbzks@gmail.com>
pkgname=dwm
-pkgver=5.9
-pkgrel=2
+pkgver=6.0
+pkgrel=1
pkgdesc="A dynamic window manager for X"
url="http://dwm.suckless.org"
arch=('i686' 'x86_64')
@@ -16,8 +16,8 @@ install=dwm.install
source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
config.h
dwm.desktop)
-md5sums=('2799f885c05817ca112d521bb247f797'
- 'f0ba59bf77a53e3a2fc8596740ee5cb8'
+md5sums=('8bb00d4142259beb11e13473b81c0857'
+ '2453e037f46449774ec8afab49b4f1a2'
'939f403a71b6e85261d09fc3412269ee')
build() {
diff --git a/community/dwm/config.h b/community/dwm/config.h
index 91cf4391d..77ff35805 100644
--- a/community/dwm/config.h
+++ b/community/dwm/config.h
@@ -2,12 +2,12 @@
/* appearance */
static const char font[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
-static const char normbordercolor[] = "#cccccc";
-static const char normbgcolor[] = "#cccccc";
-static const char normfgcolor[] = "#000000";
-static const char selbordercolor[] = "#0066ff";
-static const char selbgcolor[] = "#0066ff";
-static const char selfgcolor[] = "#ffffff";
+static const char normbordercolor[] = "#444444";
+static const char normbgcolor[] = "#222222";
+static const char normfgcolor[] = "#bbbbbb";
+static const char selbordercolor[] = "#005577";
+static const char selbgcolor[] = "#005577";
+static const char selfgcolor[] = "#eeeeee";
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const Bool showbar = True; /* False means no bar */
@@ -24,6 +24,7 @@ static const Rule rules[] = {
/* layout(s) */
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
+static const int nmaster = 1; /* number of clients in master area */
static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
static const Layout layouts[] = {
@@ -55,6 +56,8 @@ static Key keys[] = {
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
+ { MODKEY, XK_i, incnmaster, {.i = +1 } },
+ { MODKEY, XK_d, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
{ MODKEY, XK_Return, zoom, {0} },
diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD
index 96d40fda7..fff5fe176 100644
--- a/community/gnote/PKGBUILD
+++ b/community/gnote/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 57195 2011-10-23 18:34:02Z ibiru $
+# $Id: PKGBUILD 60974 2011-12-19 21:58:11Z ibiru $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: uastasi <uastasi@archlinux.us>
pkgname=gnote
-pkgver=0.8.1
+pkgver=0.8.2
pkgrel=1
pkgdesc="A note taking application."
arch=('i686' 'x86_64')
@@ -12,11 +12,11 @@ depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf')
makedepends=('intltool' 'gnome-doc-utils' 'boost')
options=('!libtool')
install=gnote.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.8/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('d20ad13814e016679e74aa51e2619000bd4468c13d219c760daa633e398bea43')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.8/$pkgname-$pkgver.tar.xz)
+sha256sums=('7d42b16d6d6751c88f029aff78db7ed1560f2cb727e6cb3f3ef09711e2381992')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
@@ -28,6 +28,6 @@ build() {
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
}
diff --git a/community/lilypond/PKGBUILD b/community/lilypond/PKGBUILD
index 027d1b4a9..8d2139422 100644
--- a/community/lilypond/PKGBUILD
+++ b/community/lilypond/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 60441 2011-12-14 09:14:47Z spupykin $
+# $Id: PKGBUILD 60869 2011-12-19 16:37:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
@@ -6,7 +6,7 @@
pkgname=lilypond
pkgver=2.14.2
-pkgrel=2
+pkgrel=3
pkgdesc="An automated music engraving system"
arch=('i686' 'x86_64')
url="http://lilypond.org"
@@ -17,10 +17,8 @@ makedepends=('flex' 'bison' 'gettext' 'mftrace' 'texinfo' 'fontforge' 't1utils'
options=('emptydirs')
install=lilypond.install
source=(http://download.linuxaudio.org/lilypond/sources/v2.14/$pkgname-$pkgver.tar.gz
- http://arch.p5n.pp.ru/~sergej/dl/lilypond-fonts.tar.bz2
texlive-workaround.patch)
md5sums=('4053a19e03181021893981280feb9aaa'
- '2a0e18e5de17d740ada3861bf4d787ea'
'ff32863f3eed67ac744e50bc4fc67a87')
build() {
@@ -42,5 +40,4 @@ build() {
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
-# cp -a $srcdir/lilypond-fonts/usr/share/lilypond/current/fonts/* $pkgdir/usr/share/lilypond/$pkgver/fonts/
}
diff --git a/community/miniupnpc/PKGBUILD b/community/miniupnpc/PKGBUILD
new file mode 100644
index 000000000..0dd8bdea3
--- /dev/null
+++ b/community/miniupnpc/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 60858 2011-12-19 15:16:56Z tredaelli $
+# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: Florian Loitsch <archlinux@florian.loitsch.com>
+pkgname=miniupnpc
+pkgver=1.6
+pkgrel=2
+pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
+arch=('i686' 'x86_64')
+url="http://miniupnp.free.fr"
+license=('BSD')
+depends=('sh')
+source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz")
+md5sums=('88055f2d4a061cfd4cfe25a9eae22f67')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX="$pkgdir/" install
+ install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
+ install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
diff --git a/community/nginx/PKGBUILD b/community/nginx/PKGBUILD
index 26631fb70..84b951d14 100644
--- a/community/nginx/PKGBUILD
+++ b/community/nginx/PKGBUILD
@@ -1,17 +1,10 @@
-# $Id: PKGBUILD 58582 2011-11-15 20:13:02Z spupykin $
+# $Id: PKGBUILD 60863 2011-12-19 16:15:47Z bpiotrowski $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Bartłomiej Piotrowski <barthalion@gmal.com>
# Contributor: Miroslaw Szot <mss@czlug.icis.pcz.pl>
-_doc_root=/usr/share/nginx/http
-_server_root=/etc/nginx
-_conf_path=${_server_root}/conf
-_tmp_path=/var/spool/nginx
-_log_path=/var/log/nginx
-_user=http
-_group=http
-
pkgname=nginx
-pkgver=1.0.10
+pkgver=1.0.11
pkgrel=1
pkgdesc="lightweight HTTP server and IMAP/POP3 proxy server"
arch=('i686' 'x86_64')
@@ -21,65 +14,72 @@ optdepends=('passenger')
url="http://nginx.org"
license=('custom')
backup=("etc/nginx/conf/fastcgi.conf"
- "etc/nginx/conf/fastcgi_params"
- "etc/nginx/conf/koi-win"
- "etc/nginx/conf/koi-utf"
- "etc/nginx/conf/mime.types"
- "etc/nginx/conf/nginx.conf"
- "etc/nginx/conf/scgi_params"
- "etc/nginx/conf/uwsgi_params"
- "etc/nginx/conf/win-utf"
- "etc/logrotate.d/nginx"
- "etc/conf.d/nginx")
-changelog=changelog
+ "etc/nginx/conf/fastcgi_params"
+ "etc/nginx/conf/koi-win"
+ "etc/nginx/conf/koi-utf"
+ "etc/nginx/conf/mime.types"
+ "etc/nginx/conf/nginx.conf"
+ "etc/nginx/conf/scgi_params"
+ "etc/nginx/conf/uwsgi_params"
+ "etc/nginx/conf/win-utf"
+ "etc/logrotate.d/nginx"
+ "etc/conf.d/nginx")
source=(http://nginx.org/download/nginx-$pkgver.tar.gz
- nginx)
-md5sums=('930b297b00fa1018fb0a1dd3e6b7e17e'
+ nginx)
+md5sums=('a41a01d7cd46e13ea926d7c9ca283a95'
'0e8032d3ba26c3276e8c7c30588d375f')
+_doc_root=/usr/share/nginx/http
+_server_root=/etc/nginx
+_conf_path=${_server_root}/conf
+_tmp_path=/var/spool/nginx
+_log_path=/var/log/nginx
+_user=http
+_group=http
+
build() {
- cd $srcdir/nginx-${pkgver}
+ cd "$srcdir/nginx-${pkgver}"
+
./configure \
- --prefix=${_server_root} \
- --sbin-path=/usr/sbin/nginx \
- --pid-path=/var/run/nginx.pid \
- --lock-path=/var/lock/nginx.lock \
- --http-client-body-temp-path=${_tmp_path}/client_body_temp \
- --http-proxy-temp-path=${_tmp_path}/proxy_temp \
- --http-fastcgi-temp-path=${_tmp_path}/fastcgi_temp \
- --http-log-path=${_log_path}/access.log \
- --error-log-path=${_log_path}/error.log \
- --user=${_user} --group=${_group} \
- --with-imap --with-imap_ssl_module --with-http_ssl_module \
- --with-http_stub_status_module \
- --with-http_dav_module \
- --with-http_gzip_static_module \
- --with-ipv6 \
- --add-module=/usr/lib/passenger/ext/nginx \
- --http-scgi-temp-path=${_tmp_path} \
- --http-uwsgi-temp-path=${_tmp_path}
- #--with-http_mp4_module \
- #--with-http_realip_module \
- #--with-http_addition_module \
- #--with-http_xslt_module \
- #--with-http_image_filter_module \
- #--with-http_geoip_module \
- #--with-http_sub_module \
- #--with-http_flv_module \
- #--with-http_gzip_static_module \
- #--with-http_random_index_module \
- #--with-http_secure_link_module \
- #--with-http_degradation_module \
- #--with-http_perl_module \
+ --prefix=${_server_root} \
+ --sbin-path=/usr/sbin/nginx \
+ --pid-path=/var/run/nginx.pid \
+ --lock-path=/var/lock/nginx.lock \
+ --http-client-body-temp-path=${_tmp_path}/client_body_temp \
+ --http-proxy-temp-path=${_tmp_path}/proxy_temp \
+ --http-fastcgi-temp-path=${_tmp_path}/fastcgi_temp \
+ --http-log-path=${_log_path}/access.log \
+ --error-log-path=${_log_path}/error.log \
+ --user=${_user} --group=${_group} \
+ --with-imap --with-imap_ssl_module --with-http_ssl_module \
+ --with-http_stub_status_module \
+ --with-http_dav_module \
+ --with-http_gzip_static_module \
+ --with-ipv6 \
+ --add-module=/usr/lib/passenger/ext/nginx \
+ --http-scgi-temp-path=${_tmp_path} \
+ --http-uwsgi-temp-path=${_tmp_path}
+ #--with-http_mp4_module \
+ #--with-http_realip_module \
+ #--with-http_addition_module \
+ #--with-http_xslt_module \
+ #--with-http_image_filter_module \
+ #--with-http_geoip_module \
+ #--with-http_sub_module \
+ #--with-http_flv_module \
+ #--with-http_random_index_module \
+ #--with-http_secure_link_module \
+ #--with-http_degradation_module \
+ #--with-http_perl_module \
make
}
package() {
- cd $srcdir/nginx-${pkgver}
- make DESTDIR=$pkgdir install
+ cd "$srcdir/nginx-${pkgver}"
+ make DESTDIR="$pkgdir" install
- install -d $pkgdir/etc/logrotate.d/
+ install -d "$pkgdir"/etc/logrotate.d/
cat <<EOF > $pkgdir/etc/logrotate.d/nginx
$_log_path/*log {
create 640 http log
diff --git a/community/pigz/PKGBUILD b/community/pigz/PKGBUILD
index de0dc48f4..b379fe2ea 100755
--- a/community/pigz/PKGBUILD
+++ b/community/pigz/PKGBUILD
@@ -1,33 +1,38 @@
+# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
# Contributor: Laszlo Papp <djszapi2@gmail.com>
-# Maintainer:Stefan Husmann <stefan-husmann@t-online.de>
+# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=pigz
-pkgver=2.1.6
-pkgrel=2
+pkgver=2.1.7
+pkgrel=1
pkgdesc="Parallel implementation of the gzip file compressor"
arch=('i686' 'x86_64')
url="http://www.zlib.net/pigz/"
license=('custom')
depends=('zlib')
source=(http://www.zlib.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('cbe9030c4be3d0ef2438ee5f8b169ca4')
+md5sums=('a09e1097fdc05ac0fff763bdb4d2d5e4')
build() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd "${srcdir}/$pkgname"
sed -i s/"CFLAGS=".*/"CFLAGS=${CFLAGS}"/g Makefile
make
}
+
package() {
- cd ${srcdir}/$pkgname-$pkgver
- install -Dm755 ${srcdir}/${pkgname}-${pkgver}/${pkgname} \
- ${pkgdir}/usr/bin/${pkgname}
- pushd ${pkgdir}/usr/bin
- ln -s pigz unpigz
+ cd "${srcdir}/$pkgname"
+
+ install -Dm755 "${srcdir}"/${pkgname}/${pkgname} \
+ "${pkgdir}"/usr/bin/${pkgname}
+
+ pushd "${pkgdir}"/usr/bin
+ ln -s pigz unpigz
popd
- install -Dm644 ${srcdir}/${pkgname}-${pkgver}/${pkgname}.1 \
- ${pkgdir}/usr/share/man/man1/${pkgname}.1
- install -Dm644 ${srcdir}/${pkgname}-${pkgver}/${pkgname}.pdf \
- ${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.pdf
- install -Dm644 ${srcdir}/${pkgname}-${pkgver}/README \
- ${pkgdir}/usr/share/licenses/${pkgname}/README
+
+ install -Dm644 "${srcdir}"/${pkgname}/${pkgname}.1 \
+ "${pkgdir}"/usr/share/man/man1/${pkgname}.1
+ install -Dm644 "${srcdir}"/${pkgname}/${pkgname}.pdf \
+ "${pkgdir}"/usr/share/doc/${pkgname}/${pkgname}.pdf
+ install -Dm644 "${srcdir}"/${pkgname}/README \
+ "${pkgdir}"/usr/share/licenses/${pkgname}/README
}
diff --git a/community/qsynergy/PKGBUILD b/community/qsynergy/PKGBUILD
new file mode 100644
index 000000000..ce7985113
--- /dev/null
+++ b/community/qsynergy/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 60949 2011-12-19 19:01:11Z tredaelli $
+# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: mutlu_inek <mutlu_inek@yahoo.de>
+
+pkgname=qsynergy
+pkgver=0.9.1
+pkgrel=1
+pkgdesc="Qt gui for Synergy which lets you remotely control other computers."
+url="http://www.volker-lanz.de/en/software/qsynergy/"
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('qt' 'synergy')
+source=("http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('17d8989668016185b859332aacf9e7df')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ qmake
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ install -Dm755 "$srcdir"/$pkgname-$pkgver/qsynergy "$pkgdir"/usr/bin/qsynergy
+ install -Dm644 dist/debian/qsynergy.desktop "$pkgdir"/usr/share/applications/qsynergy.desktop
+ install -Dm644 dist/qsynergy.xpm "$pkgdir"/usr/share/pixmaps/qsynergy.xpm
+}
diff --git a/community/tinc/PKGBUILD b/community/tinc/PKGBUILD
new file mode 100644
index 000000000..b9d82940a
--- /dev/null
+++ b/community/tinc/PKGBUILD
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 60867 2011-12-19 16:25:32Z tredaelli $
+# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: helios
+# Contributor: Lothar Gesslein
+
+pkgname=tinc
+pkgver=1.0.16
+pkgrel=1
+pkgdesc="VPN (Virtual Private Network) daemon"
+arch=('i686' 'x86_64')
+url="http://www.tinc-vpn.org/"
+license=('GPL')
+depends=('lzo2' 'openssl')
+backup=(etc/conf.d/tincd.conf)
+install=tinc.install
+source=("http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz"
+ "tincd.rc" "tincd.conf")
+md5sums=('f1c7ed94878725fb2cf4efb02bf160da'
+ '64bb53748d9051255f243003f0d511f5'
+ '7c0276d4812cc5d3cc18142562a3aa82')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+ install -dm755 "$pkgdir"/usr/share/tinc/examples
+ tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
+ find "$pkgdir"/usr/share/tinc/examples -type f -exec chmod 644 {} +
+ find "$pkgdir"/usr/share/tinc/examples -type d -exec chmod 755 {} +
+
+ install -Dm755 "$srcdir/tincd.rc" "$pkgdir/etc/rc.d/tincd"
+ install -Dm644 "$srcdir/tincd.conf" "$pkgdir/etc/conf.d/tincd.conf"
+}
diff --git a/community/tinc/tinc.install b/community/tinc/tinc.install
new file mode 100644
index 000000000..1b804fd8d
--- /dev/null
+++ b/community/tinc/tinc.install
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(tinc.info.gz)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+ done
+}
diff --git a/community/tinc/tincd.conf b/community/tinc/tincd.conf
new file mode 100644
index 000000000..6e0902bbb
--- /dev/null
+++ b/community/tinc/tincd.conf
@@ -0,0 +1,5 @@
+# Extra options to be passed to tincd.
+# TINCD_EXTRAOPTS="-d"
+
+# Arrays containing all names of the networks to be started from rc.d.
+NETNAMES=()
diff --git a/community/tinc/tincd.rc b/community/tinc/tincd.rc
new file mode 100644
index 000000000..48c132f25
--- /dev/null
+++ b/community/tinc/tincd.rc
@@ -0,0 +1,42 @@
+#!/bin/bash
+
+daemon_name=tincd
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+. /etc/conf.d/$daemon_name.conf
+
+case "$1" in
+ start)
+ for net in "${NETNAMES[@]}"; do
+ stat_busy "Starting ${daemon_name}"
+ /usr/sbin/tincd -n "${net}" $TINCD_EXTRAOPTS &>/dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ add_daemon ${daemon_name}
+ stat_done
+ fi
+ done
+ ;;
+ stop)
+ stat_busy "Stopping ${daemon_name}"
+ for net in "${NETNAMES[@]}"; do
+ /usr/sbin/tincd -k -n "${net}" &>/dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ rm_daemon ${daemon_name}
+ stat_done
+ fi
+ done
+ ;;
+ restart)
+ "$0" stop
+ sleep 5
+ "$0" start
+ ;;
+ *)
+ echo "usage: $0 {start|stop|restart}"
+esac
+exit 0
diff --git a/community/unbound/PKGBUILD b/community/unbound/PKGBUILD
index 00e8f4774..8f0ff6668 100644
--- a/community/unbound/PKGBUILD
+++ b/community/unbound/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 57055 2011-10-19 13:43:09Z bisson $
+# $Id: PKGBUILD 60976 2011-12-19 22:59:53Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Hisato Tatekura <hisato_tatekura@excentrics.net>
# Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service>
pkgname=unbound
-pkgver=1.4.13
-pkgrel=2
+pkgver=1.4.14
+pkgrel=1
pkgdesc='Validating, recursive, and caching DNS resolver'
arch=('i686' 'x86_64')
url='http://unbound.net/'
@@ -19,7 +19,7 @@ backup=('etc/unbound/unbound.conf')
source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"
'unbound.conf'
'rc.d')
-sha1sums=('834ccfd1cb41a44f53b33f8338a8f9cc68febaf7'
+sha1sums=('1435029abe63d0106213acb9f173b885183cf1d7'
'5d473ec2943fd85367cdb653fcd58e186f07383f'
'dc96e772f467b32555df21d16fdb15e98194c228')
@@ -27,6 +27,7 @@ install=install
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
./configure \
--prefix=/usr \
--sysconfdir=/etc \
@@ -34,13 +35,16 @@ build() {
--enable-static=no \
--disable-rpath \
--with-conf-file=/etc/unbound/unbound.conf \
- --with-pidfile=/var/run/unbound.pid
+ --with-pidfile=/var/run/unbound.pid \
+
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
make DESTDIR="${pkgdir}" install
+
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -D -m755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}"
install -D -m644 ../unbound.conf "${pkgdir}/etc/unbound/unbound.conf"
diff --git a/community/virtualbox-modules/PKGBUILD b/community/virtualbox-modules/PKGBUILD
index 694a0c31c..b4fa346e8 100644
--- a/community/virtualbox-modules/PKGBUILD
+++ b/community/virtualbox-modules/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 60393 2011-12-13 09:32:43Z ibiru $
+# $Id: PKGBUILD 60898 2011-12-19 18:08:36Z ibiru $
#Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgbase=virtualbox-modules
pkgname=('virtualbox-modules' 'virtualbox-archlinux-modules')
-pkgver=4.1.6
-pkgrel=3
+pkgver=4.1.8
+pkgrel=1
arch=('i686' 'x86_64')
url='http://virtualbox.org'
license=('GPL')
@@ -12,7 +12,7 @@ makedepends=('libstdc++5' 'bin86' 'dev86' 'iasl' 'libxslt' 'libxml2' 'libpng' 'l
[[ $CARCH == "x86_64" ]] && makedepends=("${makedepends[@]}" 'gcc-multilib' 'lib32-glibc')
source=(http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver}.tar.bz2
LocalConfig.kmk 60-vboxguest.rules)
-md5sums=('89b979d1b817242c7cdcb489898f166a'
+md5sums=('2092bba46baa62fab5520d67dee2ece8'
'4c88bd122677a35f68abd76eb01b378b'
'ed1341881437455d9735875ddf455fbe')
diff --git a/community/virtualbox/PKGBUILD b/community/virtualbox/PKGBUILD
index 9aaf68c7a..7339633aa 100644
--- a/community/virtualbox/PKGBUILD
+++ b/community/virtualbox/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 60048 2011-12-03 18:39:55Z ibiru $
+# $Id: PKGBUILD 60899 2011-12-19 18:08:37Z ibiru $
#Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgbase=virtualbox
pkgname=('virtualbox' 'virtualbox-archlinux-additions' 'virtualbox-sdk' 'virtualbox-source')
-pkgver=4.1.6
-pkgrel=4
+pkgver=4.1.8
+pkgrel=1
arch=('i686' 'x86_64')
url='http://virtualbox.org'
license=('GPL' 'custom')
@@ -178,12 +178,12 @@ package_virtualbox-archlinux-additions(){
# install sample config
install -D -m644 "${srcdir}/vbox-service.conf" "${pkgdir}/etc/conf.d/vbox-service"
}
-md5sums=('89b979d1b817242c7cdcb489898f166a'
- 'af534f713993eb077df26ff9a44fb080'
+md5sums=('2092bba46baa62fab5520d67dee2ece8'
+ '2f6b36ff143eb8da55ee92676708e757'
'5f85710e0b8606de967716ded7b2d351'
'6ab2455c391d8cc005e2f4461ae26a3b'
'78ffa67ff131680f1d2b6f06d4325c5b'
- 'cd8a53d0bfb26632d5b4d4e91a2b91d2'
+ '67688bff176d3c6fac5664dc282fea52'
'97e193f050574dd272a38e5ee5ebe62b'
'3c08ad30b89add47d3f45121200a5360'
'e7416331d0bc331f3b5aae3e5d104642')
diff --git a/community/virtualbox/vboxbuild b/community/virtualbox/vboxbuild
index c74004199..e6fb94edd 100755
--- a/community/virtualbox/vboxbuild
+++ b/community/virtualbox/vboxbuild
@@ -32,11 +32,11 @@ fi
for kdir in /lib/modules/[2-3]*; do
if [[ ! -d $kdir/kernel ]]; then
# found a stale kernel
- mods=("$kdir/misc/vbox"{drv,netadp,netflt,pci}.ko*)
+ mods=("$kdir/extramodules"{drv,netadp,netflt,pci}.ko*)
if (( ${#mods[@]} )); then
stat_busy "Removing all old VirtualBox kernel modules"
if rm -f "${mods[@]}" &&
- rmdir -p --ignore-fail-on-non-empty "$p/misc/" 2>/dev/null; then
+ rmdir -p --ignore-fail-on-non-empty "$kdir/extramodules" 2>/dev/null; then
stat_done
else
stat_fail
@@ -74,7 +74,7 @@ for kernver; do
stat_fail
fi
done
- gzip -9 "$MODULE_DIR"/*.ko
+ gzip -f9 "$MODULE_DIR"/*.ko
depmod "$kernver"
stat_done
done
diff --git a/community/yagf/PKGBUILD b/community/yagf/PKGBUILD
index cb397f498..95c3b42c7 100644
--- a/community/yagf/PKGBUILD
+++ b/community/yagf/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 59071 2011-11-21 09:04:57Z spupykin $
+# $Id: PKGBUILD 60972 2011-12-19 21:35:06Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: das-ich <das-ich@yandex.ru>
pkgname=yagf
-pkgver=0.8.7
+pkgver=0.8.9
pkgrel=1
pkgdesc="QT4-based GUI for Cuneiform OCR"
arch=(i686 x86_64)
@@ -14,7 +14,7 @@ optdepends=('xsane: acquire images from a scanner into YAGF directly')
makedepends=('cmake')
install=yagf.install
source=(http://symmetrica.net/cuneiform-linux/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e77716d1d96a6c120b340539af448195')
+md5sums=('1ccb66b978162366fb608dbc31b4a946')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/yajl/PKGBUILD b/community/yajl/PKGBUILD
index a333a7cef..8eb588368 100644
--- a/community/yajl/PKGBUILD
+++ b/community/yajl/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Andrej Gelenberg <andrej.gelenberg@udo.edu>
pkgname=yajl
-pkgver=2.0.3
+pkgver=2.0.4
pkgrel=1
pkgdesc='Yet Another JSON Library.'
arch=('i686' 'x86_64')
@@ -31,3 +31,4 @@ package() {
install -Dm644 COPYING "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
}
+md5sums=('ee6208e697c43dcccf798ce80d370379')
diff --git a/community/zeromq/PKGBUILD b/community/zeromq/PKGBUILD
index bb7239179..2d1a36b8a 100644
--- a/community/zeromq/PKGBUILD
+++ b/community/zeromq/PKGBUILD
@@ -1,7 +1,7 @@
-# $Id: PKGBUILD 56540 2011-10-08 03:04:25Z kkeen $
+# $Id: PKGBUILD 60981 2011-12-20 04:27:40Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
pkgname=zeromq
-pkgver=2.1.10
+pkgver=2.1.11
pkgrel=1
pkgdesc="Fast messaging system built on sockets, C and C++ bindings. aka 0MQ, ZMQ."
arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@ license=('LGPL')
depends=('gcc-libs' 'util-linux')
makedepends=()
source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz)
-md5sums=('f034096095fa76041166a8861e9d71b7')
+md5sums=('f0f9fd62acb1f0869d7aa80379b1f6b7')
build() {
cd "$srcdir/$pkgname-$pkgver"