CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
inetutils: updated to 1.9.1 and aligned with upstream
authorVictor Martinez <pitillo@ono.com>
Wed, 28 Nov 2012 16:35:49 +0000 (16:35 +0000)
committerVictor Martinez <pitillo@ono.com>
Wed, 28 Nov 2012 16:35:49 +0000 (16:35 +0000)
inetutils/.footprint
inetutils/.md5sum
inetutils/Pkgfile

index 5a881baff9c943a99bd49b8a249a9ed5ae6d30e9..7dc3c01204339e33003532dc604dc794e451abd3 100644 (file)
@@ -4,12 +4,12 @@ drwxr-xr-x    root/root       etc/rc.d/
 -rwxr-xr-x     root/root       etc/rc.d/inetd
 drwxr-xr-x     root/root       usr/
 drwxr-xr-x     root/root       usr/bin/
--rwxr-xr-x     root/root       usr/bin/ftp
 -rwxr-xr-x     root/root       usr/bin/telnet
 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
index 406fa41a08bab4d2ee4158ce636cc1484c6f5ae9..0ba398b5dd7f4de40514f631bd57a674dea9458e 100644 (file)
@@ -1,3 +1,3 @@
 87fdb9f85d8fc140b2f873e8e4e18440  inetd
 dd0d71e008809420edada02dda7a3149  inetd.conf
-ad8fdcdf1797b9ca258264a6b04e48fd  inetutils-1.8.tar.gz
+944f7196a2b3dba2d400e9088576000c  inetutils-1.9.1.tar.gz
index 8cd8273e12cfd1f739032959f7a5688b1d42bb3c..81c140e99c8435a0ad8fc78e5096fdd54cdcb66d 100644 (file)
@@ -5,13 +5,17 @@
 # Depends on: ncurses
 
 name=inetutils
-version=1.8
+version=1.9.1
 release=1
 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
 }