diff options
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/ipv6calc/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/ipv6calc/files/digest-ipv6calc-0.45 | 1 | ||||
-rw-r--r-- | net-misc/ipv6calc/ipv6calc-0.45.ebuild | 24 |
3 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/ipv6calc/ChangeLog b/net-misc/ipv6calc/ChangeLog new file mode 100644 index 000000000000..dda5fa11fcb5 --- /dev/null +++ b/net-misc/ipv6calc/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for sys-apps/palo +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ChangeLog,v 1.1 2003/03/20 04:44:06 gmsoft Exp $ + +*ipv6calc-0.45 (06 Mar 2003) + + 06 Mar 2003; Guy Martin <gmsoft@gentoo.org> ipv6calc-0.45.ebuild : + Initial import. Thanks to Klavs Klavsen <kl@vsen.dk> for the initial ebuild. diff --git a/net-misc/ipv6calc/files/digest-ipv6calc-0.45 b/net-misc/ipv6calc/files/digest-ipv6calc-0.45 new file mode 100644 index 000000000000..c2e6e5a613aa --- /dev/null +++ b/net-misc/ipv6calc/files/digest-ipv6calc-0.45 @@ -0,0 +1 @@ +MD5 6ce6a797fe95a9480fb2e8b09171e7fb ipv6calc-0.45.tar.gz 297967 diff --git a/net-misc/ipv6calc/ipv6calc-0.45.ebuild b/net-misc/ipv6calc/ipv6calc-0.45.ebuild new file mode 100644 index 000000000000..ce0c09b0e4f7 --- /dev/null +++ b/net-misc/ipv6calc/ipv6calc-0.45.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipv6calc/ipv6calc-0.45.ebuild,v 1.1 2003/03/20 04:44:06 gmsoft Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="ipv6calc convert a given IPv6 address to the compressed format or to the format used by /proc/net/if_inet6." +HOMEPAGE="http://www.deepspace6.net/projects/ipv6calc.html" +KEYWORDS="~x86" +SRC_URI="ftp://ftp.deepspace6.net/pub/sources/ipv6calc/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/glibc" + +src_compile() { + econf + emake || die +} + +src_install () { + # Using installonly to skip the tests scripts which are really broken + make root=${D} installonly || die + dodoc ChangeLog README TODO CREDITS LICENSE +} |