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
Date: Thu, 25 Dec 2008 13:48:28
Message-Id: E1LFqZP-0002b5-VL@stork.gentoo.org
1 pva 08/12/25 13:48:11
2
3 Modified: ChangeLog
4 Added: ipv6calc-0.72.0.ebuild
5 Log:
6 Version bump. Respect {C,LD}FLAGS, CC and etc, bug #241068, thank Diego E. 'Flameeyes' Pettenò fore report.
7 (Portage version: 2.2_rc17/cvs/Linux 2.6.26-openvz.git-89451f9 i686)
8
9 Revision Changes Path
10 1.20 net-misc/ipv6calc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 4 Nov 2007 19:45:58 -0000 1.19
23 +++ ChangeLog 25 Dec 2008 13:48:11 -0000 1.20
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/ipv6calc
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.19 2007/11/04 19:45:58 angelos Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.20 2008/12/25 13:48:11 pva Exp $
30 +
31 +*ipv6calc-0.72.0 (25 Dec 2008)
32 +
33 + 25 Dec 2008; Peter Volkov <pva@g.o> +ipv6calc-0.72.0.ebuild:
34 + Version bump. Respect {C,LD}FLAGS, CC and etc, bug #241068, thank Diego E.
35 + 'Flameeyes' Pettenò fore report.
36
37 04 Nov 2007; Christoph Mende <angelos@g.o> ipv6calc-0.51.ebuild:
38 Stable on amd64
39
40
41
42 1.1 net-misc/ipv6calc/ipv6calc-0.72.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ipv6calc-0.72.0.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.72.0.ebuild,v 1.1 2008/12/25 13:48:11 pva Exp $
52
53 inherit fixheadtails toolchain-funcs
54
55 DESCRIPTION="IPv6 address calculator"
56 HOMEPAGE="http://www.deepspace6.net/projects/ipv6calc.html"
57 SRC_URI="ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
62 IUSE="geoip"
63
64 DEPEND="geoip? ( >=dev-libs/geoip-1.4.1 )"
65
66 src_unpack() {
67 unpack ${A}
68 ht_fix_file "${S}/configure"
69 find \( -name Makefile.in -o -name Makefile \) -exec \
70 sed -e "s:\(^CC[[:space:]]=\).*:\1 $(tc-getCC):" \
71 -e "s:\(^LDFLAGS[[:space:]]=.*\)$:\1 ${LDFLAGS}:" \
72 -e "/^CFLAGS/{s:-I\$(GETOPT_DIR)::}" \
73 -e "s:\(^CFLAGS[[:space:]]=.*\):\1 ${CFLAGS}:" \
74 -i '{}' \;
75 }
76
77 src_compile() {
78 econf $(use_enable geoip)
79 emake || die "emake failed"
80 }
81
82 src_install() {
83 make root="${D}" install || die "make install failed"
84 dodoc ChangeLog CREDITS README TODO USAGE || die
85 }