diff options
author | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2012-10-28 09:07:49 +0000 |
---|---|---|
committer | Bjarke Istrup Pedersen <gurligebis@gentoo.org> | 2012-10-28 09:07:49 +0000 |
commit | 228bfa942f49aacec37f240a99bf68a134d5678f (patch) | |
tree | 6f6780deecdea00bc1e424759df33add057f0bbd /net-wireless/wpa_supplicant | |
parent | Set QA_PREBUILT as all installed files are precompiled. (diff) | |
download | gentoo-2-228bfa942f49aacec37f240a99bf68a134d5678f.tar.gz gentoo-2-228bfa942f49aacec37f240a99bf68a134d5678f.tar.bz2 gentoo-2-228bfa942f49aacec37f240a99bf68a134d5678f.zip |
Removing debug USE flag (bug #439870) and making building verbose (bug #438256)
(Portage version: 2.2.0_alpha142/cvs/Linux i686, signed Manifest commit with key 15AE484C)
Diffstat (limited to 'net-wireless/wpa_supplicant')
-rw-r--r-- | net-wireless/wpa_supplicant/ChangeLog | 6 | ||||
-rw-r--r-- | net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-wireless/wpa_supplicant/ChangeLog b/net-wireless/wpa_supplicant/ChangeLog index b1b01f0aaea2..0ef004713886 100644 --- a/net-wireless/wpa_supplicant/ChangeLog +++ b/net-wireless/wpa_supplicant/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-wireless/wpa_supplicant # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v 1.185 2012/10/05 21:16:20 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v 1.186 2012/10/28 09:07:49 gurligebis Exp $ + + 28 Oct 2012; <gurligebis@gentoo.org> wpa_supplicant-1.0-r1.ebuild: + Removing debug USE flag (bug #439870) and making building verbose (bug + #438256) 05 Oct 2012; <gurligebis@gentoo.org> wpa_supplicant-1.0-r1.ebuild: Fixing bug caused by enabling wimax, making patch fail, fixing #437240 diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild index ce182be66179..2d1cb7dfea42 100644 --- a/net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild +++ b/net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild,v 1.2 2012/10/05 21:16:20 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-1.0-r1.ebuild,v 1.3 2012/10/28 09:07:49 gurligebis Exp $ EAPI=4 @@ -13,7 +13,7 @@ LICENSE="|| ( GPL-2 BSD )" SLOT="0" KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd" -IUSE="dbus debug gnutls eap-sim fasteap madwifi ps3 qt4 readline selinux ssl wimax wps kernel_linux kernel_FreeBSD" +IUSE="dbus gnutls eap-sim fasteap madwifi ps3 qt4 readline selinux ssl wimax wps kernel_linux kernel_FreeBSD" REQUIRED_USE="fasteap? ( !gnutls !ssl )" RDEPEND="dbus? ( sys-apps/dbus ) @@ -130,9 +130,8 @@ src_configure() { echo "CONFIG_CTRL_IFACE_DBUS_INTRO=y" >> .config fi - if use debug ; then - echo "CONFIG_DEBUG_FILE=y" >> .config - fi + # Enable support for writing debug info to a log file. + echo "CONFIG_DEBUG_FILE=y" >> .config if use eap-sim ; then # Smart card authentication @@ -216,7 +215,7 @@ src_configure() { src_compile() { einfo "Building wpa_supplicant" - emake + emake V=1 if use wimax; then emake -C ../src/eap_peer clean |