diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 05:39:37 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 05:39:37 +0000 |
commit | 1beef277f8eea2a2b56018ebefbef4a88776959b (patch) | |
tree | ba4a74a90e8dd931c5a1d4f6011376b90374dcb7 /net-misc/iputils | |
parent | stablize to prune old stuff (diff) | |
download | gentoo-2-1beef277f8eea2a2b56018ebefbef4a88776959b.tar.gz gentoo-2-1beef277f8eea2a2b56018ebefbef4a88776959b.tar.bz2 gentoo-2-1beef277f8eea2a2b56018ebefbef4a88776959b.zip |
old
Diffstat (limited to 'net-misc/iputils')
-rw-r--r-- | net-misc/iputils/files/digest-iputils-021109 | 1 | ||||
-rw-r--r-- | net-misc/iputils/iputils-021109.ebuild | 94 |
2 files changed, 0 insertions, 95 deletions
diff --git a/net-misc/iputils/files/digest-iputils-021109 b/net-misc/iputils/files/digest-iputils-021109 deleted file mode 100644 index ea769a132e46..000000000000 --- a/net-misc/iputils/files/digest-iputils-021109 +++ /dev/null @@ -1 +0,0 @@ -MD5 dd10ef3d76480990a2174d2bb0daddaf iputils-ss021109-try.tar.bz2 428335 diff --git a/net-misc/iputils/iputils-021109.ebuild b/net-misc/iputils/iputils-021109.ebuild deleted file mode 100644 index 7061210ff66f..000000000000 --- a/net-misc/iputils/iputils-021109.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iputils/iputils-021109.ebuild,v 1.11 2004/04/07 05:37:32 vapier Exp $ - -DESCRIPTION="Network monitoring tools including ping and ping6" -HOMEPAGE="ftp://ftp.inr.ac.ru/ip-routing" -SRC_URI="ftp://ftp.inr.ac.ru/ip-routing/${PN}-ss${PV}-try.tar.bz2 - http://ftp.iasi.roedu.net/mirrors/ftp.inr.ac.ru/ip-routing/${PN}-ss${PV}-try.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~x86 ~sparc ~alpha ppc ~hppa ~mips ~amd64 ~ia64 ~ppc64" -IUSE="static" #doc - -DEPEND="virtual/glibc - virtual/os-headers - !ppc64? ( dev-util/yacc )" -# not marked stable at all on ppc64? -# doc? ( app-text/openjade -# dev-perl/SGMLSpm -# app-text/docbook-sgml-dtd -# app-text/docbook-sgml-utils ) -RDEPEND="virtual/glibc" - -S="${WORKDIR}/${PN}" - -src_unpack() { - - unpack ${A} - cd ${S} - - cp ${FILESDIR}/${P}-pfkey.patch include-glibc/net/pfkeyv2.h || die - sed -e "27s:-O2:${CFLAGS}:;68s:./configure:unset CFLAGS\;./configure:" -i Makefile - sed -e "20d;21d;22d;23d;24d" -i Makefile - -} - -src_compile() { - - use static && LDFLAGS="${LDFLAGS} -static" - - if [ -e ${ROOT}/usr/include/linux/pfkeyv2.h ]; then - sed -e '1s:/usr/src/linux/include:/usr/include:' -i libipsec/Makefile - sed -e '1s:/usr/src/linux/include:/usr/include:' -i setkey/Makefile - sed -e '1s:/usr/src/linux/include:/usr/include:;10s:-ll:-lfl:' -i setkey/Makefile - sed -e "51s:ifdef:ifndef:;68d; 69d; 70d;" -i racoon/grabmyaddr.c - sed -e '461i\LIBS="$LIBS -lfl -lresolv"' -i racoon/configure.in - cd ${S}/libipsec && emake || die - cd ${S}/setkey && emake || die - - cd ${S}/racoon - autoconf; econf || die; emake || die - fi - - cd ${S} - emake KERNEL_INCLUDE="/usr/include" || die - -# if [ "`use doc`" ]; then -# make html || die -# fi - make man || die - -} - -src_install() { - - if [ -e ${ROOT}/usr/include/linux/pfkeyv2.h ]; then - mkdir -p ${D}/usr/sbin; mkdir -p ${D}/usr/share/man/man8 - mkdir -p ${D}/usr/share/man/man5; - cd ${S}/racoon && einstall || die - - into /usr - dobin ${S}/setkey/setkey - fi - - cd ${S} - into / - dobin ping ping6 - dosbin arping - into /usr - dobin tracepath tracepath6 traceroute6 - dosbin clockdiff rarpd rdisc ipg tftpd - - fperms 4755 /bin/ping /bin/ping6 /usr/bin/tracepath \ - /usr/bin/tracepath6 /usr/bin/traceroute6 - - dodoc INSTALL RELNOTES - doman doc/*.8 - -# if [ "`use doc`" ]; then -# dohtml doc/*.html -# fi - -} |