diff options
Diffstat (limited to 'sys-apps/xinetd/xinetd-2.3.0-r1.ebuild')
-rw-r--r-- | sys-apps/xinetd/xinetd-2.3.0-r1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild b/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild new file mode 100644 index 000000000000..a44c8d6965aa --- /dev/null +++ b/sys-apps/xinetd/xinetd-2.3.0-r1.ebuild @@ -0,0 +1,49 @@ +# 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.1 2001/08/15 14:27:31 achim 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 + try make + +} + +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 +} + + + + |