1845a0c9a0
This PR upgrades pear-Auth_SASL to its latest version. PR: ports/56719 Submitted by: Thierry Thomas <thierry@pompo.net>
31 lines
785 B
Makefile
31 lines
785 B
Makefile
# Ports collection makefile for: pear-Auth_SASL
|
|
# Date created: 2 February 2003
|
|
# Whom: Thierry Thomas (<thierry@pompo.net>)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Auth_SASL
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= security www
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PEAR abstraction of various SASL mechanism responses
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/Auth/Auth.php:${PORTSDIR}/security/pear-Auth
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common"
|
|
|
|
MANIFEST= SASL.php SASL
|
|
|
|
do-install:
|
|
.for FILE in ${MANIFEST}
|
|
@${CP} -Rp ${WRKSRC}/${FILE} ${PEARDIR}/Auth
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/Auth/${FILE}
|
|
.endfor
|
|
@${CHMOD} a-x ${PEARDIR}/Auth/SASL/*
|
|
@${CHMOD} a-x ${PEARDIR}/Auth/SASL.php
|
|
|
|
.include <bsd.port.post.mk>
|