diff options
author | Michael Imhof <tantive@gentoo.org> | 2004-07-13 15:29:30 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2004-07-13 15:29:30 +0000 |
commit | 9c5f01161b118bb8adb439aa5c76199803fa3f2f (patch) | |
tree | b6274e5642255dc4df9a2fdf67d3cafa87b25973 /net-misc/selfdhcp | |
parent | Added SRC_URI for 1.4-full version to pull in the GOTY maps. (Manifest recommit) (diff) | |
download | gentoo-2-9c5f01161b118bb8adb439aa5c76199803fa3f2f.tar.gz gentoo-2-9c5f01161b118bb8adb439aa5c76199803fa3f2f.tar.bz2 gentoo-2-9c5f01161b118bb8adb439aa5c76199803fa3f2f.zip |
Initial import. Closes #45407.
Diffstat (limited to 'net-misc/selfdhcp')
-rw-r--r-- | net-misc/selfdhcp/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/selfdhcp/Manifest | 2 | ||||
-rw-r--r-- | net-misc/selfdhcp/files/digest-selfdhcp-0.2 | 1 | ||||
-rw-r--r-- | net-misc/selfdhcp/selfdhcp-0.2.ebuild | 31 |
4 files changed, 43 insertions, 0 deletions
diff --git a/net-misc/selfdhcp/ChangeLog b/net-misc/selfdhcp/ChangeLog new file mode 100644 index 000000000000..514f5ee3a678 --- /dev/null +++ b/net-misc/selfdhcp/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-misc/selfdhcp +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/selfdhcp/ChangeLog,v 1.1 2004/07/13 15:29:30 tantive Exp $ + +*selfdhcp-0.2 (13 Jul 2004) + + 13 Jul 2004; Michael Imhof <tantive@gentoo.org> +selfdhcp-0.2.ebuild: + Initial import. Closes #45407. + diff --git a/net-misc/selfdhcp/Manifest b/net-misc/selfdhcp/Manifest new file mode 100644 index 000000000000..2894db3729fb --- /dev/null +++ b/net-misc/selfdhcp/Manifest @@ -0,0 +1,2 @@ +MD5 298a2d766c387ef2a9916276662d771c selfdhcp-0.2.ebuild 658 +MD5 7b587bc8dd98655bf66a338fbd02c547 files/digest-selfdhcp-0.2 65 diff --git a/net-misc/selfdhcp/files/digest-selfdhcp-0.2 b/net-misc/selfdhcp/files/digest-selfdhcp-0.2 new file mode 100644 index 000000000000..c93cddbb1673 --- /dev/null +++ b/net-misc/selfdhcp/files/digest-selfdhcp-0.2 @@ -0,0 +1 @@ +MD5 4cd8d310d3d16db7cc2530627c39a992 selfdhcp-0.2.tar.bz2 350554 diff --git a/net-misc/selfdhcp/selfdhcp-0.2.ebuild b/net-misc/selfdhcp/selfdhcp-0.2.ebuild new file mode 100644 index 000000000000..ae4db09694b8 --- /dev/null +++ b/net-misc/selfdhcp/selfdhcp-0.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +#IUSE="nls" + +S=${WORKDIR}/${P} +DESCRIPTION="a small stealth network autoconfigure software." +SRC_URI="mirror://sourceforge/selfdhcp/${P}.tar.bz2" +HOMEPAGE="http://selfdhcp.sourceforge.net" +KEYWORDS="~x86 ~sparc ~ppc" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="dev-libs/popt + dev-libs/libxml2 + >=net-libs/libnet-1.0.2 + >=net-libs/libpcap-0.7" + +src_compile() { + + ./configure --prefix=/usr \ + --disable-nls || die + + emake || die +} + +src_install() { + make prefix=${D}/usr install || die + + dodoc README AUTHORS TODO THANKS BUGS NEW COPYING ChangeLog + } |