diff options
author | Peter Volkov <pva@gentoo.org> | 2010-09-21 20:52:08 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-09-21 20:52:08 +0000 |
commit | 55a8c00dd0849841d8783dc6aa2a1cbb3ec09765 (patch) | |
tree | e33daf5c7f631391e0829174b7d6ef61e9a5ba01 /net-misc/ipv6calc | |
parent | Fix dependencies according to configure. Do not install .la files as they are... (diff) | |
download | gentoo-2-55a8c00dd0849841d8783dc6aa2a1cbb3ec09765.tar.gz gentoo-2-55a8c00dd0849841d8783dc6aa2a1cbb3ec09765.tar.bz2 gentoo-2-55a8c00dd0849841d8783dc6aa2a1cbb3ec09765.zip |
Version bump. Drop old.
(Portage version: 2.1.9.9/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/ipv6calc')
-rw-r--r-- | net-misc/ipv6calc/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/ipv6calc/ipv6calc-0.51.ebuild | 34 | ||||
-rw-r--r-- | net-misc/ipv6calc/ipv6calc-0.80.0.ebuild | 30 |
3 files changed, 38 insertions, 36 deletions
diff --git a/net-misc/ipv6calc/ChangeLog b/net-misc/ipv6calc/ChangeLog index ebaaba268159..604264e64f8f 100644 --- a/net-misc/ipv6calc/ChangeLog +++ b/net-misc/ipv6calc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/ipv6calc -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.30 2009/11/14 18:24:02 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.31 2010/09/21 20:52:08 pva Exp $ + +*ipv6calc-0.80.0 (21 Sep 2010) + + 21 Sep 2010; Peter Volkov <pva@gentoo.org> -ipv6calc-0.51.ebuild, + +ipv6calc-0.80.0.ebuild: + Version bump. Drop old. 14 Nov 2009; Raúl Porcel <armin76@gentoo.org> ipv6calc-0.73.0.ebuild: sparc stable wrt #290112 diff --git a/net-misc/ipv6calc/ipv6calc-0.51.ebuild b/net-misc/ipv6calc/ipv6calc-0.51.ebuild deleted file mode 100644 index 43b716c92a3a..000000000000 --- a/net-misc/ipv6calc/ipv6calc-0.51.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.51.ebuild,v 1.7 2009/09/23 19:38:57 patrick Exp $ - -inherit fixheadtails - -DESCRIPTION="IPv6 address calculator" -HOMEPAGE="http://www.deepspace6.net/projects/ipv6calc.html" -SRC_URI="ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa ppc sparc x86" - -IUSE="" - -DEPEND="" - -src_unpack() { - unpack ${A} - - ht_fix_file ${S}/configure -} - -src_compile() { - econf || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make root="${D}" install || die "make install failed" - - dodoc ChangeLog CREDITS README TODO USAGE -} diff --git a/net-misc/ipv6calc/ipv6calc-0.80.0.ebuild b/net-misc/ipv6calc/ipv6calc-0.80.0.ebuild new file mode 100644 index 000000000000..7a4b2a75524e --- /dev/null +++ b/net-misc/ipv6calc/ipv6calc-0.80.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.80.0.ebuild,v 1.1 2010/09/21 20:52:08 pva Exp $ + +EAPI="2" +inherit fixheadtails + +DESCRIPTION="IPv6 address calculator" +HOMEPAGE="http://www.deepspace6.net/projects/ipv6calc.html" +SRC_URI="ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="geoip" + +DEPEND="geoip? ( >=dev-libs/geoip-1.4.1 )" + +src_prepare() { + ht_fix_file configure +} + +src_configure() { + econf $(use_enable geoip) +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc ChangeLog CREDITS README TODO USAGE || die +} |