summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Marples <uberlord@gentoo.org>2006-04-21 19:12:14 +0000
committerRoy Marples <uberlord@gentoo.org>2006-04-21 19:12:14 +0000
commitd99347a5e44c7e0af0782bf38de273df4002aea7 (patch)
tree8d94de38da11f052619a9a8dca7341cddab71308 /net-misc
parentspamassassin --lint for german locale fix. (diff)
downloadgentoo-2-d99347a5e44c7e0af0782bf38de273df4002aea7.tar.gz
gentoo-2-d99347a5e44c7e0af0782bf38de273df4002aea7.tar.bz2
gentoo-2-d99347a5e44c7e0af0782bf38de273df4002aea7.zip
Punt old versions
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/dhcpcd/dhcpcd-2.0.1.ebuild51
-rw-r--r--net-misc/dhcpcd/dhcpcd-2.0.2.ebuild51
-rw-r--r--net-misc/dhcpcd/dhcpcd-2.0.4-r1.ebuild54
-rw-r--r--net-misc/dhcpcd/dhcpcd-2.0.4.ebuild51
-rw-r--r--net-misc/dhcpcd/files/dhcpcd-2.0.4-exit.patch23
-rw-r--r--net-misc/dhcpcd/files/digest-dhcpcd-2.0.11
-rw-r--r--net-misc/dhcpcd/files/digest-dhcpcd-2.0.23
-rw-r--r--net-misc/dhcpcd/files/digest-dhcpcd-2.0.43
-rw-r--r--net-misc/dhcpcd/files/digest-dhcpcd-2.0.4-r13
9 files changed, 0 insertions, 240 deletions
diff --git a/net-misc/dhcpcd/dhcpcd-2.0.1.ebuild b/net-misc/dhcpcd/dhcpcd-2.0.1.ebuild
deleted file mode 100644
index f8af95300f08..000000000000
--- a/net-misc/dhcpcd/dhcpcd-2.0.1.ebuild
+++ /dev/null
@@ -1,51 +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.1.ebuild,v 1.1 2006/01/22 01:25:56 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() {
- local myconf="$( use_enable debug )"
- use static && append-flags -static
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- into /
- dosbin src/dhcpcd || die
-
- if ! use build ; then
- dodoc AUTHORS ChangeLog NEWS README
- doman src/dhcpcd.8
- fi
-}
diff --git a/net-misc/dhcpcd/dhcpcd-2.0.2.ebuild b/net-misc/dhcpcd/dhcpcd-2.0.2.ebuild
deleted file mode 100644
index f45428a6c7b5..000000000000
--- a/net-misc/dhcpcd/dhcpcd-2.0.2.ebuild
+++ /dev/null
@@ -1,51 +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.2.ebuild,v 1.9 2006/03/05 03:55:24 vapier 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() {
- local myconf="$(use_enable debug)"
- use static && append-flags -static
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- into /
- dosbin src/dhcpcd || die
-
- if ! use build ; then
- dodoc AUTHORS ChangeLog NEWS README
- doman src/dhcpcd.8
- fi
-}
diff --git a/net-misc/dhcpcd/dhcpcd-2.0.4-r1.ebuild b/net-misc/dhcpcd/dhcpcd-2.0.4-r1.ebuild
deleted file mode 100644
index dac5efdcc9ec..000000000000
--- a/net-misc/dhcpcd/dhcpcd-2.0.4-r1.ebuild
+++ /dev/null
@@ -1,54 +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.4-r1.ebuild,v 1.1 2006/04/11 11:40:32 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}"
-
- # Return non zero when we fail to get a lease and log errors to stderr.
- epatch "${FILESDIR}/${P}-exit.patch"
-
- # Redefine the location of ntp.drift
- sed -i 's:/etc/ntp\.drift:/var/lib/ntp/ntp.drift:' src/dhcpconfig.c
-}
-
-src_compile() {
- local myconf="$(use_enable debug)"
- use static && append-flags -static
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- into /
- dosbin src/dhcpcd || die
-
- if ! use build ; then
- dodoc AUTHORS ChangeLog NEWS README
- doman src/dhcpcd.8
- fi
-}
diff --git a/net-misc/dhcpcd/dhcpcd-2.0.4.ebuild b/net-misc/dhcpcd/dhcpcd-2.0.4.ebuild
deleted file mode 100644
index d40837747fd2..000000000000
--- a/net-misc/dhcpcd/dhcpcd-2.0.4.ebuild
+++ /dev/null
@@ -1,51 +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.4.ebuild,v 1.1 2006/04/07 23:08:06 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() {
- local myconf="$(use_enable debug)"
- use static && append-flags -static
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- into /
- dosbin src/dhcpcd || die
-
- if ! use build ; then
- dodoc AUTHORS ChangeLog NEWS README
- doman src/dhcpcd.8
- fi
-}
diff --git a/net-misc/dhcpcd/files/dhcpcd-2.0.4-exit.patch b/net-misc/dhcpcd/files/dhcpcd-2.0.4-exit.patch
deleted file mode 100644
index 76daa9a17bde..000000000000
--- a/net-misc/dhcpcd/files/dhcpcd-2.0.4-exit.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/signals.c
-+++ src/signals.c
-@@ -110,7 +110,10 @@
- if ( currState == &dhcpReboot )
- siglongjmp(env,4); /* failed to acquire the same IP address */
- else
-- syslog(LOG_ERR,"timed out waiting for a valid DHCP server response\n");
-+ {
-+ syslog(LOG_ERR,"timed out waiting for a valid DHCP server response\n");
-+ fprintf(stderr,"timed out waiting for a valid DHCP server response\n");
-+ }
- }
- }
- }
-@@ -129,7 +129,7 @@
- if (!Persistent && sig != SIGTERM)
- dhcpStop();
- deletePidFile();
-- exit(0);
-+ exit(sig);
- }
- /*****************************************************************************/
- void signalSetup()
diff --git a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.1 b/net-misc/dhcpcd/files/digest-dhcpcd-2.0.1
deleted file mode 100644
index 64abbd3b212e..000000000000
--- a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c5766aafd51f581c2b2c8620b26f5e02 dhcpcd-2.0.1.tar.bz2 122474
diff --git a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.2 b/net-misc/dhcpcd/files/digest-dhcpcd-2.0.2
deleted file mode 100644
index 0840dfd0e26c..000000000000
--- a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 74ed2b738f92aeffd88da8ef1d7fb115 dhcpcd-2.0.2.tar.bz2 123225
-RMD160 f647e8dfcef5fc42ba9341e5751f780948771cd6 dhcpcd-2.0.2.tar.bz2 123225
-SHA256 9ba8e68d167d8fd3675e04e42558503323d1a5c07ad3501d1eee8a9174a22d00 dhcpcd-2.0.2.tar.bz2 123225
diff --git a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.4 b/net-misc/dhcpcd/files/digest-dhcpcd-2.0.4
deleted file mode 100644
index 3fe9cec80392..000000000000
--- a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f7918c3ac86acc325d7495328f18ef19 dhcpcd-2.0.4.tar.bz2 123701
-RMD160 3406f5bb456ea523f1045426a5bcfe6887711131 dhcpcd-2.0.4.tar.bz2 123701
-SHA256 6be201d6c664f8e6a0e1b44965bc9229b7c27421f2b0fb78ae9883364e07e79a dhcpcd-2.0.4.tar.bz2 123701
diff --git a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.4-r1 b/net-misc/dhcpcd/files/digest-dhcpcd-2.0.4-r1
deleted file mode 100644
index 3fe9cec80392..000000000000
--- a/net-misc/dhcpcd/files/digest-dhcpcd-2.0.4-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f7918c3ac86acc325d7495328f18ef19 dhcpcd-2.0.4.tar.bz2 123701
-RMD160 3406f5bb456ea523f1045426a5bcfe6887711131 dhcpcd-2.0.4.tar.bz2 123701
-SHA256 6be201d6c664f8e6a0e1b44965bc9229b7c27421f2b0fb78ae9883364e07e79a dhcpcd-2.0.4.tar.bz2 123701