Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/ipv6calc: ChangeLog ipv6calc-0.72.0.ebuild ipv6calc-0.45.ebuild ipv6calc-0.50.ebuild
Date: Sun, 28 Dec 2008 20:30:16
Message-Id: E1LH2H8-0008Lg-Eh@stork.gentoo.org
1 pva 08/12/28 20:30:14
2
3 Modified: ChangeLog ipv6calc-0.72.0.ebuild
4 Removed: ipv6calc-0.45.ebuild ipv6calc-0.50.ebuild
5 Log:
6 Fixed build issue without geoip, bug #252811, thank Mike Auty for report.
7 (Portage version: 2.2_rc20/cvs/Linux 2.6.26-openvz.git-89451f9 i686)
8
9 Revision Changes Path
10 1.21 net-misc/ipv6calc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 25 Dec 2008 13:48:11 -0000 1.20
23 +++ ChangeLog 28 Dec 2008 20:30:14 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/ipv6calc
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.20 2008/12/25 13:48:11 pva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.21 2008/12/28 20:30:14 pva Exp $
29 +
30 + 28 Dec 2008; Peter Volkov <pva@g.o>
31 + +files/ipv6calc-0.72.0-optional-geoip.patch, -ipv6calc-0.45.ebuild,
32 + -ipv6calc-0.50.ebuild, ipv6calc-0.72.0.ebuild:
33 + Fixed build issue without geoip, bug #252811, thank Mike Auty for report.
34
35 *ipv6calc-0.72.0 (25 Dec 2008)
36
37
38
39
40 1.2 net-misc/ipv6calc/ipv6calc-0.72.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild?r1=1.1&r2=1.2
45
46 Index: ipv6calc-0.72.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- ipv6calc-0.72.0.ebuild 25 Dec 2008 13:48:11 -0000 1.1
53 +++ ipv6calc-0.72.0.ebuild 28 Dec 2008 20:30:14 -0000 1.2
54 @@ -1,8 +1,8 @@
55 # Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild,v 1.1 2008/12/25 13:48:11 pva Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild,v 1.2 2008/12/28 20:30:14 pva Exp $
59
60 -inherit fixheadtails toolchain-funcs
61 +inherit eutils fixheadtails toolchain-funcs autotools
62
63 DESCRIPTION="IPv6 address calculator"
64 HOMEPAGE="http://www.deepspace6.net/projects/ipv6calc.html"
65 @@ -17,13 +17,16 @@
66
67 src_unpack() {
68 unpack ${A}
69 - ht_fix_file "${S}/configure"
70 + cd "${S}"
71 find \( -name Makefile.in -o -name Makefile \) -exec \
72 sed -e "s:\(^CC[[:space:]]=\).*:\1 $(tc-getCC):" \
73 -e "s:\(^LDFLAGS[[:space:]]=.*\)$:\1 ${LDFLAGS}:" \
74 -e "/^CFLAGS/{s:-I\$(GETOPT_DIR)::}" \
75 -e "s:\(^CFLAGS[[:space:]]=.*\):\1 ${CFLAGS}:" \
76 -i '{}' \;
77 + epatch "${FILESDIR}/${P}-optional-geoip.patch"
78 + eautoreconf
79 + ht_fix_file configure
80 }
81
82 src_compile() {