diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-08-24 19:03:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-08-24 19:54:29 +0000 |
commit | 9edcf6dad4ec052978a787db19b998d918bea10e (patch) | |
tree | 3235f0bed3fcde4205a55cdb9f697d000d881b77 /testing | |
parent | d69119e2ffe536055809ddd5fbd924a1d3ff8ea0 (diff) | |
download | aports-9edcf6dad4ec052978a787db19b998d918bea10e.tar.bz2 aports-9edcf6dad4ec052978a787db19b998d918bea10e.tar.xz |
testing/libnfsidmap: new aport
NFSv4 User and Group ID Mapping Library
http://www.citi.umich.edu/projects/nfsv4/linux/
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libnfsidmap/APKBUILD | 49 |
1 files changed, 49 insertions, 0 deletions
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 <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +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" |