diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2005-06-11 21:30:58 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2005-06-11 21:30:58 +0000 |
commit | 8fa056dee3cb6f26ec05d26b9464c20179f04bbd (patch) | |
tree | 4aefae8f49292c3b1da6fd6dc6132259daed6a39 /net-www/pwauth | |
parent | Added to ~ppc (diff) | |
download | gentoo-2-8fa056dee3cb6f26ec05d26b9464c20179f04bbd.tar.gz gentoo-2-8fa056dee3cb6f26ec05d26b9464c20179f04bbd.tar.bz2 gentoo-2-8fa056dee3cb6f26ec05d26b9464c20179f04bbd.zip |
Fix openpam compatibility, bug 93203.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-www/pwauth')
-rw-r--r-- | net-www/pwauth/ChangeLog | 8 | ||||
-rw-r--r-- | net-www/pwauth/files/digest-pwauth-2.3.1-r2 | 1 | ||||
-rw-r--r-- | net-www/pwauth/files/pwauth.pam-include | 7 | ||||
-rw-r--r-- | net-www/pwauth/pwauth-2.3.1-r2.ebuild | 29 |
4 files changed, 44 insertions, 1 deletions
diff --git a/net-www/pwauth/ChangeLog b/net-www/pwauth/ChangeLog index 94a62ac34a33..15e76533fe0c 100644 --- a/net-www/pwauth/ChangeLog +++ b/net-www/pwauth/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-www/pwauth # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/pwauth/ChangeLog,v 1.2 2005/03/03 18:18:19 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/pwauth/ChangeLog,v 1.3 2005/06/11 21:30:58 kloeri Exp $ + +*pwauth-2.3.1-r2 (11 Jun 2005) + + 11 Jun 2005; Bryan Østergaard <kloeri@gentoo.org> + +files/pwauth.pam-include, +pwauth-2.3.1-r2.ebuild: + Fix openpam compatibility, bug 93203. *pwauth-2.3.1-r1 (03 Mar 2005) diff --git a/net-www/pwauth/files/digest-pwauth-2.3.1-r2 b/net-www/pwauth/files/digest-pwauth-2.3.1-r2 new file mode 100644 index 000000000000..2e99a5f4d35f --- /dev/null +++ b/net-www/pwauth/files/digest-pwauth-2.3.1-r2 @@ -0,0 +1 @@ +MD5 9fbb03fe024b51a02fd7a15ae04a35cb pwauth-2.3.1.tar.gz 20329 diff --git a/net-www/pwauth/files/pwauth.pam-include b/net-www/pwauth/files/pwauth.pam-include new file mode 100644 index 000000000000..ff83143dc086 --- /dev/null +++ b/net-www/pwauth/files/pwauth.pam-include @@ -0,0 +1,7 @@ +#%PAM-1.0 +auth include system-auth +auth required pam_nologin.so +account include system-auth +password include system-auth +session include system-auth +session optional pam_console.so diff --git a/net-www/pwauth/pwauth-2.3.1-r2.ebuild b/net-www/pwauth/pwauth-2.3.1-r2.ebuild new file mode 100644 index 000000000000..5284ef9b20ae --- /dev/null +++ b/net-www/pwauth/pwauth-2.3.1-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/pwauth/pwauth-2.3.1-r2.ebuild,v 1.1 2005/06/11 21:30:58 kloeri Exp $ + +inherit eutils + +DESCRIPTION="A Unix Web Authenticator" +HOMEPAGE="http://www.unixpapa.com/pwauth/" +SRC_URI="http://www.unixpapa.com/software/${P}.tar.gz" + +DEPEND="virtual/pam" +LICENSE="Apache-1.1" +KEYWORDS="~x86" +IUSE="" +SLOT="0" + +src_unpack() { + unpack ${A} || die "unpack failed" + cd ${S} || die "cd to $s failed" + sed -i -e 's:SERVER_UIDS 72:SERVER_UIDS 81:' config.h +} + +src_install() { + dosbin pwauth unixgroup + + newpamd ${FILESDIR}/pwauth.pam-include pwauth + + dodoc CHANGES FORM_AUTH INSTALL README +} |