diff options
author | mi <mi@FreeBSD.org> | 2001-02-26 23:09:21 +0000 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2001-02-26 23:09:21 +0000 |
commit | 9ebf45e4b95da11b7a61c387969c06f5b7bdaecc (patch) | |
tree | c9af80c3860a38a401603a1db7a582d812af097b /security/pam-pgsql/Makefile | |
parent | 8e390c547049fec06f53c2e182f5aa744eb76f22 (diff) | |
download | FreeBSD-ports-9ebf45e4b95da11b7a61c387969c06f5b7bdaecc.zip FreeBSD-ports-9ebf45e4b95da11b7a61c387969c06f5b7bdaecc.tar.gz |
Add pam-pgsql 0.3, a pam module for authenticating with PostgreSQL.
PR: 22876
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'security/pam-pgsql/Makefile')
-rw-r--r-- | security/pam-pgsql/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/security/pam-pgsql/Makefile b/security/pam-pgsql/Makefile new file mode 100644 index 0000000..3f9f9e0 --- /dev/null +++ b/security/pam-pgsql/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: pam-pgsql +# Date created: Nov 16, 2000 +# Whom: Mikhail Teterin <mi@aldan.algebra.com> +# +# $FreeBSD$ +# + +PORTNAME= pam-pgsql +PORTVERSION= 0.3 +CATEGORIES= security databases +# When the family of Debian mirrors is added to bsd.port.mk, +# this will suddenly start making sense: +MASTER_SITES= http://ftp.debian.org/debian/${MASTER_SITE_SUBDIR}/ \ + ftp://ftp.bora.net/pub/linux/debian/${MASTER_SITE_SUBDIR}/ \ + ${MASTER_SITE_DEBIAN} +MASTER_SITE_SUBDIR= dists/woody/main/source/admin +DISTFILES= ${PORTNAME}_${PORTVERSION}${EXTRACT_SUFX} + +MAINTAINER= mi@aldan.algebra.com + +LIB_DEPENDS= pq:${PORTSDIR}/databases/postgresql7 + +MAKEFILE= ${FILESDIR}/Makefile.bsd +MAKE_ARGS+= -j 2 + +post-install: + ${CAT} ${PKGMESSAGE} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/debian/changelog \ + ${WRKSRC}/debian/copyright ${DOCDIR} + +PLIST_SUB+= DOC='' +DOCDIR= ${LOCALBASE}/share/doc/pam-pgsql + +.else +PLIST_SUB+= DOC='@comment ' +.endif + +.include <bsd.port.mk> |