diff options
| author | Li xin <lixin.fnst@cn.fujitsu.com> | 2014-11-10 09:29:46 +0800 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-11-24 11:58:31 +0100 |
| commit | 1fc4d862c394e588a7a771062c6aec7b5a6d8a03 (patch) | |
| tree | 4e5d84f33b53c68b8bfb0026343df4e6ff1cf83b /meta-oe/recipes-support/pam-passwdqc/pam-passwdqc_1.0.5.bb | |
| parent | d30784ef047850a9d496f2ad312b73d16e911156 (diff) | |
| download | meta-openembedded-1fc4d862c394e588a7a771062c6aec7b5a6d8a03.tar.gz | |
pam_passwdqc: new recipe
pam_passwdqc is a simple password strength checking module for
PAM-aware password changing programs, such as passwd(1).
It is capable of checking password or passphrase strength,enforcing
a policy, and offering randomly-generated passphrases,with all of
these features being optional and easily (re-)configurable.
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/pam-passwdqc/pam-passwdqc_1.0.5.bb')
| -rw-r--r-- | meta-oe/recipes-support/pam-passwdqc/pam-passwdqc_1.0.5.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/pam-passwdqc/pam-passwdqc_1.0.5.bb b/meta-oe/recipes-support/pam-passwdqc/pam-passwdqc_1.0.5.bb new file mode 100644 index 0000000000..4add367d5c --- /dev/null +++ b/meta-oe/recipes-support/pam-passwdqc/pam-passwdqc_1.0.5.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | SUMMARY = "Pluggable password quality-control module." | ||
| 2 | DESCRIPTION = "pam_passwdqc is a simple password strength checking module for \ | ||
| 3 | PAM-aware password changing programs, such as passwd(1). In addition \ | ||
| 4 | to checking regular passwords, it offers support for passphrases and \ | ||
| 5 | can provide randomly generated passwords. All features are optional \ | ||
| 6 | and can be (re-)configured without rebuilding." | ||
| 7 | |||
| 8 | HOMEPAGE = "http://www.openwall.com/passwdqc/" | ||
| 9 | SECTION = "System Environment/Base" | ||
| 10 | |||
| 11 | LICENSE = "BSD" | ||
| 12 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e284d013ef08e66d4737f446c5890550" | ||
| 13 | |||
| 14 | SRC_URI = "http://www.openwall.com/pam/modules/pam_passwdqc/pam_passwdqc-1.0.5.tar.gz \ | ||
| 15 | file://1000patch-219201.patch \ | ||
| 16 | file://7000Makefile-fix-CC.patch \ | ||
| 17 | " | ||
| 18 | SRC_URI[md5sum] = "cd9c014f736158b1a60384a8e2bdc28a" | ||
| 19 | SRC_URI[sha256sum] = "32528ddf7d8219c788b6e7702361611ff16c6340b6dc0f418ff164aadc4a4a88" | ||
| 20 | |||
| 21 | |||
| 22 | S = "${WORKDIR}/pam_passwdqc-${PV}" | ||
| 23 | |||
| 24 | DEPENDS = "libpam" | ||
| 25 | |||
| 26 | EXTRA_OEMAKE = "CFLAGS="${CFLAGS} -Wall -fPIC -DHAVE_SHADOW"" | ||
| 27 | |||
| 28 | do_install() { | ||
| 29 | oe_runmake install DESTDIR=${D} | ||
| 30 | } | ||
| 31 | |||
| 32 | FILES_${PN} += "/lib/security/pam_passwdqc.so" | ||
| 33 | FILES_${PN}-dbg += "/lib/security/.debug" | ||
| 34 | |||
