diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2007-09-01 12:43:04 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2007-09-01 12:43:04 +0000 |
commit | 3d21c9bda19fe77f903202c1d009e1b383996159 (patch) | |
tree | 4e630fece0d2d43255c2553ae5411170f01730d8 /net-misc/bird/bird-1.0.11.ebuild | |
parent | Removing twp from metadata due to his retirement (see #190561 for reference). (diff) | |
download | gentoo-2-3d21c9bda19fe77f903202c1d009e1b383996159.tar.gz gentoo-2-3d21c9bda19fe77f903202c1d009e1b383996159.tar.bz2 gentoo-2-3d21c9bda19fe77f903202c1d009e1b383996159.zip |
Remove net-misc/bird as per last rites announcement.
Diffstat (limited to 'net-misc/bird/bird-1.0.11.ebuild')
-rw-r--r-- | net-misc/bird/bird-1.0.11.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/net-misc/bird/bird-1.0.11.ebuild b/net-misc/bird/bird-1.0.11.ebuild deleted file mode 100644 index f26a2e53260b..000000000000 --- a/net-misc/bird/bird-1.0.11.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bird/bird-1.0.11.ebuild,v 1.1 2006/07/10 09:20:42 chainsaw Exp $ - -inherit eutils - -DESCRIPTION="A routing daemon implementing OSPF, RIP/v2, BGP for IPv4 and IPv6" -HOMEPAGE="http://bird.network.cz" -SRC_URI="ftp://bird.network.cz/pub/${PN}/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="ipv6only client" - -DEPEND="sys-devel/flex - sys-devel/bison - sys-devel/m4 - client? ( sys-libs/ncurses sys-libs/readline )" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-destdir.patch - epatch ${FILESDIR}/${PV}-flex-args.patch - epatch ${FILESDIR}/${PV}-nostrip.patch -} - -src_compile() { - econf \ - $(use_enable ipv6only ipv6) \ - $(use_enable client) || die "econf failed" - make || die "emake failed" -} - -src_install() { - make DESTDIR=${D} install || die - newinitd ${FILESDIR}/initrd-${P} bird -} |