Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/bird: ChangeLog bird-1.3.0.ebuild bird-1.2.3-r1.ebuild
Date: Thu, 31 Mar 2011 09:49:03
Message-Id: 20110331094854.0C44420057@flycatcher.gentoo.org
1 chainsaw 11/03/31 09:48:54
2
3 Modified: ChangeLog
4 Added: bird-1.3.0.ebuild
5 Removed: bird-1.2.3-r1.ebuild
6 Log:
7 New upstream release, adds iBGP, multipath support, layer 2 link state detection, IPv6 RAs and many bugfixes. OSPF now supports point-to-multipoint interfaces. Azamat H. Hackimov has provided completely new initscripts and important socket path fixes, closes bugs #338118 and #338188.
8
9 (Portage version: 2.1.9.45/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.16 net-misc/bird/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bird/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bird/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bird/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/bird/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 26 Sep 2010 09:16:30 -0000 1.15
25 +++ ChangeLog 31 Mar 2011 09:48:53 -0000 1.16
26 @@ -1,6 +1,16 @@
27 # ChangeLog for net-misc/bird
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bird/ChangeLog,v 1.15 2010/09/26 09:16:30 maekke Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-misc/bird/ChangeLog,v 1.16 2011/03/31 09:48:53 chainsaw Exp $
32 +
33 +*bird-1.3.0 (31 Mar 2011)
34 +
35 + 31 Mar 2011; Tony Vroon <chainsaw@g.o> +files/1.3.0-v4-v6-build.patch,
36 + -bird-1.2.3-r1.ebuild, +files/initd-v4-bird-1.3.0,
37 + +files/initd-v6-bird-1.3.0, +bird-1.3.0.ebuild:
38 + New upstream release, adds iBGP, multipath support, layer 2 link state
39 + detection, IPv6 RAs and many bugfixes. OSPF now supports point-to-multipoint
40 + interfaces. Azamat H. Hackimov has provided completely new initscripts and
41 + important socket path fixes, closes bugs #338118 and #338188.
42
43 26 Sep 2010; Markus Meier <maekke@g.o> bird-1.2.4.ebuild:
44 add ~x86, bug #338119
45
46
47
48 1.1 net-misc/bird/bird-1.3.0.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bird/bird-1.3.0.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bird/bird-1.3.0.ebuild?rev=1.1&content-type=text/plain
52
53 Index: bird-1.3.0.ebuild
54 ===================================================================
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-misc/bird/bird-1.3.0.ebuild,v 1.1 2011/03/31 09:48:53 chainsaw Exp $
58
59 EAPI=1
60
61 inherit base autotools
62
63 DESCRIPTION="A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 or IPv6"
64 HOMEPAGE="http://bird.network.cz"
65 SRC_URI="ftp://bird.network.cz/pub/${PN}/${P}.tar.gz"
66 LICENSE="GPL-2"
67
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="debug ipv6"
71
72 RDEPEND="sys-libs/ncurses
73 sys-libs/readline
74 ${DEPEND}"
75 DEPEND="sys-devel/flex
76 sys-devel/bison
77 sys-devel/m4"
78
79 PATCHES=(
80 "${FILESDIR}/${PV}-v4-v6-build.patch"
81 )
82
83 src_prepare() {
84 base_src_prepare
85 eautoreconf
86 }
87
88 src_compile() {
89 econf \
90 --enable-client \
91 --enable-ipv4 \
92 --disable-ipv6 \
93 --localstatedir=/var \
94 $(use_enable debug) \
95 || die "V4 configuration stage failed"
96 emake || die "V4 compilation stage failed"
97 if use ipv6; then
98 emake almost-clean
99 econf \
100 --enable-client \
101 --enable-ipv6 \
102 --disable-ipv4 \
103 --localstatedir=/var \
104 $(use_enable debug) \
105 || die "V6 configuration stage failed"
106 emake || die "V6 compilation stage failed"
107 fi
108 }
109
110 src_install() {
111 if use ipv6; then
112 dobin birdc6
113 dosbin bird6
114 newinitd "${FILESDIR}/initd-v6-${P}" bird6 || die "V6 init script installation failed"
115 fi
116 dobin birdc
117 dosbin bird
118 newinitd "${FILESDIR}/initd-v4-${P}" bird || die "V4 init script installation failed"
119 dodoc doc/bird.conf.example || die "configuration example installation failed"
120 }