diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-08-30 16:03:29 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-08-30 16:03:29 +0000 |
commit | 365e5029966b29270ff657b76f01d28ff4af2135 (patch) | |
tree | 6ecd302a1b9c8a5b49e23793768b6cfec4633c65 | |
parent | fixes for qt (try->die) (diff) | |
download | gentoo-2-365e5029966b29270ff657b76f01d28ff4af2135.tar.gz gentoo-2-365e5029966b29270ff657b76f01d28ff4af2135.tar.bz2 gentoo-2-365e5029966b29270ff657b76f01d28ff4af2135.zip |
this version removed since 2.3.3 has undergone an audit and is much more
secure.
-rw-r--r-- | sys-apps/xinetd/xinetd-2.3.0-r1.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild b/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild deleted file mode 100644 index 962fd7d73003..000000000000 --- a/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild,v 1.2 2001/08/28 22:32:13 lamer Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="Replacement for inetd." -HOMEPAGE="http://www.xinetd.org" -SRC_URI="http://www.xinetd.org/${A}" -DEPEND="virtual/glibc - tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 )" - -RDEPEND="virtual/glibc - sys-devel/perl" - -src_compile() { - - local myconf - if [ "`use tcpd`" ] ; then - myconf="--with-libwrap" - fi - if [ "`use ipv6`" ] ; then - myconf="$myconf --with-inet6" - fi - - try ./configure --with-loadavg --prefix=/usr --mandir=/usr/share/man --host=${CHOST} $myconf - # Parallel make does not work - make || die - -} - -src_install() { - cd ${S} - try make prefix=${D}/usr MANDIR=${D}/usr/share/man install - dodoc CHANGELOG README COPYRIGHT - exeinto /etc/rc.d/init.d - doexe ${FILESDIR}/xinetd ${FILESDIR}/svc-xinetd - insinto /etc - #doins ${FILESDIR}/xinetd.conf - exeinto /var/lib/supervise/services/xinetd - newexe ${FILESDIR}/xinetd-run-${PV} run - exeinto /usr/sbin - doexe ${FILESDIR}/xconv.pl -} - - - - |