CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
inetutils: updated to 1.9.1
[crossrootfs.git] / inetutils / Pkgfile
index 22ee644fdf4054dbb43eda9bef30973ab4040647..1410f8d728e2221e0a12b4644a48622e5c1298cd 100644 (file)
@@ -5,13 +5,20 @@
 # Depends on: ncurses
 
 name=inetutils
-version=1.7
-release=1
+version=1.9.1
+release=4
 source=(http://ftp.gnu.org/gnu/inetutils/inetutils-$version.tar.gz \
-        inetd.conf inetd)
+        inetd.conf inetd $name-$version-pathprocnet.patch)
 
 build() {
   cd inetutils-$version
+
+  # fix for glibc 'gets' removal
+  sed -i -e '/gets is a/d' lib/stdio.in.h
+
+  # Fix for PATH_PROC_NET undefined error
+  patch -p1 -i $SRC/$name-$version-pathprocnet.patch
+
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
@@ -20,11 +27,18 @@ build() {
               --localstatedir=/var \
               --sysconfdir=/etc \
               --disable-{servers,clients} \
-              --enable-{inetd,ftp,telnet}
+              --enable-{hostname,ifconfig,inetd,ftp,telnet,traceroute}
+
   make
   make DESTDIR=$PKG install
+
   install -d $PKG/etc/rc.d
+
+  mv $PKG/usr/bin/hostname $PKG/bin
+  mv $PKG/usr/bin/ifconfig $PKG/sbin
+
   install -m 644 $SRC/inetd.conf $PKG/etc
   install -m 755 $SRC/inetd $PKG/etc/rc.d
+
   rm -r $PKG/usr/share
 }