# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-1.3.22_p4-r12.ebuild,v 1.2 2005/07/24 10:53:28 azarah Exp $ inherit flag-o-matic eutils DESCRIPTION="A dhcp client only" HOMEPAGE="http://www.phystech.com/download/" SRC_URI="ftp://ftp.phystech.com/pub/${P/_p/-pl}.tar.gz http://dev.gentoo.org/~drobbins/${P}.diff.bz2 http://dev.gentoo.org/~drobbins/${P}-keepCacheAndResolv.diff.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="build static" DEPEND="" PROVIDE="virtual/dhcpc" S=${WORKDIR}/${P/_p/-pl} src_unpack() { unpack ${A} cd "${S}" #Started working on this patch from an older version I found; then #discovered that LFS had an updated one. We're using a patch that is #identical to theirs. It makes dhcpcd FHS-compliant. (drobbins, 06 #Sep 2003) epatch "${DISTDIR}"/${P}.diff.bz2 #This next patch from Alwyn Schoeman is great; #it adds a -z (shutdown, keep cache) and various other little tweaks. #See http://bugs.gentoo.org/show_bug.cgi?id=23428 for more info. epatch "${DISTDIR}"/${P}-keepCacheAndResolv.diff.bz2 #This patch remove the iface down instruction from dhcpcd allowing us #to have physical iface scripts (gmsoft, 11 Nov 2003) epatch "${FILESDIR}"/${P}-no-iface-down.diff #remove hard-coded arch stuff (drobbins, 06 Sep 2003) sed -i "s/ -march=i.86//g" configure sed -i 's:/etc/ntp\.drift:/var/lib/ntp/ntp.drift:' dhcpconfig.c # Add route metric option -m - fixes #76694 thanks to Andy Dustman epatch "${FILESDIR}"/${P}-routemetric.patch # man page buglet caused by drobbins patch - fixes #78839 epatch "${FILESDIR}"/${P}-man.patch # Allow dhcpcd to use the FQDN option - fixes #64307 epatch "${FILESDIR}"/${P}-optionFQDN.patch # Make dhcpcd mirror baselayout-1.11.x /etc/{resolv,ntp,yp}.conf files # Also enables the -e option to specify the /etc dir where dhcpcd # creates {resolv,ntp,yp}.conf epatch "${FILESDIR}"/${P}-gentoo-config.patch # Stop a possible DoS issue - fixes #98394 epatch "${FILESDIR}"/${P}-security.patch # Fix compiling on gcc2 epatch "${FILESDIR}"/${P}-gcc2.patch # Make sure we use paths from configure rather than hardcoded crap sed -i \ -e '/^mandir/s:=.*:=@mandir@:' \ -e "/^docdir/s:=.*:=@datadir@/doc/${PF}:" \ Makefile.in || die # Brand dhcpcd with the gentoo version sed -i '/^#define VERSION/s/"$/-gentoo-'"${PR}"'"/' dhcpcd.h sed -i '/^DHCPCD_REL=/s/$/-gentoo-'"${PR}"'/' configure } src_compile() { use static && append-flags -static append-flags -DDRAFT_OPTION_FQDN econf --prefix=/ || die emake || die } src_install() { make install DESTDIR="${D}" || die "Install failed" rm -r "${D}"/etc if ! use build ; then dodoc AUTHORS ChangeLog NEWS README else rm -r "${D}"/usr/share fi }