summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/udhcp/udhcp-0.9.8-r2.ebuild')
-rw-r--r--net-misc/udhcp/udhcp-0.9.8-r2.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/net-misc/udhcp/udhcp-0.9.8-r2.ebuild b/net-misc/udhcp/udhcp-0.9.8-r2.ebuild
deleted file mode 100644
index 7941527d9d8d..000000000000
--- a/net-misc/udhcp/udhcp-0.9.8-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/udhcp-0.9.8-r2.ebuild,v 1.4 2004/07/01 22:06:12 squinky86 Exp $
-
-inherit eutils
-
-IUSE=""
-DESCRIPTION="udhcp Server/Client Package"
-HOMEPAGE="http://udhcp.busybox.net/"
-SRC_URI="http://udhcp.busybox.net/source/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc amd64"
-
-DEPEND="virtual/libc"
-PROVIDE="virtual/dhcpc"
-
-pkg_setup() {
- enewgroup dhcp
- enewuser dhcp -1 /bin/false /var/lib/dhcp dhcp
-}
-
-src_compile() {
- emake SYSLOG=1 || die
-}
-
-src_install() {
- dodir /usr/sbin /usr/bin /sbin
-
- insinto /etc
- doins samples/udhcpd.conf
-
- make prefix=${D}/usr SBINDIR=${D}/sbin install || die
-
- dodoc AUTHORS COPYING ChangeLog README* TODO
-
- insinto /usr/share/udhcpc
- doins samples/*
-}