2003-02-24 06:59:41 +01:00
|
|
|
# Ports collection makefile for: pear-Auth
|
|
|
|
# Date created: 2 February 2003
|
|
|
|
# Whom: Thierry Thomas (<thierry@pompo.net>)
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= Auth
|
2003-12-28 09:44:09 +01:00
|
|
|
PORTVERSION= 1.2.3
|
2005-03-15 21:09:37 +01:00
|
|
|
PORTREVISION= 1
|
|
|
|
CATEGORIES= security pear
|
2003-02-24 06:59:41 +01:00
|
|
|
|
2005-03-15 21:09:37 +01:00
|
|
|
MAINTAINER= antonio@php.net
|
|
|
|
COMMENT= PEAR class for creating an authentication system
|
2003-02-24 06:59:41 +01:00
|
|
|
|
Update to pear-Archive_Tar 1.1.
Update to pear-PEAR 1.1.
Update to pear-HTML_Common 1.2.
Update to pear-Net_SMTP 1.2.3.
Update to pear-Log 1.6.5.
Update to pear-I18N 0.8.5.
Update to pear 4.3.2.
Adapt following ports for pear-PEAR's Makefile.common.
pear-Console_Getopt, pear-Auth, pear-Auth_SASL, devel/pear-Date,
net/pear-Net_Socket, pear-Mail_Mime, pear-Crypt_CBC, pear-mailparse,
pear-File, pear-HTML_Select_Common, and pear-Net_Sieve
PR: ports/52596, ports/52641, ports/52655, ports/52656,
ports/52671, ports/52678, ports/52845
Submitted by: Thierry Thomas <thierry@pompo.net>
2003-06-08 01:00:46 +02:00
|
|
|
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR
|
2003-02-24 06:59:41 +01:00
|
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
|
2005-03-15 21:09:37 +01:00
|
|
|
LATEST_LINK= pear-Auth
|
|
|
|
OPTIONS= PEAR_FILE_PASSWD "PEAR::File_Passwd support" off \
|
|
|
|
PEAR_NET_POP3 "PEAR::Net_POP3 support" off \
|
|
|
|
PEAR_DB "PEAR::DB support" off \
|
|
|
|
PEAR_MDB "PEAR::MDB support" off \
|
|
|
|
PEAR_AUTH_RADIUS "PEAR::Auth_RADIUS support" off \
|
|
|
|
PEAR_FILE_SMBPASSWD "PEAR::File_SMBPasswd support" off
|
|
|
|
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
|
2003-12-28 09:44:09 +01:00
|
|
|
CATEGORY= Auth
|
2005-03-15 21:09:37 +01:00
|
|
|
FILES= Auth.php Auth/Auth.php Container.php Container/DB.php \
|
|
|
|
Container/File.php Container/IMAP.php Container/POP3.php \
|
|
|
|
Container/LDAP.php Container/MDB.php Container/RADIUS.php \
|
|
|
|
Container/SMBPasswd.php Container/SOAP.php Container/vpopmail.php
|
|
|
|
TESTS= auth_container_db_options.php DBContainer.php \
|
|
|
|
auth_container_file_options.php FileContainer.php \
|
|
|
|
auth_container_pop3_options.php POP3Container.php \
|
|
|
|
auth_container_pop3a_options.php POP3aContainer.php \
|
|
|
|
TestAuthContainer.php users tests.php
|
|
|
|
DOCS= README.Auth
|
|
|
|
_DOCSDIR= .
|
|
|
|
|
|
|
|
post-extract:
|
|
|
|
@${REINPLACE_CMD} -e "s|@version@|${PORTVERSION}|" ${WRKSRC}/Auth.php
|
2003-12-28 09:44:09 +01:00
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2005-03-15 21:09:37 +01:00
|
|
|
.if defined(WITH_PEAR_FILE_PASSWD)
|
|
|
|
RUN_DEPENDS+= ${PEARDIR}/File/Passwd.php:${PORTSDIR}/security/pear-File_Passwd
|
2003-12-28 09:44:09 +01:00
|
|
|
.endif
|
|
|
|
|
2005-03-15 21:09:37 +01:00
|
|
|
.if defined(WITH_PEAR_NET_POP3)
|
|
|
|
RUN_DEPENDS+= ${PEARDIR}/Net/POP3.php:${PORTSDIR}/net/pear-Net_POP3
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_PEAR_DB)
|
2003-12-28 09:44:09 +01:00
|
|
|
RUN_DEPENDS+= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB
|
2003-08-25 03:21:45 +02:00
|
|
|
.endif
|
2003-02-24 06:59:41 +01:00
|
|
|
|
2005-03-15 21:09:37 +01:00
|
|
|
.if defined(WITH_PEAR_MDB)
|
|
|
|
RUN_DEPENDS+= ${PEARDIR}/MDB.php:${PORTSDIR}/databases/pear-MDB
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_PEAR_AUTH_RADIUS)
|
|
|
|
RUN_DEPENDS+= ${PEARDIR}/Auth/RADIUS.php:${PORTSDIR}/net/pear-Auth_RADIUS
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_PEAR_FILE_SMBPASSWD)
|
|
|
|
RUN_DEPENDS+= ${PEARDIR}/File/SMBPasswd.php:${PORTSDIR}/security/pear-File_SMBPasswd
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
|
2003-02-24 06:59:41 +01:00
|
|
|
.include <bsd.port.post.mk>
|