blob: 107d8014cf399d19fb27bcbc5bec889eb6b3b495 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.15.ebuild,v 1.7 2010/03/14 22:30:16 maekke Exp $
inherit eutils toolchain-funcs multilib libtool
MY_P=${P/_}
DESCRIPTION="Password Checking Library"
HOMEPAGE="http://sourceforge.net/projects/cracklib"
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"
IUSE="nls python"
DEPEND="python? ( <dev-lang/python-3 )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
# workaround #195017
if has unmerge-orphans ${FEATURES} && has_version "<${CATEGORY}/${PN}-2.8.10" ; then
eerror "Upgrade path is broken with FEATURES=unmerge-orphans"
eerror "Please run: FEATURES=-unmerge-orphans emerge cracklib"
die "Please run: FEATURES=-unmerge-orphans emerge cracklib"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-2.8.13-python-linkage.patch #246747
sed -i '/PYTHON/s:\(print\) \([^"]*\):\1(\2):' configure #302908
elibtoolize #269003
}
src_compile() {
econf \
--with-default-dict='$(libdir)/cracklib_dict' \
$(use_enable nls) \
$(use_with python) \
|| die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
rm -r "${D}"/usr/share/cracklib
# move shared libs to /
gen_usr_ldscript -a crack
insinto /usr/share/dict
doins dicts/cracklib-small || die "word dict"
dodoc AUTHORS ChangeLog NEWS README*
}
pkg_postinst() {
if [[ ${ROOT} == "/" ]] ; then
ebegin "Regenerating cracklib dictionary"
create-cracklib-dict /usr/share/dict/* > /dev/null
eend $?
fi
}
|