12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # Tanım: Xinetd, * inetd * için güvenli bir değiştirme olan, genişletilmiş InterNET hizmetleri arka plan programıdır.
- # URL: https://github.com/xinetd-org/xinetd
- # Paketçi: milisarge
- # Gerekler:
- # Grup: ağ sistem
- isim=xinetd
- surum=2.3.15
- devir=1
- kaynak=(ftp://anduin.linuxfromscratch.org/BLFS/xinetd/$isim-$surum.tar.gz
- xinetd.conf chargen daytime echo systat xined_time )
-
- derle() {
- cd $isim-$surum
- source /etc/blfs-bootscripts
- wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
- tar xvf $scripts-$scriptsversion.tar.bz2
-
- sed -i -e "s/exec_server/child_process/" xinetd/builtins.c
- sed -i -e "/register unsigned count/s/register//" xinetd/itox.c
- ./configure --prefix=/usr --mandir=/usr/share/man --with-loadavg
-
- make
- make DESTDIR=$PKG install
- install -v -m755 -d $PKG/etc
- cp -v $SRC/xinetd.conf $PKG/etc
- install -v -m755 -d $PKG/etc/xinetd.d
- cp -v $SRC/chargen $PKG/etc/xinetd.d
- install -v -m755 -d $PKG/etc/xinetd.d
- cp -v $SRC/daytime $PKG/etc/xinetd.d
- install -v -m755 -d $PKG/etc/xinetd.d
- cp -v $SRC/echo $PKG/etc/xinetd.d
- install -v -m755 -d $PKG/etc/xinetd.d
- cp -v $SRC/systat $PKG/etc/xinetd.d
- install -v -m755 -d $PKG/etc/xinetd.d
- cp -v $SRC/xined_time $PKG/etc/xinetd.d/time
- cd $scripts-$scriptsversion
- make DESTDIR=$PKG install-xinetd
-
- }
|