CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
inetutils: updated to 1.9.1 and aligned with upstream
[crossrootfs.git] / inetutils / Pkgfile
1 # Description: Inetd daemon, FTP and telnet client
2 # URL: http://www.gnu.org/software/inetutils/inetutils.html
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: ncurses
6
7 name=inetutils
8 version=1.9.1
9 release=1
10 source=(http://ftp.gnu.org/gnu/inetutils/inetutils-$version.tar.gz \
11 inetd.conf inetd)
12
13 build() {
14 cd inetutils-$version
15
16 # fix for glibc 'gets' removal
17 sed -i -e '/gets is a/d' lib/stdio.in.h
18
19 ./configure --build=$CHOST \
20 --host=$CTARGET \
21 --prefix=/usr \
22 --libexecdir=/usr/sbin \
23 --mandir=/usr/man \
24 --localstatedir=/var \
25 --sysconfdir=/etc \
26 --disable-{servers,clients} \
27 --enable-{inetd,ftp,telnet}
28
29 make
30 make DESTDIR=$PKG install
31
32 install -d $PKG/etc/rc.d
33 install -m 644 $SRC/inetd.conf $PKG/etc
34 install -m 755 $SRC/inetd $PKG/etc/rc.d
35
36 rm -r $PKG/usr/share
37 }