portmap: removed

This commit is contained in:
Juergen Daubert 2010-06-11 12:06:08 +02:00
parent 80026616e3
commit 8f8ad137be
4 changed files with 0 additions and 56 deletions

View File

@ -1,13 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/portmap
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/pmap_dump
-rwxr-xr-x root/root sbin/pmap_set
-rwxr-xr-x root/root sbin/portmap
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/pmap_dump.8.gz
-rw-r--r-- root/root usr/man/man8/pmap_set.8.gz
-rw-r--r-- root/root usr/man/man8/portmap.8.gz

View File

@ -1,2 +0,0 @@
19fffe07876ab903a981b9373ebb113d portmap
ac108ab68bf0f34477f8317791aaf1ff portmap-6.0.tgz

View File

@ -1,18 +0,0 @@
# Description: RPC connection manager
# URL: http://neil.brown.name/portmap
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=portmap
version=6.0
release=1
source=(http://neil.brown.name/$name/$name-$version.tgz \
portmap)
build() {
cd ${name}_$version
sed -i 's|share/man|man|' Makefile
install -d $PKG/{sbin,usr/man/man8,etc/rc.d}
make
make BASEDIR=$PKG install
install -m 755 $SRC/portmap $PKG/etc/rc.d
}

View File

@ -1,23 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/portmap: start/stop portmap daemon
#
case $1 in
start)
/sbin/portmap -t /var/empty
;;
stop)
killall -q /sbin/portmap
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file