summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2013-08-22 22:00:06 +0000
committerWilliam Hubbs <williamh@gentoo.org>2013-08-22 22:00:06 +0000
commita075e5fc09fa0f31dcd8ff51123363439486eb7e (patch)
tree193cd9edf70c2f3f3e1495fbcc5572e96851ad0e /net-misc/dhcpcd
parentRemove beta. (diff)
downloadgentoo-2-a075e5fc09fa0f31dcd8ff51123363439486eb7e.tar.gz
gentoo-2-a075e5fc09fa0f31dcd8ff51123363439486eb7e.tar.bz2
gentoo-2-a075e5fc09fa0f31dcd8ff51123363439486eb7e.zip
remove an old version
(Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'net-misc/dhcpcd')
-rw-r--r--net-misc/dhcpcd/ChangeLog6
-rw-r--r--net-misc/dhcpcd/dhcpcd-5.99.7-r1.ebuild83
-rw-r--r--net-misc/dhcpcd/files/dhcpcd-5.99.7-fix-prefix.patch33
3 files changed, 5 insertions, 117 deletions
diff --git a/net-misc/dhcpcd/ChangeLog b/net-misc/dhcpcd/ChangeLog
index c5c9d407bd68..38b4a1574a9c 100644
--- a/net-misc/dhcpcd/ChangeLog
+++ b/net-misc/dhcpcd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/dhcpcd
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.369 2013/08/22 21:47:14 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.370 2013/08/22 22:00:06 williamh Exp $
+
+ 22 Aug 2013; William Hubbs <williamh@gentoo.org> -dhcpcd-5.99.7-r1.ebuild,
+ -files/dhcpcd-5.99.7-fix-prefix.patch:
+ remove an old version
*dhcpcd-6.0.5-r1 (22 Aug 2013)
diff --git a/net-misc/dhcpcd/dhcpcd-5.99.7-r1.ebuild b/net-misc/dhcpcd/dhcpcd-5.99.7-r1.ebuild
deleted file mode 100644
index 0275f5e617a9..000000000000
--- a/net-misc/dhcpcd/dhcpcd-5.99.7-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-5.99.7-r1.ebuild,v 1.1 2013/06/07 15:25:04 williamh Exp $
-
-EAPI=5
-
-if [[ ${PV} == "9999" ]]; then
- EGIT_REPO_URI="git://roy.marples.name/${PN}.git"
- inherit git-2
-else
- MY_P="${P/_alpha/-alpha}"
- MY_P="${MY_P/_beta/-beta}"
- MY_P="${MY_P/_rc/-rc}"
- SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
- S="${WORKDIR}/${MY_P}"
-fi
-
-inherit eutils systemd
-
-DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
-HOMEPAGE="http://roy.marples.name/projects/dhcpcd/"
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="elibc_glibc"
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare()
-{
- epatch "${FILESDIR}"/${P}-fix-prefix.patch
- epatch_user
-}
-
-src_configure()
-{
- local hooks="--with-hook=ntp.conf"
- use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
- econf \
- --prefix="${EPREFIX}" \
- --libexecdir="${EPREFIX}/lib/dhcpcd" \
- --dbdir="${EPREFIX}/var/lib/dhcpcd" \
- --localstatedir="${EPREFIX}/var" \
- ${hooks}
-}
-
-src_install()
-{
- default
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- systemd_dounit "${FILESDIR}"/${PN}.service
-}
-
-pkg_postinst()
-{
- # Upgrade the duid file to the new format if needed
- local old_duid="${ROOT}"/var/lib/dhcpcd/dhcpcd.duid
- local new_duid="${ROOT}"/etc/dhcpcd.duid
- if [ -e "${old_duid}" ] && ! grep -q '..:..:..:..:..:..' "${old_duid}"; then
- sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_duid}"
- fi
-
- # Move the duid to /etc, a more sensible location
- if [ -e "${old_duid}" -a ! -e "${new_duid}" ]; then
- cp -p "${old_duid}" "${new_duid}"
- fi
-
- elog
- elog "dhcpcd has zeroconf support active by default."
- elog "This means it will always obtain an IP address even if no"
- elog "DHCP server can be contacted, which will break any existing"
- elog "failover support you may have configured in your net configuration."
- elog "This behaviour can be controlled with the noipv4ll configuration"
- elog "file option or the -L command line switch."
- elog "See the dhcpcd and dhcpcd.conf man pages for more details."
-
- if ! has_version net-dns/bind-tools; then
- elog
- elog "If you activate the lookup-hostname hook to look up your hostname"
- elog "using the dns, you need to install net-dns/bind-tools."
- fi
-}
diff --git a/net-misc/dhcpcd/files/dhcpcd-5.99.7-fix-prefix.patch b/net-misc/dhcpcd/files/dhcpcd-5.99.7-fix-prefix.patch
deleted file mode 100644
index 05def8cca38c..000000000000
--- a/net-misc/dhcpcd/files/dhcpcd-5.99.7-fix-prefix.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 791c63ac688169ed7d0b4145dfefb2ce0c9cc7d4 Mon Sep 17 00:00:00 2001
-From: Roy Marples <roy@marples.name>
-Date: Thu, 6 Jun 2013 01:31:00 +0100
-Subject: [PATCH] Prefer --prefix over $PREFIX
-
----
- configure | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/configure b/configure
-index 896a8fe..1fe383c 100755
---- a/configure
-+++ b/configure
-@@ -36,7 +36,7 @@ for x do
- --enable-ipv4) INET=yes;;
- --disable-ipv6) INET6=no;;
- --enable-ipv6) INET6=yes;;
-- --prefix) prefix=$var;;
-+ --prefix) PREFIX=$var;;
- --sysconfdir) SYSCONFDIR=$var;;
- --bindir|--sbindir) SBINDIR=$var;;
- --libexecdir) LIBEXECDIR=$var;;
-@@ -135,7 +135,6 @@ done
- : ${SED:=sed}
-
- : ${FORK:=yes}
--: ${PREFIX:=$prefix}
- : ${SYSCONFDIR:=$PREFIX/etc}
- : ${SBINDIR:=$PREFIX/sbin}
- : ${LIBDIR:=$PREFIX/lib}
---
-1.8.1.5
-