diff options
author | 2006-12-09 13:03:17 +0000 | |
---|---|---|
committer | 2006-12-09 13:03:17 +0000 | |
commit | eecab7a6a5710870a4fab597eeb627e307bc8459 (patch) | |
tree | 2a87a2af26b7f8d587c290ce3361c7d4bc7ea236 /net-misc/ipv6calc | |
parent | Block on dev-java/ant-optional because some people still seem to have it. If ... (diff) | |
download | gentoo-2-eecab7a6a5710870a4fab597eeb627e307bc8459.tar.gz gentoo-2-eecab7a6a5710870a4fab597eeb627e307bc8459.tar.bz2 gentoo-2-eecab7a6a5710870a4fab597eeb627e307bc8459.zip |
Bump to 0.51; thanks to Brad Allen; bug 126699
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'net-misc/ipv6calc')
-rw-r--r-- | net-misc/ipv6calc/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/ipv6calc/files/digest-ipv6calc-0.51 | 3 | ||||
-rw-r--r-- | net-misc/ipv6calc/ipv6calc-0.51.ebuild | 34 |
3 files changed, 44 insertions, 1 deletions
diff --git a/net-misc/ipv6calc/ChangeLog b/net-misc/ipv6calc/ChangeLog index 6c0f2ce571a1..25c790238e88 100644 --- a/net-misc/ipv6calc/ChangeLog +++ b/net-misc/ipv6calc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/ipv6calc # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.12 2006/06/25 13:20:23 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.13 2006/12/09 13:03:17 masterdriverz Exp $ + +*ipv6calc-0.51 (09 Dec 2006) + + 09 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org> + +ipv6calc-0.51.ebuild: + Bump to 0.51; thanks to Brad Allen; bug 126699 25 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> ipv6calc-0.50.ebuild: diff --git a/net-misc/ipv6calc/files/digest-ipv6calc-0.51 b/net-misc/ipv6calc/files/digest-ipv6calc-0.51 new file mode 100644 index 000000000000..2d7a1048f21d --- /dev/null +++ b/net-misc/ipv6calc/files/digest-ipv6calc-0.51 @@ -0,0 +1,3 @@ +MD5 c08c77712854ef3ba17f129a84d73ee2 ipv6calc-0.51.tar.gz 410846 +RMD160 40d1b6a889f02064db3355876ff0c300b057739d ipv6calc-0.51.tar.gz 410846 +SHA256 c15a971d5452de29cd2e4b9f26efa276814a673b05a66cd0f2631ff1cb0dcffc ipv6calc-0.51.tar.gz 410846 diff --git a/net-misc/ipv6calc/ipv6calc-0.51.ebuild b/net-misc/ipv6calc/ipv6calc-0.51.ebuild new file mode 100644 index 000000000000..e0698a0433bb --- /dev/null +++ b/net-misc/ipv6calc/ipv6calc-0.51.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2006 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.1 2006/12/09 13:03:17 masterdriverz 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="ppc x86" + +IUSE="" + +DEPEND="virtual/libc" + +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 +} |