inetutils: update to 1.7

This commit is contained in:
Juergen Daubert 2009-12-18 13:51:27 +01:00
parent 4246c8f664
commit af8fff8c23
3 changed files with 7 additions and 8 deletions

View File

@ -9,8 +9,7 @@ drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/ftp.1.gz
-rw-r--r-- root/root usr/man/man1/inetd.1.gz
-rw-r--r-- root/root usr/man/man1/telnet.1.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/inetd.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/inetd

View File

@ -1,3 +1,3 @@
87fdb9f85d8fc140b2f873e8e4e18440 inetd
dd0d71e008809420edada02dda7a3149 inetd.conf
23cc24bc77751bf77d50a07a7395f9b3 inetutils-1.6.tar.gz
a1d5a01b0ab8a7e596ac4cff0cce7129 inetutils-1.7.tar.gz

View File

@ -4,7 +4,7 @@
# Depends on: readline ncurses
name=inetutils
version=1.6
version=1.7
release=1
source=(http://ftp.gnu.org/gnu/inetutils/inetutils-$version.tar.gz \
inetd.conf inetd)
@ -19,13 +19,13 @@ build() {
--sysconfdir=/etc \
--disable-{servers,clients} \
--enable-{inetd,ftp,telnet}
make
for p in inetd ftp telnet; do
(cd $p; make DESTDIR=$PKG install)
done
make DESTDIR=$PKG install
install -d $PKG/etc/rc.d
install -m 644 $SRC/inetd.conf $PKG/etc
install -m 755 $SRC/inetd $PKG/etc/rc.d
rm -r $PKG/usr/share
}