summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2004-07-13 15:29:30 +0000
committerMichael Imhof <tantive@gentoo.org>2004-07-13 15:29:30 +0000
commit10f5382ba8f05cc39c3d201dc6a43e1d03594fc7 (patch)
tree5fe22e095af23e0130be8dfd98371386cfe5143a /net-misc/selfdhcp
parentAdded SRC_URI for 1.4-full version to pull in the GOTY maps. (diff)
downloadhistorical-10f5382ba8f05cc39c3d201dc6a43e1d03594fc7.tar.gz
historical-10f5382ba8f05cc39c3d201dc6a43e1d03594fc7.tar.bz2
historical-10f5382ba8f05cc39c3d201dc6a43e1d03594fc7.zip
Initial import. Closes #45407.
Diffstat (limited to 'net-misc/selfdhcp')
-rw-r--r--net-misc/selfdhcp/ChangeLog9
-rw-r--r--net-misc/selfdhcp/Manifest3
-rw-r--r--net-misc/selfdhcp/files/digest-selfdhcp-0.21
-rw-r--r--net-misc/selfdhcp/selfdhcp-0.2.ebuild31
4 files changed, 44 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..68b7afb48895
--- /dev/null
+++ b/net-misc/selfdhcp/Manifest
@@ -0,0 +1,3 @@
+MD5 0ae7bbc99fa8360bce9cb487d10fdb8c selfdhcp-0.2.ebuild 658
+MD5 11d6abd3d0647d3dd8e331f109f89d12 ChangeLog 343
+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
+ }