diff options
author | Will Andrews <will@FreeBSD.org> | 2001-04-10 22:28:40 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-04-10 22:28:40 +0000 |
commit | 62752967766b827b86924f706413443927363637 (patch) | |
tree | 039233593b795e74cb7a1dc4ecc1a0affbdeb51a | |
parent | b58e879972a63bed3f7773c4b2c319e7bbfe5d18 (diff) |
Notes
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/mod_auth_any/Makefile | 27 | ||||
-rw-r--r-- | www/mod_auth_any/distinfo | 1 | ||||
-rw-r--r-- | www/mod_auth_any/pkg-comment | 1 | ||||
-rw-r--r-- | www/mod_auth_any/pkg-descr | 6 | ||||
-rw-r--r-- | www/mod_auth_any/pkg-plist | 3 |
6 files changed, 39 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 86994cd183fa..0427fb11930c 100644 --- a/www/Makefile +++ b/www/Makefile @@ -109,6 +109,7 @@ SUBDIR += mmosaic SUBDIR += mnoGoSearch-current SUBDIR += mod_access_referer + SUBDIR += mod_auth_any SUBDIR += mod_auth_mysql SUBDIR += mod_auth_pam SUBDIR += mod_auth_pgsql diff --git a/www/mod_auth_any/Makefile b/www/mod_auth_any/Makefile new file mode 100644 index 000000000000..b04a82f2b6f3 --- /dev/null +++ b/www/mod_auth_any/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: mod_auth_any +# Date created: 10 April 2001 +# Whom: will +# +# $FreeBSD$ +# + +PORTNAME= mod_auth_any +PORTVERSION= 1.0.2 +CATEGORIES= www +MASTER_SITES= ftp://ftp.itlab.musc.edu/pub/toolbox/mod_auth_any/ +EXTRACT_SUFX= .tgz + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13 +RUN_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13 + +APXS?= ${LOCALBASE}/sbin/apxs + +do-build: + @cd ${WRKSRC} && ${APXS} -c ${PORTNAME}.c + +do-install: + ${APXS} -i -A -n ${PORTNAME:S/mod_//g} ${WRKSRC}/${PORTNAME}.so + +.include <bsd.port.mk> diff --git a/www/mod_auth_any/distinfo b/www/mod_auth_any/distinfo new file mode 100644 index 000000000000..92f0b80ba1be --- /dev/null +++ b/www/mod_auth_any/distinfo @@ -0,0 +1 @@ +MD5 (mod_auth_any-1.0.2.tgz) = cd2f0c6d39af4fe4c6919caeac38e1b3 diff --git a/www/mod_auth_any/pkg-comment b/www/mod_auth_any/pkg-comment new file mode 100644 index 000000000000..b69de0da3772 --- /dev/null +++ b/www/mod_auth_any/pkg-comment @@ -0,0 +1 @@ +Apache module to use any command line program to authenticate a user diff --git a/www/mod_auth_any/pkg-descr b/www/mod_auth_any/pkg-descr new file mode 100644 index 000000000000..83d164609a8a --- /dev/null +++ b/www/mod_auth_any/pkg-descr @@ -0,0 +1,6 @@ +This module allows you to use any command line program such as +WebNIS to authenticate a user. No more having to keep AuthUserFiles +in sync, or maintain some nasty database. You can even have an +expect script that does ssh authentication. + +WWW: http://www.itlab.musc.edu/~nafees/mod_auth_any.html diff --git a/www/mod_auth_any/pkg-plist b/www/mod_auth_any/pkg-plist new file mode 100644 index 000000000000..3fffd2cc8e60 --- /dev/null +++ b/www/mod_auth_any/pkg-plist @@ -0,0 +1,3 @@ +libexec/apache/mod_auth_any.so +@exec %D/sbin/apxs -e -A -n auth_any %D/%F +@unexec %D/sbin/apxs -e -A -n auth_any %D/%F |