diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-24 13:37:15 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-24 13:37:15 -0300 |
commit | aa59a87bb8860445bb3a4b233b44812b65b8c363 (patch) | |
tree | 2c86c94b07d2205834540b0d4c8ead7f264f56d5 /testing | |
parent | eca1d6fadc95df0eab55f607f67e69ff5329f590 (diff) | |
parent | 120df4e0db159525806a9b33364483e76f9d51d3 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/catalyst-dkms/PKGBUILD
community-testing/catalyst-dkms/catalyst.install
community-testing/lxdm/PKGBUILD
community-testing/lxdm/lxdm-pam
extra/tdb/PKGBUILD
extra/usbview/PKGBUILD
multilib/lib32-libldap/PKGBUILD
testing/bison/PKGBUILD
testing/ekiga/PKGBUILD
testing/evince/PKGBUILD
testing/gthumb/PKGBUILD
testing/nautilus/PKGBUILD
testing/opal/PKGBUILD
testing/opal/opal-ffmpeg.patch
testing/openssh/PKGBUILD
testing/openssh/sshd.service
testing/openssh/sshd.socket
testing/openssh/sshdgenkeys.service
testing/yelp/PKGBUILD
Diffstat (limited to 'testing')
-rw-r--r-- | testing/ldns/PKGBUILD | 41 | ||||
-rw-r--r-- | testing/nss-myhostname/PKGBUILD | 30 | ||||
-rw-r--r-- | testing/ptlib/PKGBUILD | 33 |
3 files changed, 104 insertions, 0 deletions
diff --git a/testing/ldns/PKGBUILD b/testing/ldns/PKGBUILD new file mode 100644 index 000000000..4613191f4 --- /dev/null +++ b/testing/ldns/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 169587 2012-10-23 22:55:24Z bisson $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> +# Contributor: mathieui <mathieui@mathieui.net> +# Contributor: jiribb <jiribb@gmail.com> + +pkgname=ldns +pkgver=1.6.14 +pkgrel=1 +pkgdesc='Fast DNS library supporting recent RFCs' +url='http://www.nlnetlabs.nl/projects/ldns/' +license=('custom:BSD') +arch=('i686' 'x86_64') +options=('!libtool') +depends=('openssl' 'dnssec-anchors') +optdepends=('libpcap: ldns-dpa tool') +makedepends=('libpcap') +source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha1sums=('2ef5fbf33b25d2f7b736c332ebccc0862dd12d02') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-static=no \ + --disable-rpath \ + --with-drill \ + --with-examples \ + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} diff --git a/testing/nss-myhostname/PKGBUILD b/testing/nss-myhostname/PKGBUILD new file mode 100644 index 000000000..18b582043 --- /dev/null +++ b/testing/nss-myhostname/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 169556 2012-10-23 14:16:38Z tomegun $ +# Maintainer: Tom Gundersen <teg@jklm.no> +# Contributor: Mantas M. <grawity@gmail.com> +pkgname="nss-myhostname" +pkgver=0.3 +pkgrel=3 +pkgdesc="NSS plugin providing host name resolution for the locally configured system hostname" +arch=(i686 x86_64) +url="http://0pointer.de/lennart/projects/nss-myhostname/" +license=('LGPL2.1') +depends=('glibc') +groups=('base') +source=("http://0pointer.de/lennart/projects/${pkgname}/${pkgname}-${pkgver}.tar.gz") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-lynx + make +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} + +md5sums=('d4ab9ac36c053ab8fb836db1cbd4a48f') diff --git a/testing/ptlib/PKGBUILD b/testing/ptlib/PKGBUILD new file mode 100644 index 000000000..ed26e6d29 --- /dev/null +++ b/testing/ptlib/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 169545 2012-10-23 11:47:51Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=ptlib +pkgver=2.10.7 +pkgrel=2 +pkgdesc="Portable Windows Library" +arch=('i686' 'x86_64') +url="http://www.opalvoip.org" +license=('GPL') +depends=('sdl' 'libpulse' 'v4l-utils' 'libldap') +replaces=('pwlib') +conflicts=('pwlib') +source=(http://downloads.sourceforge.net/sourceforge/opalvoip/$pkgname-$pkgver.tar.bz2) +md5sums=('7fb74a97743fcc5f33d0f97dec7bc878') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --libdir=/usr/lib \ + --sysconfdir=/etc --localstatedir=/var \ + --enable-opal --enable-plugins \ + --enable-oss --enable-v4l2 \ + --disable-avc --enable-sdl \ + --enable-ipv6 --enable-v4l \ + --enable-dc --disable-odbc \ + --enable-expat --enable-httpforms + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |