diff options
author | William Hubbs <williamh@gentoo.org> | 2013-08-16 05:59:09 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2013-08-16 05:59:09 +0000 |
commit | b01431cd6c3339c72201b8b4429824e58ede740c (patch) | |
tree | 77ef1f0f9b8dd0dae94512b5ad58cfd4c6b03914 /net-misc/dhcpcd | |
parent | sys-kernel/aufs-sources: Bump to latest genpatches/Linux releases (diff) | |
download | gentoo-2-b01431cd6c3339c72201b8b4429824e58ede740c.tar.gz gentoo-2-b01431cd6c3339c72201b8b4429824e58ede740c.tar.bz2 gentoo-2-b01431cd6c3339c72201b8b4429824e58ede740c.zip |
add support for ipv6 use flag for bug #481134 and sync live ebuild.
(Portage version: 2.2.0/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'net-misc/dhcpcd')
-rw-r--r-- | net-misc/dhcpcd/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/dhcpcd/dhcpcd-6.0.5.ebuild | 5 | ||||
-rw-r--r-- | net-misc/dhcpcd/dhcpcd-9999.ebuild | 10 |
3 files changed, 16 insertions, 5 deletions
diff --git a/net-misc/dhcpcd/ChangeLog b/net-misc/dhcpcd/ChangeLog index cd1956e7876f..9105ac45da66 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.366 2013/08/02 22:08:34 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.367 2013/08/16 05:59:09 williamh Exp $ + + 16 Aug 2013; William Hubbs <williamh@gentoo.org> dhcpcd-6.0.5.ebuild, + dhcpcd-9999.ebuild: + add support for ipv6 use flag for bug #481134 and sync live ebuild. 02 Aug 2013; William Hubbs <williamh@gentoo.org> dhcpcd-6.0.5.ebuild: Add messages for bug #477356. diff --git a/net-misc/dhcpcd/dhcpcd-6.0.5.ebuild b/net-misc/dhcpcd/dhcpcd-6.0.5.ebuild index 8eb72db79a73..812dbe525260 100644 --- a/net-misc/dhcpcd/dhcpcd-6.0.5.ebuild +++ b/net-misc/dhcpcd/dhcpcd-6.0.5.ebuild @@ -1,6 +1,6 @@ # 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-6.0.5.ebuild,v 1.3 2013/08/02 22:08:34 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.0.5.ebuild,v 1.4 2013/08/16 05:59:09 williamh Exp $ EAPI=5 @@ -22,7 +22,7 @@ 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" +IUSE="elibc_glibc ipv6" DEPEND="" RDEPEND="" @@ -41,6 +41,7 @@ src_configure() --libexecdir="${EPREFIX}/lib/dhcpcd" \ --dbdir="${EPREFIX}/var/lib/dhcpcd" \ --localstatedir="${EPREFIX}/var" \ + $(use_enable ipv6) \ ${hooks} } diff --git a/net-misc/dhcpcd/dhcpcd-9999.ebuild b/net-misc/dhcpcd/dhcpcd-9999.ebuild index 8799bbd1647d..73bb639cd4a6 100644 --- a/net-misc/dhcpcd/dhcpcd-9999.ebuild +++ b/net-misc/dhcpcd/dhcpcd-9999.ebuild @@ -1,6 +1,6 @@ # 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-9999.ebuild,v 1.4 2013/06/04 01:30:38 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-9999.ebuild,v 1.5 2013/08/16 05:59:09 williamh Exp $ EAPI=5 @@ -22,7 +22,7 @@ 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" +IUSE="elibc_glibc ipv6" DEPEND="" RDEPEND="" @@ -41,6 +41,7 @@ src_configure() --libexecdir="${EPREFIX}/lib/dhcpcd" \ --dbdir="${EPREFIX}/var/lib/dhcpcd" \ --localstatedir="${EPREFIX}/var" \ + $(use_enable ipv6) \ ${hooks} } @@ -74,6 +75,11 @@ pkg_postinst() elog "file option or the -L command line switch." elog "See the dhcpcd and dhcpcd.conf man pages for more details." + elog + elog "Dhcpcd has duid enabled by default, and this may cause issues" + elog "with some dhcp servers. For more information, see" + elog "https://bugs.gentoo.org/show_bug.cgi?id=477356" + if ! has_version net-dns/bind-tools; then elog elog "If you activate the lookup-hostname hook to look up your hostname" |