diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-14 00:09:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-14 00:09:54 +0000 |
commit | 27fa9fe566a44305caa39fafc45d9d8515c8edef (patch) | |
tree | 049d2df299d2aed881c7d40b66f1165d74549675 /sys-libs | |
parent | virtual/x11 is needed at compile-time (diff) | |
download | gentoo-2-27fa9fe566a44305caa39fafc45d9d8515c8edef.tar.gz gentoo-2-27fa9fe566a44305caa39fafc45d9d8515c8edef.tar.bz2 gentoo-2-27fa9fe566a44305caa39fafc45d9d8515c8edef.zip |
add support for USE=nls to fix uClibc systems #109143 by Jens Pranaitis
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/cracklib/cracklib-2.8.5.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys-libs/cracklib/cracklib-2.8.5.ebuild b/sys-libs/cracklib/cracklib-2.8.5.ebuild index 30056b676556..000232815ab0 100644 --- a/sys-libs/cracklib/cracklib-2.8.5.ebuild +++ b/sys-libs/cracklib/cracklib-2.8.5.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/sys-libs/cracklib/cracklib-2.8.5.ebuild,v 1.1 2005/10/06 22:53:43 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.5.ebuild,v 1.2 2005/10/14 00:09:54 vapier Exp $ inherit eutils toolchain-funcs multilib @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/cracklib/${MY_P}.tar.gz" LICENSE="CRACKLIB" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="python" +IUSE="nls python" DEPEND="" @@ -26,7 +26,10 @@ src_unpack() { } src_compile() { - econf $(use_with python) || die + econf \ + $(use_enable nls) \ + $(use_with python) \ + || die emake || die } @@ -34,9 +37,6 @@ src_install() { make DESTDIR="${D}" install || die "make install failed" rm -r "${D}"/usr/share/cracklib - insinto /usr/include - doins lib/packer.h || die "doins packer.h" - # move shared libs to / dodir /$(get_libdir) mv "${D}"/usr/$(get_libdir)/*.so* "${D}"/$(get_libdir)/ || die "could not move shared" |