diff options
author | 2002-07-12 21:05:53 +0000 | |
---|---|---|
committer | 2002-07-12 21:05:53 +0000 | |
commit | 9f9e8d9c38cabbb04346f6599d9ac1521aa6a10e (patch) | |
tree | a188ce5a136d6749cbd7b3ff422646aa8461c1b0 /sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild | |
parent | Added ipv6 patch if ipv6 in USE. Closes bug 4830. (diff) | |
download | historical-9f9e8d9c38cabbb04346f6599d9ac1521aa6a10e.tar.gz historical-9f9e8d9c38cabbb04346f6599d9ac1521aa6a10e.tar.bz2 historical-9f9e8d9c38cabbb04346f6599d9ac1521aa6a10e.zip |
Add ipv6 patch if ipv6 in USE.
Diffstat (limited to 'sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild')
-rw-r--r-- | sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild b/sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild new file mode 100644 index 000000000000..cc538da05420 --- /dev/null +++ b/sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ucspi-tcp/ucspi-tcp-0.88-r2.ebuild,v 1.1 2002/07/12 21:05:53 g2boojum Exp $ + +DESCRIPTION="Collection of tools for managing UNIX services" +SRC_URI="http://cr.yp.to/${PN}/${P}.tar.gz + http://www.fefe.de/ucspi/ucspi-tcp-0.88-ipv6.diff11.bz2" +HOMEPAGE="http://cr.yp.to/${PN}/" +S=${WORKDIR}/${P} +DEPEND="virtual/glibc" +SLOT="0" +KEYWORDS="x86" +LICENSE="as-is" + +src_unpack() { + + unpack ${P}.tar.gz + use ipv6 && bzcat ${DISTDIR}/ucspi-tcp-0.88-ipv6.diff11.bz2 | patch -d ${S} -p1 + cd ${S} + echo "gcc ${CFLAGS}" > conf-cc + echo "gcc" > conf-ld + echo "/usr/" > conf-home +} + +src_compile() { + try pmake +} + +src_install() { + + for i in tcpserver tcprules tcprulescheck argv0 recordio tcpclient *\@ tcpcat mconnect mconnect-io addcr delcr fixcrio rblsmtpd + do + dobin $i + done + + dodoc CHANGES FILES README SYSDEPS TARGETS TODO VERSION +} + + + |