diff options
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/dhcpcd/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/dhcpcd/dhcpcd-2.0.0.ebuild | 12 |
2 files changed, 15 insertions, 3 deletions
diff --git a/net-misc/dhcpcd/ChangeLog b/net-misc/dhcpcd/ChangeLog index aea7dbd34b7b..eacb766b07db 100644 --- a/net-misc/dhcpcd/ChangeLog +++ b/net-misc/dhcpcd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/dhcpcd # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.63 2005/09/03 20:59:17 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.64 2005/09/06 16:29:15 uberlord Exp $ + + 06 Sep 2005; Roy Marples <uberlord@gentoo.org> dhcpcd-2.0.0.ebuild: + Warn that the debug USE flag enables good debug output but does + not actually configure the interface or setup /etc/resolv.conf 03 Sep 2005; Markus Rothe <corsair@gentoo.org> dhcpcd-2.0.0.ebuild: Stable on ppc64 diff --git a/net-misc/dhcpcd/dhcpcd-2.0.0.ebuild b/net-misc/dhcpcd/dhcpcd-2.0.0.ebuild index ee21f96e9ad7..df8f793086c4 100644 --- a/net-misc/dhcpcd/dhcpcd-2.0.0.ebuild +++ b/net-misc/dhcpcd/dhcpcd-2.0.0.ebuild @@ -1,6 +1,6 @@ # 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-2.0.0.ebuild,v 1.11 2005/09/03 20:59:17 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-2.0.0.ebuild,v 1.12 2005/09/06 16:29:15 uberlord Exp $ inherit flag-o-matic eutils @@ -16,8 +16,16 @@ 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} + unpack "${A}" cd "${S}" # Fix compiling on gcc2 |