From 9edcf6dad4ec052978a787db19b998d918bea10e Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 24 Aug 2011 19:03:37 +0000 Subject: testing/libnfsidmap: new aport NFSv4 User and Group ID Mapping Library http://www.citi.umich.edu/projects/nfsv4/linux/ --- testing/libnfsidmap/APKBUILD | 49 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 testing/libnfsidmap/APKBUILD (limited to 'testing') diff --git a/testing/libnfsidmap/APKBUILD b/testing/libnfsidmap/APKBUILD new file mode 100644 index 000000000..d927d4721 --- /dev/null +++ b/testing/libnfsidmap/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=libnfsidmap +pkgver=0.24 +pkgrel=0 +pkgdesc="NFSv4 User and Group ID Mapping Library" +url="http://www.citi.umich.edu/projects/nfsv4/linux/" +arch="all" +license="BSD" +depends="" +makedepends="openldap-dev" +install="" +subpackages="$pkgname-dev $pkgname-doc $pkgname-ldap" +source="http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-$pkgver.tar.gz" + +_builddir="$srcdir"/libnfsidmap-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --disable-static \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la \ + "$pkgdir"/usr/lib/$pkgname/*.la || return 1 + install -D -m644 idmapd.conf "$pkgdir"/etc/idmapd.conf +} + +ldap() { + pkgdesc="LDAP plugin for $pkgname" + mkdir -p "$subpkgdir"/usr/lib/$pkgname + mv "$pkgdir"/usr/lib/$pkgname/*ldap* "$subpkgdir"/usr/lib/$pkgname/ +} + +md5sums="d71a1ee9881d5b5814ff3ec41256937d libnfsidmap-0.24.tar.gz" -- cgit v1.2.3