diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-07-02 15:05:07 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-07-02 15:05:07 +0000 |
commit | 3fd44f6ca7469090b39bb147f54964ffbc92819e (patch) | |
tree | bbf93e71f0305d848f0ad8d7ecfc2f3408083969 /sys-auth/pam_pwdfile | |
parent | Stable on alpha. (diff) | |
download | historical-3fd44f6ca7469090b39bb147f54964ffbc92819e.tar.gz historical-3fd44f6ca7469090b39bb147f54964ffbc92819e.tar.bz2 historical-3fd44f6ca7469090b39bb147f54964ffbc92819e.zip |
Moved from sys-libs/pam_pwdfile to sys-auth/pam_pwdfile.
Diffstat (limited to 'sys-auth/pam_pwdfile')
-rw-r--r-- | sys-auth/pam_pwdfile/ChangeLog | 17 | ||||
-rw-r--r-- | sys-auth/pam_pwdfile/Manifest | 4 | ||||
-rw-r--r-- | sys-auth/pam_pwdfile/files/digest-pam_pwdfile-0.99 | 1 | ||||
-rw-r--r-- | sys-auth/pam_pwdfile/metadata.xml | 5 | ||||
-rw-r--r-- | sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild | 27 |
5 files changed, 54 insertions, 0 deletions
diff --git a/sys-auth/pam_pwdfile/ChangeLog b/sys-auth/pam_pwdfile/ChangeLog new file mode 100644 index 000000000000..f8bc074366f0 --- /dev/null +++ b/sys-auth/pam_pwdfile/ChangeLog @@ -0,0 +1,17 @@ +# ChangeLog for sys-auth/pam_pwdfile +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_pwdfile/ChangeLog,v 1.1 2005/07/02 15:05:07 flameeyes Exp $ + + 02 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> +metadata.xml, + +pam_pwdfile-0.99.ebuild: + Moved from sys-libs/pam_pwdfile to sys-auth/pam_pwdfile. + + 31 Aug 2004; David Holm <dholm@gentoo.org> pam_pwdfile-0.99.ebuild: + Added to ~ppc. + +*pam_pwdfile-0.99 (11 Aug 2004) + + 11 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml, + +pam_pwdfile-0.99.ebuild: + Initial ebuild by Robin H. Johnson <robbat2@gentoo.org>, for bug #23789. + diff --git a/sys-auth/pam_pwdfile/Manifest b/sys-auth/pam_pwdfile/Manifest new file mode 100644 index 000000000000..c408e2d796ff --- /dev/null +++ b/sys-auth/pam_pwdfile/Manifest @@ -0,0 +1,4 @@ +MD5 3549565e4557640199a1ec9ff72ec78a ChangeLog 505 +MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 +MD5 39f30ece32232dc5e95c9271bbe70ac8 pam_pwdfile-0.99.ebuild 869 +MD5 32a6a1684d866f5beb1ee8ff56a836db files/digest-pam_pwdfile-0.99 67 diff --git a/sys-auth/pam_pwdfile/files/digest-pam_pwdfile-0.99 b/sys-auth/pam_pwdfile/files/digest-pam_pwdfile-0.99 new file mode 100644 index 000000000000..fe04bec2bf36 --- /dev/null +++ b/sys-auth/pam_pwdfile/files/digest-pam_pwdfile-0.99 @@ -0,0 +1 @@ +MD5 a05b41f0bd1c0de16bec8aad6b1b30a9 pam_pwdfile-0.99.tar.gz 16994 diff --git a/sys-auth/pam_pwdfile/metadata.xml b/sys-auth/pam_pwdfile/metadata.xml new file mode 100644 index 000000000000..96a2d586367d --- /dev/null +++ b/sys-auth/pam_pwdfile/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>base-system</herd> +</pkgmetadata> diff --git a/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild b/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild new file mode 100644 index 000000000000..d12ade3276bc --- /dev/null +++ b/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 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.1 2005/07/02 15:05:07 flameeyes Exp $ + +inherit flag-o-matic + +DESCRIPTION="PAM module for authenticating against passwd-like files." +HOMEPAGE="http://cpbotha.net/pam_pwdfile.html" +SRC_URI="http://cpbotha.net/files/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND="sys-libs/pam" + +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}" +} + +src_install() { + exeinto /lib/security + doexe ${PN}.so + dodoc INSTALL README changelog contrib/warwick_duncan-cyrus_without_system_accounts.txt +} |