diff options
Diffstat (limited to 'net-misc/dhcpcd/dhcpcd-2.0.8.ebuild')
-rw-r--r-- | net-misc/dhcpcd/dhcpcd-2.0.8.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/net-misc/dhcpcd/dhcpcd-2.0.8.ebuild b/net-misc/dhcpcd/dhcpcd-2.0.8.ebuild deleted file mode 100644 index e6f0d08517a7..000000000000 --- a/net-misc/dhcpcd/dhcpcd-2.0.8.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-2.0.8.ebuild,v 1.1 2006/07/12 14:06:27 uberlord Exp $ - -inherit flag-o-matic eutils - -DESCRIPTION="A DHCP client only" -HOMEPAGE="http://developer.berlios.de/projects/dhcpcd/" -SRC_URI="http://download.berlios.de/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="build debug static" - -DEPEND="" -PROVIDE="virtual/dhcpc" - -pkg_setup() { - if use debug ; then - ewarn "WARNING: dhcpcd will provide good debugging output with the" - ewarn "debug USE flag enabled but will not actually configure the" - ewarn "interface or setup /etc/resolv.conf" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - # Redefine the location of ntp.drift - sed -i 's:/etc/ntp\.drift:/var/lib/ntp/ntp.drift:' src/dhcpconfig.c -} - -src_compile() { - use static && append-flags -static - econf $(use_enable debug) || die - emake || die -} - -src_install() { - into / - dosbin src/dhcpcd || die - - if ! use build ; then - dodoc AUTHORS ChangeLog NEWS README - doman src/dhcpcd.8 - fi -} |