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/files: 1.1.2-nostrip.patch initd-v6-bird-1.1.2 initd-v4-bird-1.1.2 initd-bird-1.1.0 1.1.0-nostrip.patch
Date: Mon, 24 Aug 2009 12:22:43
Message-Id: E1MfYZN-0000fh-IG@stork.gentoo.org
1 chainsaw 09/08/24 12:22:41
2
3 Added: 1.1.2-nostrip.patch initd-v6-bird-1.1.2
4 initd-v4-bird-1.1.2
5 Removed: initd-bird-1.1.0 1.1.0-nostrip.patch
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.1 net-misc/bird/files/1.1.2-nostrip.patch
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/files/1.1.2-nostrip.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/files/1.1.2-nostrip.patch?rev=1.1&content-type=text/plain
15
16 Index: 1.1.2-nostrip.patch
17 ===================================================================
18 diff -uNr bird-1.1.2.ORIG/tools/Makefile.in bird-1.1.2/tools/Makefile.in
19 --- bird-1.1.2.ORIG/tools/Makefile.in 2009-08-24 13:13:24.000000000 +0100
20 +++ bird-1.1.2/tools/Makefile.in 2009-08-24 13:13:39.000000000 +0100
21 @@ -56,9 +56,9 @@
22
23 install: all
24 $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/$(localstatedir)
25 - $(INSTALL_PROGRAM) -s $(exedir)/bird $(DESTDIR)/$(sbindir)/bird@SUFFIX6@
26 + $(INSTALL_PROGRAM) $(exedir)/bird $(DESTDIR)/$(sbindir)/bird@SUFFIX6@
27 if test -n "@CLIENT@" ; then \
28 - $(INSTALL_PROGRAM) -s $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc@SUFFIX6@ ; \
29 + $(INSTALL_PROGRAM) $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc@SUFFIX6@ ; \
30 fi
31 if ! test -f $(DESTDIR)/$(sysconfdir)/bird@SUFFIX6@.conf ; then \
32 $(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(DESTDIR)/$(sysconfdir)/bird@SUFFIX6@.conf ; \
33
34
35
36 1.1 net-misc/bird/files/initd-v6-bird-1.1.2
37
38 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/files/initd-v6-bird-1.1.2?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/files/initd-v6-bird-1.1.2?rev=1.1&content-type=text/plain
40
41 Index: initd-v6-bird-1.1.2
42 ===================================================================
43 #!/sbin/runscript
44 # Copyright 1999-2009 Gentoo Foundation
45 # Distributed under the terms of the GNU General Public License v2
46 # $Header: /var/cvsroot/gentoo-x86/net-misc/bird/files/initd-v6-bird-1.1.2,v 1.1 2009/08/24 12:22:41 chainsaw Exp $
47
48 EXE=bird6
49 CLI=birdc6
50 SOCK="/var/lib/run/${EXE}.ctl"
51
52 depend() {
53 need net
54 use logger
55 }
56
57 checkconfig() {
58 if [ ! -f "/etc/${EXE}.conf" ]; then
59 eerror "Please create /etc/${EXE}.conf"
60 return 1
61 fi
62 return 0
63 }
64
65 start() {
66 checkconfig || return $?
67
68 ebegin "Starting BIRD"
69 "/usr/sbin/${EXE}" -c "/etc/${EXE}.conf" -s "${SOCK}"
70 eend $? "Failed to start BIRD"
71 }
72
73 stop() {
74 ebegin "Stopping BIRD"
75 if [ -f "${SOCK}" ]; then
76 echo "down" | "/usr/sbin/${CLI}" -s "${SOCK}" &>/dev/null
77 eend $? "Failed to stop BIRD"
78 else
79 eend 0
80 fi
81 }
82
83
84
85 1.1 net-misc/bird/files/initd-v4-bird-1.1.2
86
87 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/files/initd-v4-bird-1.1.2?rev=1.1&view=markup
88 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/bird/files/initd-v4-bird-1.1.2?rev=1.1&content-type=text/plain
89
90 Index: initd-v4-bird-1.1.2
91 ===================================================================
92 #!/sbin/runscript
93 # Copyright 1999-2009 Gentoo Foundation
94 # Distributed under the terms of the GNU General Public License v2
95 # $Header: /var/cvsroot/gentoo-x86/net-misc/bird/files/initd-v4-bird-1.1.2,v 1.1 2009/08/24 12:22:41 chainsaw Exp $
96
97 EXE=bird
98 CLI=birdc
99 SOCK="/var/lib/run/${EXE}.ctl"
100
101 depend() {
102 need net
103 use logger
104 }
105
106 checkconfig() {
107 if [ ! -f "/etc/${EXE}.conf" ]; then
108 eerror "Please create /etc/${EXE}.conf"
109 return 1
110 fi
111 return 0
112 }
113
114 start() {
115 checkconfig || return $?
116
117 ebegin "Starting BIRD"
118 "/usr/sbin/${EXE}" -c "/etc/${EXE}.conf" -s "${SOCK}"
119 eend $? "Failed to start BIRD"
120 }
121
122 stop() {
123 ebegin "Stopping BIRD"
124 if [ -f "${SOCK}" ]; then
125 echo "down" | "/usr/sbin/${CLI}" -s "${SOCK}" &>/dev/null
126 eend $? "Failed to stop BIRD"
127 else
128 eend 0
129 fi
130 }