blob: 2b715698bfc3edaee1defd71e2ea35c71f00a5c9 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# 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.8 2012/08/04 09:46:14 ago Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
inherit eutils distutils libtool toolchain-funcs
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 static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
python? ( dev-python/setuptools )"
S=${WORKDIR}/${MY_P}
PYTHON_MODNAME="cracklib.py"
do_python() {
use python || return 0
case ${EBUILD_PHASE} in
prepare|configure|compile|install)
pushd python > /dev/null || die
distutils_src_${EBUILD_PHASE}
popd > /dev/null
;;
*)
distutils_pkg_${EBUILD_PHASE}
;;
esac
}
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
use python && python_pkg_setup
}
src_prepare() {
elibtoolize #269003
do_python
}
src_configure() {
export ac_cv_header_zlib_h=$(usex zlib)
export ac_cv_search_gzopen=$(usex zlib -lz no)
econf \
--with-default-dict='$(libdir)/cracklib_dict' \
--without-python \
$(use_enable nls) \
$(use_enable static-libs static)
}
src_compile() {
default
do_python
}
src_install() {
emake DESTDIR="${D}" install || die
use static-libs || find "${ED}"/usr -name libcrack.la -delete
rm -r "${ED}"/usr/share/cracklib
do_python
# move shared libs to /
gen_usr_ldscript -a crack
insinto /usr/share/dict
doins dicts/cracklib-small || die
dodoc AUTHORS ChangeLog NEWS README*
}
pkg_postinst() {
if [[ ${ROOT} == "/" ]] ; then
ebegin "Regenerating cracklib dictionary"
create-cracklib-dict /usr/share/dict/* > /dev/null
eend $?
fi
do_python
}
pkg_postrm() {
do_python
}
|