linux-identd: removed orphaned port

This commit is contained in:
Fredrik Rinnestam 2013-05-06 21:04:23 +02:00
parent e9c5a8bc2c
commit 30c04dbd98
4 changed files with 0 additions and 50 deletions

View File

@ -1,10 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/identd
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/identd.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/identd
lrwxrwxrwx root/root usr/sbin/in.identd -> identd

View File

@ -1,2 +0,0 @@
0a38f907bc40c26db007af58a813db8b identd
c3517f612b351e46951d2ecb0c60b767 linux-identd-1.3.tar.gz

View File

@ -1,15 +0,0 @@
# Description: An RFC 1413 identification daemon for Linux
# URL: http://www.fukt.bsnet.se/~per/identd/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
name=linux-identd
version=1.3
release=3
source=(http://www.fukt.bsnet.se/~per/identd/$name-$version.tar.gz identd)
build () {
cd $name-$version
make CEXTRAS="$CFLAGS"
make DESTDIR=$PKG install
install -D -m 755 ../identd $PKG/etc/rc.d/identd
}

View File

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