summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/calibre/PKGBUILD6
-rw-r--r--community/calibre/desktop_integration.patch61
-rw-r--r--community/collectd/PKGBUILD4
-rw-r--r--community/compiz-bcop/PKGBUILD4
-rw-r--r--community/compiz-fusion-plugins-extra/PKGBUILD4
-rw-r--r--community/compiz-fusion-plugins-main/PKGBUILD4
-rw-r--r--community/compizconfig-backend-gconf/PKGBUILD4
-rw-r--r--community/compizconfig-python/PKGBUILD8
-rw-r--r--community/drbd/PKGBUILD8
-rw-r--r--community/ettercap/PKGBUILD70
-rw-r--r--community/ettercap/ettercap-gtk.install11
-rw-r--r--community/guake/PKGBUILD32
-rw-r--r--community/ldc/PKGBUILD7
-rw-r--r--community/libcompizconfig/PKGBUILD4
-rw-r--r--community/libnet/PKGBUILD29
-rw-r--r--community/liboggz/PKGBUILD6
-rw-r--r--community/nbd/PKGBUILD6
-rw-r--r--community/ncmpcpp/PKGBUILD8
-rw-r--r--community/openttd/PKGBUILD8
-rw-r--r--community/php-memcached/PKGBUILD4
-rw-r--r--community/r8168-lts/PKGBUILD4
-rw-r--r--community/tig/PKGBUILD19
22 files changed, 248 insertions, 63 deletions
diff --git a/community/calibre/PKGBUILD b/community/calibre/PKGBUILD
index 449df9c2a..77c6a45bb 100644
--- a/community/calibre/PKGBUILD
+++ b/community/calibre/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 68104 2012-03-18 06:04:46Z giovanni $
+# $Id: PKGBUILD 68275 2012-03-21 07:34:10Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Petrov Roman <nwhisper@gmail.com>
# Contributor: Andrea Fagiani <andfagiani _at_ gmail dot com>
pkgname=calibre
pkgver=0.8.43
-pkgrel=2
+pkgrel=3
pkgdesc="Ebook management application"
arch=('i686' 'x86_64')
url="http://calibre-ebook.com/"
@@ -22,7 +22,7 @@ source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz
'desktop_integration.patch'
'calibre-mount-helper')
md5sums=('9c9656b0881ef8013018ec4cf42b3119'
- '253ce4fe5d01f8ff76b63cd3825755ea'
+ 'c7eaa8ed3d2b0a09345aecffa1402ff4'
'675cd87d41342119827ef706055491e7')
build() {
diff --git a/community/calibre/desktop_integration.patch b/community/calibre/desktop_integration.patch
index 4dbf53757..73037b6a7 100644
--- a/community/calibre/desktop_integration.patch
+++ b/community/calibre/desktop_integration.patch
@@ -1,6 +1,52 @@
---- a/src/calibre/linux.py 2011-06-17 19:56:05.000000000 +0200
-+++ b/src/calibre/linux.py 2011-06-18 00:07:46.000000000 +0200
-@@ -339,51 +339,39 @@
+--- a/src/calibre/linux.py 2012-03-16 03:42:45.000000000 +0100
++++ b/src/calibre/linux.py 2012-03-21 08:06:35.000000000 +0100
+@@ -140,18 +140,6 @@
+ self.install_man_pages()
+ if islinux or isbsd:
+ self.setup_desktop_integration()
+- self.create_uninstaller()
+-
+- from calibre.utils.config import config_dir
+- if os.path.exists(config_dir):
+- os.chdir(config_dir)
+- if islinux or isbsd:
+- for f in os.listdir('.'):
+- if os.stat(f).st_uid == 0:
+- import shutil
+- shutil.rmtree(f) if os.path.isdir(f) else os.unlink(f)
+- if os.stat(config_dir).st_uid == 0:
+- os.rmdir(config_dir)
+
+ if warn is None and self.warnings:
+ self.info('There were %d warnings'%len(self.warnings))
+@@ -198,7 +186,7 @@
+ if isnetbsd:
+ f = os.path.join(self.opts.staging_root, 'share/bash_completion.d/calibre')
+ else:
+- f = os.path.join(self.opts.staging_etc, 'bash_completion.d/calibre')
++ f = os.path.join(self.opts.staging_root, 'usr/share/bash-completion/completions/calibre')
+ if not os.path.exists(os.path.dirname(f)):
+ os.makedirs(os.path.dirname(f))
+ self.manifest.append(f)
+@@ -305,7 +293,7 @@
+ if isbsd:
+ manpath = os.path.join(self.opts.staging_root, 'man/man1')
+ else:
+- manpath = os.path.join(self.opts.staging_sharedir, 'man/man1')
++ manpath = os.path.join(self.opts.staging_root, 'usr/share/man/man1')
+ if not os.path.exists(manpath):
+ os.makedirs(manpath)
+ self.info('Installing MAN pages...')
+@@ -321,7 +309,7 @@
+ if isbsd:
+ manfile = os.path.join(manpath, prog+'.1')
+ else:
+- manfile = os.path.join(manpath, prog+'.1'+__appname__+'.bz2')
++ manfile = os.path.join(manpath, prog+'.1'+'.bz2')
+ self.info('\tInstalling MAN page for', prog)
+ open(manfile, 'wb').write(raw)
+ self.manifest.append(manfile)
+@@ -339,51 +327,39 @@
with TemporaryDirectory() as tdir:
with CurrentDir(tdir):
@@ -66,3 +112,12 @@
except Exception:
if self.opts.fatal_errors:
raise
+@@ -521,7 +497,7 @@
+ [Desktop Entry]
+ Version=1.0
+ Type=Application
+-Name=calibre
++Name=Calibre
+ GenericName=E-book library management
+ Comment=E-book library management: Convert, view, share, catalogue all your e-books
+ TryExec=calibre
diff --git a/community/collectd/PKGBUILD b/community/collectd/PKGBUILD
index 0e56fcb6b..d23b745da 100644
--- a/community/collectd/PKGBUILD
+++ b/community/collectd/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 66741 2012-02-28 02:31:36Z bisson $
+# $Id: PKGBUILD 68341 2012-03-22 00:46:46Z foutrelis $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Gerhard Brauer <gerhard.brauer@web.de>
pkgname=collectd
pkgver=5.0.3
-pkgrel=1
+pkgrel=2
pkgdesc='Daemon which collects system performance statistics periodically'
arch=('i686' 'x86_64')
url='http://collectd.org/'
diff --git a/community/compiz-bcop/PKGBUILD b/community/compiz-bcop/PKGBUILD
index 40d0d28a2..b8af4d326 100644
--- a/community/compiz-bcop/PKGBUILD
+++ b/community/compiz-bcop/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 52296 2011-07-23 10:43:33Z rvanharen $
+# $Id: PKGBUILD 68296 2012-03-21 10:32:03Z pschmitz $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Maintainer: JJDaNiMoTh <jjdanimoth@gmail.com>
# Contributor: nesl247 <nesl247@gmail.com>
pkgname=compiz-bcop
pkgver=0.8.8
-pkgrel=1
+pkgrel=2
pkgdesc="Compiz option code generator"
arch=('i686' 'x86_64')
url="http://www.compiz.org"
diff --git a/community/compiz-fusion-plugins-extra/PKGBUILD b/community/compiz-fusion-plugins-extra/PKGBUILD
index e542877e0..459d72d98 100644
--- a/community/compiz-fusion-plugins-extra/PKGBUILD
+++ b/community/compiz-fusion-plugins-extra/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 52300 2011-07-23 10:44:02Z rvanharen $
+# $Id: PKGBUILD 68298 2012-03-21 10:33:42Z pschmitz $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: JJDaNiMoTh <jjdanimoth@gmail.com>
# Contributor: nesl247 <nesl247@gmail.com>
pkgname=compiz-fusion-plugins-extra
pkgver=0.8.8
-pkgrel=1
+pkgrel=2
pkgdesc="Compiz Fusion Extra plugins"
arch=('i686' 'x86_64')
url="http://www.compiz.org"
diff --git a/community/compiz-fusion-plugins-main/PKGBUILD b/community/compiz-fusion-plugins-main/PKGBUILD
index 6720a6850..b9d61b9ec 100644
--- a/community/compiz-fusion-plugins-main/PKGBUILD
+++ b/community/compiz-fusion-plugins-main/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 52337 2011-07-23 11:20:14Z rvanharen $
+# $Id: PKGBUILD 68300 2012-03-21 10:35:13Z pschmitz $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: JJDaNiMoTh <jjdanimoth@gmail.com>
# Contributor: nesl247 <nesl247@gmail.com>
pkgname=compiz-fusion-plugins-main
pkgver=0.8.8
-pkgrel=1
+pkgrel=2
pkgdesc="Compiz Fusion Main plugins"
arch=('i686' 'x86_64')
url="http://www.compiz.org"
diff --git a/community/compizconfig-backend-gconf/PKGBUILD b/community/compizconfig-backend-gconf/PKGBUILD
index cf0df3ba9..8b8c60cb8 100644
--- a/community/compizconfig-backend-gconf/PKGBUILD
+++ b/community/compizconfig-backend-gconf/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 52306 2011-07-23 10:45:30Z rvanharen $
+# $Id: PKGBUILD 68302 2012-03-21 10:36:50Z pschmitz $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: JJDaNiMoTh <jjdanimoth@gmail.com>
# Contributor: kasa <biuta.jr@gmail.com>
pkgname=compizconfig-backend-gconf
pkgver=0.8.8
-pkgrel=1
+pkgrel=2
pkgdesc="Compizconfig backend for gconf"
arch=('i686' 'x86_64')
url="http://opencompositing.org"
diff --git a/community/compizconfig-python/PKGBUILD b/community/compizconfig-python/PKGBUILD
index 0aeb565e6..8714306f7 100644
--- a/community/compizconfig-python/PKGBUILD
+++ b/community/compizconfig-python/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 33724 2010-11-28 10:19:25Z ibiru $
+# $Id: PKGBUILD 68304 2012-03-21 10:37:36Z pschmitz $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: JJDaNiMoTh <jjdanimoth@gmail.com>
# Contributor: nesl247 <nesl247@gmail.com>
pkgname=compizconfig-python
pkgver=0.8.4
-pkgrel=2
+pkgrel=3
pkgdesc="Compizconfig bindings for python"
arch=('i686' 'x86_64')
url="http://opencompositing.org"
@@ -21,5 +21,9 @@ build() {
PYTHON=python2 ./configure --prefix=/usr
make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
diff --git a/community/drbd/PKGBUILD b/community/drbd/PKGBUILD
index 68d7dea8a..435047626 100644
--- a/community/drbd/PKGBUILD
+++ b/community/drbd/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 63408 2012-02-02 10:00:55Z seblu $
+# $Id: PKGBUILD 68283 2012-03-21 09:58:34Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
pkgname=drbd
pkgver=8.3.11
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64')
pkgdesc='Userland tools for drbd block devices'
url='http://www.drbd.org'
@@ -46,6 +46,10 @@ package() {
install -d -m 755 "$pkgdir/lib"
mv "$pkgdir/etc/udev" "$pkgdir/lib"
+ # move bash completion in right place
+ install -d -m 755 "$pkgdir/usr/share/bash-completion"
+ mv "$pkgdir/etc/bash_completion.d" "$pkgdir/usr/share/bash-completion/completions"
+
# remove /var/lock
rmdir "$pkgdir/var/lock"
diff --git a/community/ettercap/PKGBUILD b/community/ettercap/PKGBUILD
new file mode 100644
index 000000000..fb32aa935
--- /dev/null
+++ b/community/ettercap/PKGBUILD
@@ -0,0 +1,70 @@
+# $Id: PKGBUILD 68331 2012-03-21 20:33:50Z andrea $
+# Maintainer:
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+
+pkgbase=ettercap
+pkgname=('ettercap' 'ettercap-gtk')
+pkgver=NG_0.7.4.2
+_origver=${pkgver/_/-}
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://ettercap.sourceforge.net/"
+license=('GPL')
+makedepends=('libpcap' 'libltdl' 'libnet' 'gtk2' 'hicolor-icon-theme')
+options=('!libtool' '!makeflags' '!emptydirs')
+source=("http://drizztbsd.github.com/${pkgbase}/dist/${pkgbase}-${_origver}.tar.gz")
+md5sums=('ab2354bf9c91195f06ad0b5d058565a4')
+
+build() {
+ cd "${srcdir}"
+ sed -i 's/su-to-root -c/gksu/' ${pkgbase}-${_origver}/desktop/ettercap.desktop
+
+ cp -r ${pkgbase}-${_origver} ${pkgbase}-${_origver}-gtk
+
+ cd ${pkgbase}-${_origver}
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --datarootdir=/usr/share \
+ --enable-plugins \
+ --enable-https \
+ --disable-gtk
+ make
+
+ cd ../${pkgbase}-${_origver}-gtk
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --datarootdir=/usr/share \
+ --enable-plugins \
+ --enable-https \
+ --enable-gtk
+ make
+}
+
+package_ettercap() {
+ pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - console"
+ depends=('openssl' 'libpcap' 'pcre' 'libltdl' 'libnet')
+ backup=('etc/etter.conf')
+
+ cd "${srcdir}"/${pkgbase}-${_origver}
+ make DESTDIR="${pkgdir}" install
+}
+
+package_ettercap-gtk() {
+ pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - GTK"
+ depends=('ettercap' 'gtk2' 'hicolor-icon-theme')
+ optdepends=('gksu: to run ettercap from the menu')
+ install=ettercap-gtk.install
+
+ cd "${srcdir}"/${pkgbase}-${_origver}-gtk
+ install -Dm755 src/ettercap "${pkgdir}"/usr/bin/ettercap-gtk
+ install -Dm644 desktop/ettercap.desktop \
+ "${pkgdir}"/usr/share/applications/ettercap.desktop
+ install -Dm644 share/ettercap.png \
+ "${pkgdir}"/usr/share/ettercap/ettercap.png
+ install -Dm644 desktop/ettercap.xpm \
+ "${pkgdir}"/usr/share/icons/hicolor/32x32/apps/ettercap.xpm
+ install -Dm644 desktop/ettercap.svg \
+ "${pkgdir}"/usr/share/icons/hicolor/scalable/apps/ettercap.svg
+}
diff --git a/community/ettercap/ettercap-gtk.install b/community/ettercap/ettercap-gtk.install
new file mode 100644
index 000000000..1a05f573e
--- /dev/null
+++ b/community/ettercap/ettercap-gtk.install
@@ -0,0 +1,11 @@
+post_install() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
diff --git a/community/guake/PKGBUILD b/community/guake/PKGBUILD
index cd40f51be..1df90ebb5 100644
--- a/community/guake/PKGBUILD
+++ b/community/guake/PKGBUILD
@@ -1,35 +1,41 @@
-# $Id: PKGBUILD 63620 2012-02-05 12:01:07Z ibiru $
-# Maintainer: Angel Velasquez <angvp@archlinux.org>
+# $Id: PKGBUILD 68271 2012-03-21 05:47:03Z bgyorgy $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Wilson Pinto Júnior (N3RD3X) <n3rd3x@linuxmail.org>
+
pkgname=guake
pkgver=0.4.2
-pkgrel=5
-pkgdesc='is a drop-down terminal for Gnome Desktop Environment'
+pkgrel=6
+pkgdesc='Drop-down terminal for GNOME'
arch=('i686' 'x86_64')
-url='http://guake.org'
+url="http://guake.org/"
license=('GPL')
-depends=('python-notify' 'vte' 'gconf' 'python2-gconf' 'dbus-python' 'notification-daemon')
-makedepends=('libx11' 'pkgconfig' 'perlxml' 'intltool')
-install=guake.install
-source=(http://guake.org/files/guake-$pkgver.tar.gz
+depends=('python-notify' 'vte' 'python2-gconf' 'dbus-python')
+makedepends=('intltool')
+options=('!libtool')
+install=$pkgname.install
+source=(http://guake.org/files/$pkgname-$pkgver.tar.gz
http://guake.org/raw-attachment/ticket/246/0001-Retrieve-port-as-int.2.patch)
md5sums=('1f0feff3bfc15c998147dbf07d9d8a8e'
'9aca6ba8e46ae1b69958cda0e03320ff')
build() {
cd "$srcdir/$pkgname-$pkgver"
-
- # Point Python scripts to the python2 binary
- sed -i 's|bin/python"|bin/python2"|' src/guake{,-prefs}.in
+ sed -i 's|schemadir = $(sysconfdir)/gconf/schemas|schemadir = $(GCONF_SCHEMA_FILE_DIR)|' data/Makefile.in
+ sed -i 's|PYTHON="/usr/bin/python"|PYTHON="/usr/bin/python2"|' src/guake{,-prefs}.in
# Patch to import proxy port setting as int (http://guake.org/ticket/246)
patch -Np1 -i "$srcdir/0001-Retrieve-port-as-int.2.patch"
- ./configure --sysconfdir=/usr/share --prefix=/usr --disable-static
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static --disable-schemas-install \
+ --with-gconf-schema-file-dir=/usr/share/gconf/schemas \
+ PYTHON=python2
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
+
make DESTDIR="$pkgdir" install
}
diff --git a/community/ldc/PKGBUILD b/community/ldc/PKGBUILD
index c9d36d11b..3e29ab293 100644
--- a/community/ldc/PKGBUILD
+++ b/community/ldc/PKGBUILD
@@ -1,7 +1,7 @@
-# $Id: PKGBUILD 64554 2012-02-16 06:56:40Z svenstaro $
+# $Id: PKGBUILD 68277 2012-03-21 07:36:10Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
pkgname=ldc
-pkgver=20120216
+pkgver=20120321
pkgrel=1
pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
arch=('i686' 'x86_64')
@@ -48,5 +48,8 @@ package() {
make DESTDIR=$pkgdir install
cd ..
+ mkdir -p $pkgdir/usr/share/bash-completion/
+ mv $pkgdir/etc/bash_completion.d $pkgdir/usr/share/bash-completion/completions
+
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
diff --git a/community/libcompizconfig/PKGBUILD b/community/libcompizconfig/PKGBUILD
index 06f224927..79fc479ed 100644
--- a/community/libcompizconfig/PKGBUILD
+++ b/community/libcompizconfig/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 52290 2011-07-23 10:42:39Z rvanharen $
+# $Id: PKGBUILD 68306 2012-03-21 10:40:24Z pschmitz $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: JJDaNiMoTh <jjdanimoth@gmail.com>
# Contributor: nesl247 <nesl247@gmail.com>
pkgname=libcompizconfig
pkgver=0.8.8
-pkgrel=1
+pkgrel=2
pkgdesc="Compiz configuration system library"
arch=('i686' 'x86_64')
url="http://www.compiz.org"
diff --git a/community/libnet/PKGBUILD b/community/libnet/PKGBUILD
new file mode 100644
index 000000000..b113033fc
--- /dev/null
+++ b/community/libnet/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 68329 2012-03-21 20:31:50Z andrea $
+# Maintainer:
+# Contributor: damir <damir@archlinux.org>
+
+pkgname=libnet
+pkgver=1.1.5
+pkgrel=2
+pkgdesc="A library which provides API for commonly used low-level net functions"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/libnet-dev/"
+license=('BSD')
+depends=('glibc' 'sh')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/libnet-dev/${pkgname}-${pkgver}.tar.gz")
+md5sums=('a9bc1d75a610efcfee200d3e28d8eb8f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make CFLAGS="${CFLAGS} -fPIC"
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm644 doc/COPYING \
+ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
diff --git a/community/liboggz/PKGBUILD b/community/liboggz/PKGBUILD
index a59a76743..01aec1fc9 100644
--- a/community/liboggz/PKGBUILD
+++ b/community/liboggz/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 66071 2012-02-22 22:11:00Z giovanni $
+# $Id: PKGBUILD 68273 2012-03-21 06:40:28Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Vincent Cappe <vcappe at gmail dot com>
# Contributor: Jeff Bailes <thepizzaking at gmail dot com>
@@ -6,7 +6,7 @@
pkgname=liboggz
pkgver=1.1.1
-pkgrel=2
+pkgrel=3
pkgdesc="A simple programming interface for reading and writing Ogg files and streams"
arch=('i686' 'x86_64')
url="http://www.xiph.org/oggz/"
@@ -32,5 +32,5 @@ package() {
# license
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# bash completion
- install -Dm644 bash-completion/oggz "${pkgdir}/etc/bash_completion.d/oggz"
+ install -Dm644 bash-completion/oggz "${pkgdir}/usr/share/bash-completion/completions/oggz"
}
diff --git a/community/nbd/PKGBUILD b/community/nbd/PKGBUILD
index def409c4c..2952aacb4 100644
--- a/community/nbd/PKGBUILD
+++ b/community/nbd/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 60618 2011-12-15 15:10:42Z svenstaro $
+# $Id: PKGBUILD 68323 2012-03-21 16:50:13Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Christian Hesse <mail@eworm.de>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Gerhard Brauer <gerbra@archlinux.de>
pkgname=nbd
-pkgver=2.9.25
+pkgver=3.0
pkgrel=1
pkgdesc="Tools for network block devices, allowing you to use remote block devices over TCP/IP."
arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@ source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2
backup=('etc/nbd-server/config')
depends=('glib2')
install=nbd.install
-md5sums=('df7c99168da00da1c969fd24ea9e0111'
+md5sums=('81f549155267536ad30851eb50ee8d1c'
'075be420c3d7d7fc9408def3cb8c470d'
'e7b13a8b3369e11927d9917664557efa')
diff --git a/community/ncmpcpp/PKGBUILD b/community/ncmpcpp/PKGBUILD
index ecbf1b845..b973aa694 100644
--- a/community/ncmpcpp/PKGBUILD
+++ b/community/ncmpcpp/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 61735 2012-01-07 09:31:06Z bpiotrowski $
+# $Id: PKGBUILD 68325 2012-03-21 19:23:07Z bpiotrowski $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
# Contributor: Army <uli[dot]armbruster[at]gmail[dot]com>
pkgname=ncmpcpp
-pkgver=0.5.8
-pkgrel=2
+pkgver=0.5.9
+pkgrel=1
pkgdesc="An almost exact clone of ncmpc with some new features."
arch=('i686' 'x86_64')
url="http://unkart.ovh.org/ncmpcpp/"
@@ -13,7 +13,7 @@ license=('GPL')
depends=('curl' 'libmpdclient' 'taglib' 'ncurses')
install=ncmpcpp.install
source=(http://unkart.ovh.org/ncmpcpp/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('288952c6b4cf4fa3683f3f83a58da37c')
+md5sums=('07f62d6574d0dcc99cad84adb9754203')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
diff --git a/community/openttd/PKGBUILD b/community/openttd/PKGBUILD
index 64fa71f30..2f7c722bd 100644
--- a/community/openttd/PKGBUILD
+++ b/community/openttd/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 67244 2012-03-05 19:05:33Z svenstaro $
+# $Id: PKGBUILD 68318 2012-03-21 13:43:42Z lcarlier $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
pkgname=openttd
-pkgver=1.2.0rc2
-_realpkgver=1.2.0-RC2
+pkgver=1.2.0rc3
+_realpkgver=1.2.0-RC3
pkgrel=1
pkgdesc='An engine for running Transport Tycoon Deluxe.'
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ install=openttd.install
optdepends=('openttd-opengfx: free graphics'
'openttd-opensfx: free soundset')
source=("http://binaries.openttd.org/releases/${_realpkgver}/${pkgname}-${_realpkgver}-source.tar.xz")
-md5sums=('e0d9e02c33f087573e67105a7bb601f2')
+md5sums=('c1ac9bbe6ec4e71a5938280e4cc9741f')
build() {
cd ${pkgname}-${_realpkgver}
diff --git a/community/php-memcached/PKGBUILD b/community/php-memcached/PKGBUILD
index 80f11c713..e0626dafc 100644
--- a/community/php-memcached/PKGBUILD
+++ b/community/php-memcached/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 67120 2012-03-04 18:04:34Z foutrelis $
+# $Id: PKGBUILD 68339 2012-03-22 00:42:12Z foutrelis $
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
pkgname=php-memcached
pkgver=2.0.1
-pkgrel=1
+pkgrel=2
pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
arch=('i686' 'x86_64')
url="http://pecl.php.net/package/memcached"
diff --git a/community/r8168-lts/PKGBUILD b/community/r8168-lts/PKGBUILD
index 1ccd5dd36..da9eb796f 100644
--- a/community/r8168-lts/PKGBUILD
+++ b/community/r8168-lts/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 64671 2012-02-17 16:46:25Z mtorromeo $
+# $Id: PKGBUILD 68337 2012-03-21 22:55:51Z mtorromeo $
# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
pkgname=r8168-lts
_pkgname=r8168
pkgver=8.028.00
-pkgrel=2
+pkgrel=3
pkgdesc="A kernel module for Realtek 8168 network cards for kernel26-lts"
url="http://www.realtek.com.tw"
license=("GPL")
diff --git a/community/tig/PKGBUILD b/community/tig/PKGBUILD
index 87e5e4dd8..8a1f712cd 100644
--- a/community/tig/PKGBUILD
+++ b/community/tig/PKGBUILD
@@ -1,27 +1,30 @@
-# Maintainer: Loui Chang <louipc dot ist at gmail company>
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Loui Chang <louipc dot ist at gmail company>
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
# Contributor: Nathan Jones <nathanj@insightbb.com>
pkgname=tig
pkgver=0.18
-pkgrel=1
-pkgdesc="Text-mode interface for git"
+pkgrel=2
+pkgdesc='Text-mode interface for Git.'
depends=('git' 'ncurses')
-url="http://jonas.nitro.dk/tig/"
+url='http://jonas.nitro.dk/tig/'
license=('GPL')
arch=('i686' 'x86_64')
source=("http://jonas.nitro.dk/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz")
md5sums=('4fa9e33c5daa76b6fed11e068405356f')
build() {
- cd "$srcdir"/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
+ make
}
package() {
- cd "$srcdir"/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
+
make DESTDIR="$pkgdir" install install-doc-man
- install -D -m644 contrib/tigrc "$pkgdir"/etc/tigrc.sample
- install -D -m644 contrib/tig-completion.bash "$pkgdir"/etc/bash_completion.d/tig
+ install -Dm0644 contrib/tigrc "$pkgdir/etc/tigrc.sample"
+ install -Dm0644 contrib/tig-completion.bash "$pkgdir/usr/share/bash-completion/completions/tig"
}