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.1.5.ebuild
Date: Mon, 02 Nov 2009 15:58:47
Message-Id: E1N4zIr-0001i0-Hq@stork.gentoo.org
1 chainsaw 09/11/02 15:58:45
2
3 Modified: ChangeLog
4 Added: bird-1.1.5.ebuild
5 Log:
6 Version bump, increases scalability of the BGP implementation. New accessors for AS path and allows import of kernel onlink routes.
7 (Portage version: 2.1.7.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 net-misc/bird/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/bird/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 2 Oct 2009 11:52:08 -0000 1.7
23 +++ ChangeLog 2 Nov 2009 15:58:45 -0000 1.8
24 @@ -1,6 +1,14 @@
25 # ChangeLog for net-misc/bird
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bird/ChangeLog,v 1.7 2009/10/02 11:52:08 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/bird/ChangeLog,v 1.8 2009/11/02 15:58:45 chainsaw Exp $
29 +
30 +*bird-1.1.5 (02 Nov 2009)
31 +
32 + 02 Nov 2009; <chainsaw@g.o> +files/1.1.5-nostrip.patch,
33 + +files/initd-v4-bird-1.1.5, +files/initd-v6-bird-1.1.5,
34 + +bird-1.1.5.ebuild:
35 + Version bump, increases scalability of the BGP implementation. New
36 + accessors for AS path and allows import of kernel onlink routes.
37
38 *bird-1.1.4 (02 Oct 2009)
39
40
41
42
43 1.1 net-misc/bird/bird-1.1.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/bird-1.1.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/bird-1.1.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: bird-1.1.5.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/bird/bird-1.1.5.ebuild,v 1.1 2009/11/02 15:58:45 chainsaw Exp $
53
54 inherit eutils
55
56 DESCRIPTION="A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 or IPv6"
57 HOMEPAGE="http://bird.network.cz"
58 SRC_URI="ftp://bird.network.cz/pub/${PN}/${P}.tar.gz"
59 LICENSE="GPL-2"
60
61 SLOT="0"
62 KEYWORDS="~amd64"
63 IUSE="debug ipv6"
64
65 RDEPEND="sys-libs/ncurses
66 sys-libs/readline
67 ${DEPEND}"
68 DEPEND="sys-devel/flex
69 sys-devel/bison
70 sys-devel/m4"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}/${PV}-nostrip.patch"
76 }
77
78 src_compile() {
79 econf \
80 --enable-client \
81 $(use_enable debug) \
82 $(use_enable ipv6) \
83 || die "Configuration stage failed"
84 emake || die "Compilation stage failed"
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die
89 if use ipv6; then
90 # The only thing worse then not supplying
91 # a sample configuration file to a user is
92 # wasting his/her time with a totally
93 # broken one.
94 rm "${D}/etc/bird6.conf"
95 newinitd "${FILESDIR}/initd-v6-${P}" bird6
96 else
97 newinitd "${FILESDIR}/initd-v4-${P}" bird
98 fi
99 }
100
101 pkg_postinst() {
102 if use ipv6; then
103 elog "Please note that only the IPv6 versions of the BIRD client & daemon have been installed."
104 else
105 elog "Please note that only the IPv4 versions of the BIRD client & daemon have been installed."
106 fi
107 elog "BIRDs build system is not currently suited to providing both."
108 }