diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-03-22 18:00:15 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-03-22 18:00:15 +0000 |
commit | b15d15ffc900200e07e4640ccd0d2695e7a6a5da (patch) | |
tree | 4a4101773412a2048c324d6b2f5e232c2d572426 /www-apache | |
parent | Remove old. (diff) | |
download | gentoo-2-b15d15ffc900200e07e4640ccd0d2695e7a6a5da.tar.gz gentoo-2-b15d15ffc900200e07e4640ccd0d2695e7a6a5da.tar.bz2 gentoo-2-b15d15ffc900200e07e4640ccd0d2695e7a6a5da.zip |
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/pwauth/ChangeLog | 8 | ||||
-rw-r--r-- | www-apache/pwauth/files/pwauth-gentoo.patch | 78 | ||||
-rw-r--r-- | www-apache/pwauth/pwauth-2.3.5.ebuild | 76 |
3 files changed, 6 insertions, 156 deletions
diff --git a/www-apache/pwauth/ChangeLog b/www-apache/pwauth/ChangeLog index 51e52f208288..d230d5a1eeef 100644 --- a/www-apache/pwauth/ChangeLog +++ b/www-apache/pwauth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-apache/pwauth -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/pwauth/ChangeLog,v 1.8 2013/01/01 16:26:42 pinkbyte Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/pwauth/ChangeLog,v 1.9 2014/03/22 18:00:15 kensington Exp $ + + 22 Mar 2014; Michael Palimaka <kensington@gentoo.org> + -files/pwauth-gentoo.patch, -pwauth-2.3.5.ebuild: + Remove old. *pwauth-2.3.10 (01 Jan 2013) diff --git a/www-apache/pwauth/files/pwauth-gentoo.patch b/www-apache/pwauth/files/pwauth-gentoo.patch deleted file mode 100644 index 2f3a183d3ebd..000000000000 --- a/www-apache/pwauth/files/pwauth-gentoo.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -Nurp pwauth-2.3.1.orig/config.h pwauth-2.3.1/config.h ---- pwauth-2.3.1.orig/config.h 2004-09-29 03:07:18.000000000 +0200 -+++ pwauth-2.3.1/config.h 2006-06-06 09:01:37.044516000 +0200 -@@ -106,7 +106,7 @@ - - /* #define SHADOW_NONE /**/ - /* #define SHADOW_BSD /* FreeBSD, NetBSD, OpenBSD, BSDI */ --#define SHADOW_SUN /* Linux, Solaris, IRIX */ -+/* #define SHADOW_SUN /* Linux, Solaris, IRIX */ - /* #define SHADOW_JFH /**/ - /* #define SHADOW_MDW /**/ - /* #define SHADOW_AIX /* AIX */ -@@ -238,7 +238,7 @@ - * last). - */ - --#define SERVER_UIDS 72 /* user "nobody" */ -+/* #define SERVER_UIDS 81 /* user "nobody" */ - - - /* If MIN_UNIX_UID is defined to an integer, logins with uid numbers less than -@@ -250,7 +250,7 @@ - * given value will be accepted). - */ - --#define MIN_UNIX_UID 500 /**/ -+/* #define MIN_UNIX_UID 500 /**/ - - - /* If IGNORE_CASE is defined, the login given is checked in two different -@@ -278,7 +278,7 @@ - * SLEEP_LOCK. SLEEP_TIME defaults to 2 seconds if not defined. - */ - --#define SLEEP_LOCK "/var/run/pwauth.lock" -+#define SLEEP_LOCK "/var/lock/pwauth" - - - /* If ENV_METHOD is defined, pwauth expects mod_auth_external to be configured -diff -Nurp pwauth-2.3.1.orig/Makefile pwauth-2.3.1/Makefile ---- pwauth-2.3.1.orig/Makefile 2004-09-28 15:40:19.000000000 +0200 -+++ pwauth-2.3.1/Makefile 2006-06-06 09:26:14.620858750 +0200 -@@ -2,32 +2,18 @@ - # system. Most of the configurable stuff is in config.h - # - # CC= an ansi-C compiler. If "cc" doesn't work, try "gcc". --# LIB= libraries to link in. -lcrypt, -lshadow, -lpam sometimes needed. --# LOCALFLAGS= compiler flags. Usually -g, -O, and stuff like that. -- --# Settings for author's system (Redhat 6.1) --CC=gcc --LIB= -lcrypt --LOCALFLAGS= -g -- --# For PAM on Redhat Linux --# LIB=-lpam -ldl -- --# For PAM on Solaris --# LIB=-lpam -+# LDFLAGS= libraries to link in. -lcrypt, -lshadow, -lpam sometimes needed. - - # -------------------- No User Servicable Parts Below ----------------------- - --CFLAGS= $(LOCALFLAGS) -- - pwauth: main.o auth_aix.o auth_bsd.o auth_hpux.o auth_mdw.o auth_openbsd.o \ - auth_pam.o auth_sun.o fail_log.o lastlog.o nologin.o snooze.o - $(CC) -o pwauth $(CFLAGS) main.o auth_aix.o auth_bsd.o auth_hpux.o \ - auth_mdw.o auth_openbsd.o auth_pam.o auth_sun.o fail_log.o \ -- lastlog.o nologin.o snooze.o $(LIB) -+ lastlog.o nologin.o snooze.o $(LDFLAGS) - - checkfaillog: checkfaillog.o fail_check.o -- $(CC) -o checkfaillog $(CFLAGS) checkfaillog.o fail_check.o $(LIB) -+ $(CC) -o checkfaillog $(CFLAGS) checkfaillog.o fail_check.o $(LDFLAGS) - - main.o: main.c config.h pwauth.h fail_log.h - auth_aix.o: auth_aix.c config.h pwauth.h diff --git a/www-apache/pwauth/pwauth-2.3.5.ebuild b/www-apache/pwauth/pwauth-2.3.5.ebuild deleted file mode 100644 index 188c1055dfa4..000000000000 --- a/www-apache/pwauth/pwauth-2.3.5.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/pwauth/pwauth-2.3.5.ebuild,v 1.1 2008/01/27 18:08:47 hollow Exp $ - -inherit eutils toolchain-funcs pam - -DESCRIPTION="A Unix Web Authenticator" -HOMEPAGE="http://www.unixpapa.com/pwauth/" -SRC_URI="http://www.unixpapa.com/software/${P}.tar.gz" - -LICENSE="Apache-1.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="faillog pam ignore-case domain-aware" - -DEPEND="pam? ( virtual/pam )" - -pkg_setup() { - local OPTS - - einfo "You can configure various build time options with ENV variables:" - einfo - einfo " PWAUTH_FAILLOG Path to logfile for login failures" - einfo " (default: /var/log/pwauth.log)" - einfo " PWAUTH_SERVERUIDS Comma seperated list of UIDs allowed to run pwauth" - einfo " (default: 81)" - einfo " PWAUTH_MINUID Minimum UID for which authentication will succeed" - einfo " (default: 1000)" - einfo - - PWAUTH_FAILLOG="${PWAUTH_FAILLOG:-/var/log/pwauth.log}" - PWAUTH_SERVERUIDS="${PWAUTH_SERVERUIDS:-81}" - PWAUTH_MINUID="${PWAUTH_MINUID:-1000}" - - OPTS="${OPTS} -DSERVER_UIDS=${PWAUTH_SERVERUIDS}" - OPTS="${OPTS} -DMIN_UNIX_UID=${PWAUTH_MINUID}" - - if use faillog; then - OPTS="${OPTS} -DFAILLOG_PWAUTH" - OPTS="${OPTS} -DPATH_FAILLOG=\"\\\"${PWAUTH_FAILLOG}\\\"\"" - fi - - if use pam; then - OPTS="${OPTS} -DPAM" - LDFLAGS="-lpam" - else - OPTS="${OPTS} -DSHADOW_SUN" - LDFLAGS="-lcrypt" - fi - - if use ignore-case; then - OPTS="${OPTS} -DIGNORE_CASE" - fi - - if use domain-aware; then - OPTS="${OPTS} -DOMAIN_AWARE" - fi - - CC=$(tc-getCC) - CFLAGS="${CFLAGS} ${OPTS}" -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/pwauth-gentoo.patch -} - -src_install() { - dosbin pwauth unixgroup - fperms 4755 /usr/sbin/pwauth - - use pam && newpamd "${FILESDIR}"/pwauth.pam-include pwauth - - dodoc CHANGES FORM_AUTH INSTALL README -} |