mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
c99981dc58
According to the official announcement: This release fixes a security issue that allows an attacker to perform injection attacks against the underlying storage containers. Upgrading is strongly recommended! See changelog at <http://pear.php.net/package/Auth/download/1.2.4>. PR: 93406 Submitted by: /me Approved by: maintainer Security: see changelog.
70 lines
2.1 KiB
Makefile
70 lines
2.1 KiB
Makefile
# Ports collection makefile for: pear-Auth
|
|
# Date created: 2 February 2003
|
|
# Whom: Thierry Thomas (<thierry@pompo.net>)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Auth
|
|
PORTVERSION= 1.2.4
|
|
CATEGORIES= security pear
|
|
|
|
MAINTAINER= antonio@php.net
|
|
COMMENT= PEAR class for creating an authentication system
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
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
|
|
|
|
CATEGORY= Auth
|
|
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
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PEAR_FILE_PASSWD)
|
|
RUN_DEPENDS+= ${PEARDIR}/File/Passwd.php:${PORTSDIR}/security/pear-File_Passwd
|
|
.endif
|
|
|
|
.if defined(WITH_PEAR_NET_POP3)
|
|
RUN_DEPENDS+= ${PEARDIR}/Net/POP3.php:${PORTSDIR}/net/pear-Net_POP3
|
|
.endif
|
|
|
|
.if defined(WITH_PEAR_DB)
|
|
RUN_DEPENDS+= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB
|
|
.endif
|
|
|
|
.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/bsd.pear.mk"
|
|
.include <bsd.port.post.mk>
|