35 lines
897 B
Plaintext
35 lines
897 B
Plaintext
|
# Tanım: portmap replacement which supports RPC over various protocols
|
|||
|
# URL: http://rpcbind.sourceforge.net/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler: libtirpc
|
|||
|
|
|||
|
isim=rpcbind
|
|||
|
surum=0.2.3
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(http://downloads.sourceforge.net/rpcbind/rpcbind-$surum.tar.bz2 )
|
|||
|
|
|||
|
derle() {
|
|||
|
source /etc/blfs-bootscripts
|
|||
|
|
|||
|
wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
|
|||
|
tar xvf $scripts-$scriptsversion.tar.bz2
|
|||
|
|
|||
|
cd rpcbind-$surum
|
|||
|
sed -i "/servname/s:rpcbind:sunrpc:" src/rpcbind.c
|
|||
|
|
|||
|
./configure --prefix=/usr \
|
|||
|
--bindir=/sbin \
|
|||
|
--with-rpcuser=root \
|
|||
|
--without-systemdsystemunitdir
|
|||
|
make
|
|||
|
make DESTDIR=$PKG install
|
|||
|
|
|||
|
cd ../$scripts-$scriptsversion
|
|||
|
make DESTDIR=$PKG install-rpcbind
|
|||
|
make DESTDIR=$PKG install-netfs
|
|||
|
|
|||
|
# cut is in /bin
|
|||
|
sed -i "s,usr/bin/cut,bin/cut," $PKG/etc/rc.d/init.d/netfs
|
|||
|
}
|