summaryrefslogtreecommitdiffstats
path: root/inetutils
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 11:56:40 +0100
committerLukc <lukc@upyum.com>2010-12-12 11:56:40 +0100
commita019a5ef5dcfeed8971f0dd4d685e5ffda347b38 (patch)
tree3fc99931c37308b7eca93c697bd23560cedc0a08 /inetutils
parent05bcb3954a3f6ab458b437f953ae38a660bbd698 (diff)
downloadbase-a019a5ef5dcfeed8971f0dd4d685e5ffda347b38.tar.gz
base-a019a5ef5dcfeed8971f0dd4d685e5ffda347b38.tar.bz2
base-a019a5ef5dcfeed8971f0dd4d685e5ffda347b38.tar.xz
base-a019a5ef5dcfeed8971f0dd4d685e5ffda347b38.zip
Recette de inetutils retirée.
Diffstat (limited to 'inetutils')
-rw-r--r--inetutils/.footprint15
-rw-r--r--inetutils/.md5sum3
-rw-r--r--inetutils/Pkgfile21
-rw-r--r--inetutils/Pkgfile.old31
-rwxr-xr-xinetutils/inetd23
-rw-r--r--inetutils/inetd.conf23
6 files changed, 0 insertions, 116 deletions
diff --git a/inetutils/.footprint b/inetutils/.footprint
deleted file mode 100644
index 5a881ba..0000000
--- a/inetutils/.footprint
+++ /dev/null
@@ -1,15 +0,0 @@
-drwxr-xr-x root/root etc/
--rw-r--r-- root/root etc/inetd.conf
-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/sbin/
--rwxr-xr-x root/root usr/sbin/inetd
diff --git a/inetutils/.md5sum b/inetutils/.md5sum
deleted file mode 100644
index 406fa41..0000000
--- a/inetutils/.md5sum
+++ /dev/null
@@ -1,3 +0,0 @@
-87fdb9f85d8fc140b2f873e8e4e18440 inetd
-dd0d71e008809420edada02dda7a3149 inetd.conf
-ad8fdcdf1797b9ca258264a6b04e48fd inetutils-1.8.tar.gz
diff --git a/inetutils/Pkgfile b/inetutils/Pkgfile
deleted file mode 100644
index b77a431..0000000
--- a/inetutils/Pkgfile
+++ /dev/null
@@ -1,21 +0,0 @@
-description="Inetd daemon, FTP and telnet client"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
-url="http://www.gnu.org/software/inetutils/inetutils.html"
-depends=(readline ncurses)
-
-name=inetutils
-version=1.8
-release=1
-source=(http://ftp.gnu.org/gnu/inetutils/inetutils-1.8.tar.gz inetd.conf inetd)
-build ()
-{
- cd inetutils-$version;
- ./configure --prefix=/usr --libexecdir=/usr/sbin --mandir=/usr/man --localstatedir=/var --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
-}
diff --git a/inetutils/Pkgfile.old b/inetutils/Pkgfile.old
deleted file mode 100644
index af58f1f..0000000
--- a/inetutils/Pkgfile.old
+++ /dev/null
@@ -1,31 +0,0 @@
-# Description: Inetd daemon, FTP and telnet client
-# URL: http://www.gnu.org/software/inetutils/inetutils.html
-# Maintainer: CRUX System Team, core-ports at crux dot nu
-# Depends on: readline ncurses
-
-name=inetutils
-version=1.8
-release=1
-source=(http://ftp.gnu.org/gnu/inetutils/inetutils-$version.tar.gz \
- inetd.conf inetd)
-
-build() {
- cd inetutils-$version
-
- ./configure --prefix=/usr \
- --libexecdir=/usr/sbin \
- --mandir=/usr/man \
- --localstatedir=/var \
- --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
-}
diff --git a/inetutils/inetd b/inetutils/inetd
deleted file mode 100755
index b70001c..0000000
--- a/inetutils/inetd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/inetd: start/stop inet daemon
-#
-
-case $1 in
-start)
- /usr/sbin/inetd
- ;;
-stop)
- killall -q /usr/sbin/inetd
- ;;
-restart)
- $0 stop
- sleep 2
- $0 start
- ;;
-*)
- echo "usage: $0 [start|stop|restart]"
- ;;
-esac
-
-# End of file
diff --git a/inetutils/inetd.conf b/inetutils/inetd.conf
deleted file mode 100644
index 00ac639..0000000
--- a/inetutils/inetd.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# /etc/inetd.conf: inetd(8) configuration
-#
-# Do 'killall -HUP inetd' to make inetd re-read this file.
-#
-
-# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
-
-# ftp stream tcp nowait root /usr/sbin/tcpd in.ftpd
-# telnet stream tcp nowait root /usr/sbin/tcpd in.telnetd
-# nntp stream tcp nowait root /usr/sbin/tcpd in.nntpd
-# smtp stream tcp nowait root /usr/sbin/tcpd sendmail -v
-# shell stream tcp nowait root /usr/sbin/tcpd in.rshd -L
-# login stream tcp nowait root /usr/sbin/tcpd in.rlogind
-# exec stream tcp nowait root /usr/sbin/tcpd in.rexecd
-# talk dgram udp wait root /usr/sbin/tcpd in.talkd
-# ntalk dgram udp wait root /usr/sbin/tcpd in.talkd
-# pop2 stream tcp nowait root /usr/sbin/tcpd in.pop2d
-# pop3 stream tcp nowait root /usr/sbin/tcpd in.pop3d
-# imap stream tcp nowait root /usr/sbin/tcpd in.imapd
-# auth stream tcp nowait nobody /usr/sbin/in.identd in.identd
-
-# End of file