diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-11-04 01:03:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-11-04 01:03:01 +0000 |
commit | f0bc15530e0ce8056dcec5ba91d1aeca62ca6e78 (patch) | |
tree | 42a5d81d357c6ccb6b70fbc1df5e17ccdab7ac54 /net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild | |
parent | openssl compile fix #31120 (diff) | |
download | gentoo-2-f0bc15530e0ce8056dcec5ba91d1aeca62ca6e78.tar.gz gentoo-2-f0bc15530e0ce8056dcec5ba91d1aeca62ca6e78.tar.bz2 gentoo-2-f0bc15530e0ce8056dcec5ba91d1aeca62ca6e78.zip |
ntp drift fix #32490
Diffstat (limited to 'net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild')
-rw-r--r-- | net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild b/net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild deleted file mode 100644 index 2ab7e11739b5..000000000000 --- a/net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-1.3.22_p4-r1.ebuild,v 1.10 2003/10/19 09:26:36 mholzer Exp $ - -inherit gnuconfig 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="x86 ppc sparc alpha hppa arm mips amd64 ia64" -IUSE="build static" - -DEPEND="virtual/glibc" - -S=${WORKDIR}/${P/_p/-pl} - -src_unpack() { - unpack ${A} || die "unpack failed" - use alpha && gnuconfig_update - use amd64 && gnuconfig_update - use hppa && gnuconfig_update - use ia64 && gnuconfig_update - - 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 <alwyn@smart.com.ph> 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 - #remove hard-coded arch stuff (drobbins, 06 Sep 2003) - sed -i "s/ -march=i.86//g" configure -} - -src_compile() { - use static && append-flags -static - - ./configure --prefix="" --sysconfdir=/var/lib --mandir=/usr/share/man || die - emake || die -} - -src_install() { - einstall sbindir=${D}/sbin || die "Install failed" - if [ -z "`use build`" ] - then - dodoc AUTHORS COPYING ChangeLog NEWS README - else - rm -rf ${D}/usr/share - fi -} |