diff options
author | Rick Farina <zerochaos@gentoo.org> | 2012-10-22 01:02:27 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2012-10-22 01:02:27 +0000 |
commit | deedb7bd26670aefa4bf6f0a5c57cd1461c53720 (patch) | |
tree | c7cde055efe58c27d4500c51dd683bdefd23e21a /sys-libs/cracklib | |
parent | drop dead patches from the files directory (diff) | |
download | gentoo-2-deedb7bd26670aefa4bf6f0a5c57cd1461c53720.tar.gz gentoo-2-deedb7bd26670aefa4bf6f0a5c57cd1461c53720.tar.bz2 gentoo-2-deedb7bd26670aefa4bf6f0a5c57cd1461c53720.zip |
catalyst stage1 build with python enabled breaks so we add a build use flag to prevent adding python support too early
(Portage version: 2.1.11.29/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'sys-libs/cracklib')
-rw-r--r-- | sys-libs/cracklib/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/cracklib/cracklib-2.8.19.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sys-libs/cracklib/ChangeLog b/sys-libs/cracklib/ChangeLog index e627f03b41bd..c588436624b6 100644 --- a/sys-libs/cracklib/ChangeLog +++ b/sys-libs/cracklib/ChangeLog @@ -1,6 +1,10 @@ # 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.172 2012/08/26 17:23:41 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/ChangeLog,v 1.173 2012/10/22 01:02:27 zerochaos Exp $ + + 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 + prevent adding python support too early 26 Aug 2012; Raúl Porcel <armin76@gentoo.org> cracklib-2.8.19.ebuild: alpha/ia64/m68k/s390/sh/sparc stable wrt #427132 diff --git a/sys-libs/cracklib/cracklib-2.8.19.ebuild b/sys-libs/cracklib/cracklib-2.8.19.ebuild index 7fe2f9d130e7..16806a7dca5d 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.10 2012/08/26 17:23:41 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.19.ebuild,v 1.11 2012/10/22 01:02:27 zerochaos Exp $ EAPI="3" PYTHON_DEPEND="python? 2" @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/cracklib/${MY_P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint" -IUSE="nls python static-libs zlib" +IUSE="build nls python static-libs zlib" RDEPEND="zlib? ( sys-libs/zlib )" DEPEND="${RDEPEND} @@ -27,6 +27,7 @@ S=${WORKDIR}/${MY_P} PYTHON_MODNAME="cracklib.py" do_python() { + use build && return 0 use python || return 0 case ${EBUILD_PHASE} in prepare|configure|compile|install) |