blob: d3e2b9ecd045333f5ef42353db91b8bd150979e8 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit pam eutils toolchain-funcs multilib
DESCRIPTION="Password strength checking library (and PAM module)"
HOMEPAGE="http://www.openwall.com/passwdqc/"
SRC_URI="http://www.openwall.com/${PN}/${P}.tar.gz"
LICENSE="Openwall BSD public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
IUSE="pam utils"
RDEPEND="
pam? (
sys-libs/pam
!<sys-auth/pam_passwdqc-1.3.0
)"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.3.0-build.patch
sed -i \
-e 's:`uname -s`:Linux:' \
Makefile || die
# See if the system has a shadow.h. #554504
echo '#include <shadow.h>' > "${T}"/test.c
if ! $(tc-getCPP) ${CPPFLAGS} "${T}"/test.c >& /dev/null ; then
sed -i -e 's:-DHAVE_SHADOW::' Makefile || die
fi
}
_emake() {
emake \
LIBDIR="$(get_libdir)" \
CFLAGS="${CFLAGS} ${CPPFLAGS}" \
LDFLAGS="${LDFLAGS}" \
CC="$(tc-getCC)" \
LD="$(tc-getCC)" \
"$@"
}
src_compile() {
# The use of wrapped targets defeats the Makefile dep tracking.
# Build all the targets explicitly after the library.
_emake lib
if use pam || use utils ; then
_emake $(usev pam) $(usev utils)
fi
}
src_install() {
_emake \
DESTDIR="${ED}" \
install_lib $(usex pam install_pam '') $(usex utils install_utils '')
dodoc README PLATFORMS INTERNALS
}
pkg_postinst() {
if use pam ; then
elog "To activate pam_passwdqc use pam_passwdqc.so instead"
elog "of pam_cracklib.so in /etc/pam.d/system-auth."
elog "Also, if you want to change the parameters, read up"
elog "on the pam_passwdqc(8) man page."
fi
}
|