diff options
author | Juergen Daubert <jue@jue.li> | 2012-10-05 11:02:43 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2012-10-05 11:02:43 +0200 |
commit | 6619c6dc24b9106ccfe8c6f7e5ab5d4f6a002f52 (patch) | |
tree | 3cb1c50cbc4df4edaa1aca9ee33b5840e8bd917c /rpcbind | |
parent | 6658af31b6dfdf7e20d98e134639cbd8dc267e3a (diff) | |
download | opt-6619c6dc24b9106ccfe8c6f7e5ab5d4f6a002f52.tar.gz opt-6619c6dc24b9106ccfe8c6f7e5ab5d4f6a002f52.tar.xz |
rpcbind: enable tcp_wrappers (FS#855), install rpcinfo.8
Diffstat (limited to 'rpcbind')
-rw-r--r-- | rpcbind/.footprint | 1 | ||||
-rw-r--r-- | rpcbind/Pkgfile | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/rpcbind/.footprint b/rpcbind/.footprint index 3e2ec30ca..809e63f94 100644 --- a/rpcbind/.footprint +++ b/rpcbind/.footprint @@ -8,3 +8,4 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man8/ -rw-r--r-- root/root usr/man/man8/rpcbind.8.gz +-rw-r--r-- root/root usr/man/man8/rpcinfo.8.gz diff --git a/rpcbind/Pkgfile b/rpcbind/Pkgfile index 38728ccaf..4ccedbaf2 100644 --- a/rpcbind/Pkgfile +++ b/rpcbind/Pkgfile @@ -1,11 +1,11 @@ # Description: Server that converts RPC program numbers into universal addresses # URL: http://sourceforge.net/projects/rpcbind/ # Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: libtirpc +# Depends on: libtirpc tcp_wrappers name=rpcbind version=0.2.0 -release=1 +release=2 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 \ rpcbind) @@ -13,8 +13,10 @@ build() { cd $name-$version ./configure --prefix=/usr \ --bindir=/sbin \ - --mandir=/usr/man + --mandir=/usr/man \ + --enable-libwrap make make DESTDIR=$PKG install + install -m 644 man/rpcinfo.8 $PKG/usr/man/man8 install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind } |