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