diff options
Diffstat (limited to 'sys-apps/tcp-wrappers/tcp-wrappers-7.6-r6.ebuild')
-rw-r--r-- | sys-apps/tcp-wrappers/tcp-wrappers-7.6-r6.ebuild | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r6.ebuild b/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r6.ebuild deleted file mode 100644 index c97d69ae8eaf..000000000000 --- a/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r6.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r6.ebuild,v 1.15 2004/07/01 21:40:36 eradicator Exp $ - -inherit eutils - -MY_P=${P//-/_} - -S=${WORKDIR}/${MY_P} -DESCRIPTION="TCP Wrappers" -SRC_URI="ftp://ftp.porcupine.org/pub/security/${MY_P}.tar.gz - mirror://gentoo/${PF}-patches.tar" -HOMEPAGE="ftp://ftp.porcupine.org/pub/security/index.html" -IUSE="ipv6 static" -SLOT="0" -LICENSE="freedist" -KEYWORDS="x86 amd64 ppc sparc alpha mips hppa ia64 ppc64" - -DEPEND="virtual/libc - >=sys-apps/sed-4" -RDEPEND="virtual/libc" - -src_unpack() { - unpack ${A} ; cd ${S} - - chmod ug+w Makefile - sed -i -e "s:-O:${CFLAGS}:" \ - -e "s:AUX_OBJ=.*:AUX_OBJ= \\\:" \ - Makefile - - PATCHDIR=${WORKDIR}/${PV}-patches - - epatch ${PATCHDIR}/${P}-makefile.patch.bz2 - - epatch ${PATCHDIR}/generic - - use static || epatch ${PATCHDIR}/${P}-shared.patch.bz2 - use ipv6 && epatch ${PATCHDIR}/${P}-ipv6-1.14.diff.bz2 -} - -src_compile() { - local myconf="" - - use static || myconf="${myconf} -DHAVE_WEAKSYMS" - use ipv6 && myconf="${myconf} -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len" - - make ${MAKEOPTS} \ - REAL_DAEMON_DIR=/usr/sbin \ - GENTOO_OPT="${myconf}" \ - MAJOR=0 MINOR=${PV:0:1} REL=${PV:2:3} \ - config-check || die - - make ${MAKEOPTS} \ - REAL_DAEMON_DIR=/usr/sbin \ - GENTOO_OPT="${myconf}" \ - MAJOR=0 MINOR=${PV:0:1} REL=${PV:2:3} \ - linux || die -} - -src_install() { - dosbin tcpd tcpdchk tcpdmatch safe_finger try-from - doman *.[358] - dosym hosts_access.5.gz /usr/share/man/man5/hosts.allow.5.gz - dosym hosts_access.5.gz /usr/share/man/man5/hosts.deny.5.gz - dolib.a libwrap.a - if ! use static; then - newlib.so libwrap.so libwrap.so.0.${PV} - dosym /usr/lib/libwrap.so.0.${PV} /usr/lib/libwrap.so.0 - dosym /usr/lib/libwrap.so.0 /usr/lib/libwrap.so - fi - insinto /usr/include - doins tcpd.h - - dodoc BLURB CHANGES DISCLAIMER README* ${FILESDIR}/hosts.allow.example -} |