X-Git-Url: http://gitweb/?a=blobdiff_plain;f=inetutils%2FPkgfile;h=280bb00a442fc785ebc3445f6e537c3dbbb6b24d;hb=d5f0d5920a96cd1e5e479f796ff4ccf7b7d4b615;hp=22ee644fdf4054dbb43eda9bef30973ab4040647;hpb=b751b192b8a9f558df99b4050babc1b84d45a372;p=crossrootfs.git diff --git a/inetutils/Pkgfile b/inetutils/Pkgfile index 22ee644..280bb00 100644 --- a/inetutils/Pkgfile +++ b/inetutils/Pkgfile @@ -5,13 +5,17 @@ # Depends on: ncurses name=inetutils -version=1.7 -release=1 +version=1.9.1 +release=2 source=(http://ftp.gnu.org/gnu/inetutils/inetutils-$version.tar.gz \ inetd.conf inetd) build() { cd inetutils-$version + + # fix for glibc 'gets' removal + sed -i -e '/gets is a/d' lib/stdio.in.h + ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ @@ -21,10 +25,13 @@ build() { --sysconfdir=/etc \ --disable-{servers,clients} \ --enable-{inetd,ftp,telnet} + make 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 }