diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-11-04 15:38:35 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-11-04 15:38:35 +0000 |
commit | ff40d926e1c52863ab7fa3de4ec73fc96956190e (patch) | |
tree | 5050d3ce9b107a7a786b59aea320a8c242587cd4 /sys-auth/pam_pwdfile | |
parent | Version bump. (diff) | |
download | gentoo-2-ff40d926e1c52863ab7fa3de4ec73fc96956190e.tar.gz gentoo-2-ff40d926e1c52863ab7fa3de4ec73fc96956190e.tar.bz2 gentoo-2-ff40d926e1c52863ab7fa3de4ec73fc96956190e.zip |
Use pam.eclass's dopammod to install the module, that also fixes multilib-strict. Die on emake failure. Thanks to Jakub Moc in bug #191949.
(Portage version: 2.1.3.17)
Diffstat (limited to 'sys-auth/pam_pwdfile')
-rw-r--r-- | sys-auth/pam_pwdfile/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/sys-auth/pam_pwdfile/ChangeLog b/sys-auth/pam_pwdfile/ChangeLog index f7025a5df83a..d8d6aa043c24 100644 --- a/sys-auth/pam_pwdfile/ChangeLog +++ b/sys-auth/pam_pwdfile/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/pam_pwdfile # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_pwdfile/ChangeLog,v 1.6 2007/02/22 01:02:22 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_pwdfile/ChangeLog,v 1.7 2007/11/04 15:38:35 flameeyes Exp $ + + 04 Nov 2007; Diego Pettenò <flameeyes@gentoo.org> + pam_pwdfile-0.99.ebuild: + Use pam.eclass's dopammod to install the module, that also fixes + multilib-strict. Die on emake failure. Thanks to Jakub Moc in bug #191949. 22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog: Redigest for Manifest2 diff --git a/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild b/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild index c6dfd1787a64..889658a1dc09 100644 --- a/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild +++ b/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild,v 1.4 2006/10/15 14:25:51 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild,v 1.5 2007/11/04 15:38:35 flameeyes Exp $ -inherit flag-o-matic +inherit flag-o-matic pam DESCRIPTION="PAM module for authenticating against passwd-like files." HOMEPAGE="http://cpbotha.net/pam_pwdfile.html" @@ -17,11 +17,10 @@ src_compile() { # the upstream makefile does CFLAGS in a horrible way # that '-c' is 100% required here append-flags -fPIC -Wall -Wformat-security -D_BSD_SOURCE -c - emake -f contrib/Makefile.standalone CFLAGS="${CFLAGS}" + emake -f contrib/Makefile.standalone CFLAGS="${CFLAGS}" || die "emake failed" } src_install() { - exeinto /lib/security - doexe ${PN}.so + dopammod ${PN}.so dodoc INSTALL README changelog contrib/warwick_duncan-cyrus_without_system_accounts.txt } |