blob: 99663893cdc885b2471f045398321d15435d1218 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit pam eutils toolchain-funcs
DESCRIPTION="Password strength checking for PAM aware password changing programs"
HOMEPAGE="http://www.openwall.com/passwdqc/"
SRC_URI="http://www.openwall.com/pam/modules/pam_passwdqc/${P}.tar.gz"
LICENSE="Openwall BSD public-domain"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
DEPEND="virtual/pam"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-makefile.patch"
}
src_compile() {
emake \
OPTCFLAGS="${CFLAGS}" \
CC="$(tc-getCC)" \
LD="$(tc-getCC)" \
|| die "emake failed"
}
src_install() {
dopammod pam_passwdqc.so
doman pam_passwdqc.8
dodoc README PLATFORMS INTERNALS
}
pkg_postinst() {
elog
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."
elog
}
|