summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Vroon <chainsaw@gentoo.org>2014-04-15 10:45:18 +0000
committerTony Vroon <chainsaw@gentoo.org>2014-04-15 10:45:18 +0000
commit5d9316416382e8136d699ff7515b2ec82e9f78e7 (patch)
treeb07a6b3db934e5fa1ec5e4f152310223bd8944e2 /net-misc/bird/bird-1.3.2.ebuild
parentVersion bump to 1.4.5 set Ondrej Sury as maitnainer too. (diff)
downloadgentoo-2-5d9316416382e8136d699ff7515b2ec82e9f78e7.tar.gz
gentoo-2-5d9316416382e8136d699ff7515b2ec82e9f78e7.tar.bz2
gentoo-2-5d9316416382e8136d699ff7515b2ec82e9f78e7.zip
Stability fixes for BFD support, BGP add-path support and BGP graceful restart (RFC 4724). This is a new stable candidate. Thanks to Ondřej Surý. Removing older versions.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Diffstat (limited to 'net-misc/bird/bird-1.3.2.ebuild')
-rw-r--r--net-misc/bird/bird-1.3.2.ebuild66
1 files changed, 0 insertions, 66 deletions
diff --git a/net-misc/bird/bird-1.3.2.ebuild b/net-misc/bird/bird-1.3.2.ebuild
deleted file mode 100644
index adb0a62a4aa4..000000000000
--- a/net-misc/bird/bird-1.3.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bird/bird-1.3.2.ebuild,v 1.1 2011/11/07 10:57:30 chainsaw Exp $
-
-EAPI=1
-
-inherit base autotools
-
-DESCRIPTION="A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 or IPv6"
-HOMEPAGE="http://bird.network.cz"
-SRC_URI="ftp://bird.network.cz/pub/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug ipv6"
-
-RDEPEND="sys-libs/ncurses
- sys-libs/readline
- ${DEPEND}"
-DEPEND="sys-devel/flex
- sys-devel/bison
- sys-devel/m4"
-
-PATCHES=(
- "${FILESDIR}/${PV}-v4-v6-build.patch"
-)
-
-src_prepare() {
- base_src_prepare
- eautoreconf
-}
-
-src_compile() {
- econf \
- --enable-client \
- --enable-ipv4 \
- --disable-ipv6 \
- --localstatedir=/var \
- $(use_enable debug) \
- || die "V4 configuration stage failed"
- emake || die "V4 compilation stage failed"
- if use ipv6; then
- emake almost-clean
- econf \
- --enable-client \
- --enable-ipv6 \
- --disable-ipv4 \
- --localstatedir=/var \
- $(use_enable debug) \
- || die "V6 configuration stage failed"
- emake || die "V6 compilation stage failed"
- fi
-}
-
-src_install() {
- if use ipv6; then
- dobin birdc6
- dosbin bird6
- newinitd "${FILESDIR}/initd-v6-${P}" bird6 || die "V6 init script installation failed"
- fi
- dobin birdc
- dosbin bird
- newinitd "${FILESDIR}/initd-v4-${P}" bird || die "V4 init script installation failed"
- dodoc doc/bird.conf.example || die "configuration example installation failed"
-}