diff options
author | Rick Farina <zerochaos@gentoo.org> | 2012-10-31 20:49:42 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2012-10-31 20:49:42 +0000 |
commit | 2b07df6aefa21cb5c9989a1e2b77eb946dfe379d (patch) | |
tree | 4571da54c8899f4c9f9213baf423aa839ed97f35 /sys-libs/cracklib | |
parent | Restore EAPI 0 ebuild to provide an upgrade path for old systems, bug 440158. (diff) | |
download | gentoo-2-2b07df6aefa21cb5c9989a1e2b77eb946dfe379d.tar.gz gentoo-2-2b07df6aefa21cb5c9989a1e2b77eb946dfe379d.tar.bz2 gentoo-2-2b07df6aefa21cb5c9989a1e2b77eb946dfe379d.zip |
last fix for USE=build bootstrapping, missed a line on the previous commit
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'sys-libs/cracklib')
-rw-r--r-- | sys-libs/cracklib/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/cracklib/cracklib-2.8.19.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sys-libs/cracklib/ChangeLog b/sys-libs/cracklib/ChangeLog index c588436624b6..c3125fdfebfa 100644 --- a/sys-libs/cracklib/ChangeLog +++ b/sys-libs/cracklib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/cracklib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.173 2012/10/22 01:02:27 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.174 2012/10/31 20:49:42 zerochaos Exp $ + + 31 Oct 2012; Rick Farina <zerochaos@gentoo.org> cracklib-2.8.19.ebuild: + last fix for USE=build bootstrapping, missed a line on the previous commit 22 Oct 2012; Rick Farina <zerochaos@gentoo.org> cracklib-2.8.19.ebuild: catalyst stage1 build with python enabled breaks so we add a build use flag to diff --git a/sys-libs/cracklib/cracklib-2.8.19.ebuild b/sys-libs/cracklib/cracklib-2.8.19.ebuild index 16806a7dca5d..f25013bb64bb 100644 --- a/sys-libs/cracklib/cracklib-2.8.19.ebuild +++ b/sys-libs/cracklib/cracklib-2.8.19.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/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.11 2012/10/22 01:02:27 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.12 2012/10/31 20:49:42 zerochaos Exp $ EAPI="3" PYTHON_DEPEND="python? 2" @@ -49,7 +49,9 @@ pkg_setup() { die "Please run: FEATURES=-unmerge-orphans emerge cracklib" fi - use python && python_pkg_setup + if use !build; then + use python && python_pkg_setup + fi } src_prepare() { |