From ef10a5cc76e0f3499aae256c9bbedbda81439484 Mon Sep 17 00:00:00 2001 From: Edwin Groothuis Date: Mon, 24 Feb 2003 05:55:57 +0000 Subject: New port: security/pear-Auth_SASL PEAR abstraction of various SASL mechanism responses. PR: ports/48120 Submitted by: Thierry Thomas --- security/pear-Auth_SASL/Makefile | 50 +++++++++++++++++++++++++++++++++++ security/pear-Auth_SASL/distinfo | 1 + security/pear-Auth_SASL/pkg-deinstall | 13 +++++++++ security/pear-Auth_SASL/pkg-descr | 9 +++++++ security/pear-Auth_SASL/pkg-plist | 8 ++++++ 5 files changed, 81 insertions(+) create mode 100644 security/pear-Auth_SASL/Makefile create mode 100644 security/pear-Auth_SASL/distinfo create mode 100644 security/pear-Auth_SASL/pkg-deinstall create mode 100644 security/pear-Auth_SASL/pkg-descr create mode 100644 security/pear-Auth_SASL/pkg-plist (limited to 'security/pear-Auth_SASL') diff --git a/security/pear-Auth_SASL/Makefile b/security/pear-Auth_SASL/Makefile new file mode 100644 index 000000000000..76b4bd69916b --- /dev/null +++ b/security/pear-Auth_SASL/Makefile @@ -0,0 +1,50 @@ +# Ports collection makefile for: pear-Auth_SASL +# Date created: 2 February 2003 +# Whom: Thierry Thomas () +# +# $FreeBSD$ +# + +PORTNAME= Auth_SASL +PORTVERSION= 1.0.0 +CATEGORIES= security www +MASTER_SITES= http://pear.php.net/get/ +PKGNAMEPREFIX= pear- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PEAR + +MAINTAINER= ports@FreeBSD.org +COMMENT= PEAR abstraction of various SASL mechanism responses + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php.dist:${PORTSDIR}/devel/pear-PEAR +RUN_DEPENDS= ${BUILD_DEPENDS} + +NO_BUILD= yes + +.include + +.if exists(${LOCALBASE}/bin/php-config) +PHP_BASE!= ${LOCALBASE}/bin/php-config --prefix +.else +PHP_BASE!= ${LOCALBASE} +.endif +PEAR= ${LOCALBASE}/bin/pear +LPHP_LIB= lib/php +PEARDIR= ${PHP_BASE}/${LPHP_LIB} +PLIST_SUB= PEARDIR=${LPHP_LIB} + +MANIFEST= SASL.php SASL + +do-install: +.for FILE in ${MANIFEST} + @${CP} -Rp ${WRKSRC}/${FILE} ${PEARDIR} + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/${FILE} +.endfor + @${CHMOD} a-x ${PEARDIR}/SASL/* + @${CHMOD} a-x ${PEARDIR}/SASL.php + +post-install: +# Register a new package + @${PEAR} install -r -f ${WRKDIR}/package.xml + +.include diff --git a/security/pear-Auth_SASL/distinfo b/security/pear-Auth_SASL/distinfo new file mode 100644 index 000000000000..0a8a7bd88c99 --- /dev/null +++ b/security/pear-Auth_SASL/distinfo @@ -0,0 +1 @@ +MD5 (PEAR/Auth_SASL-1.0.0.tgz) = e7f1f635e9292533601349e2e334b7ed diff --git a/security/pear-Auth_SASL/pkg-deinstall b/security/pear-Auth_SASL/pkg-deinstall new file mode 100644 index 000000000000..c17e9d19ced0 --- /dev/null +++ b/security/pear-Auth_SASL/pkg-deinstall @@ -0,0 +1,13 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Remove package declaration from PEAR's registry. + +if [ x$2 != xDEINSTALL ]; then + exit +fi +PKG_NAME=${1%%-[0-9._]*} +PACKAGE=$(echo $PKG_NAME | sed 's/pear-//') + +${PKG_PREFIX}/bin/pear uninstall -r ${PACKAGE} || true diff --git a/security/pear-Auth_SASL/pkg-descr b/security/pear-Auth_SASL/pkg-descr new file mode 100644 index 000000000000..afaefb265022 --- /dev/null +++ b/security/pear-Auth_SASL/pkg-descr @@ -0,0 +1,9 @@ +Provides PHP code to generate responses to common SASL mechanisms, including: + +o Digest-MD5 +o CramMD5 +o Plain +o Anonymous +o Login (Pseudo mechanism). + +WWW: http://pear.php.net/package-info.php?pacid=123 diff --git a/security/pear-Auth_SASL/pkg-plist b/security/pear-Auth_SASL/pkg-plist new file mode 100644 index 000000000000..4baebaa60a7e --- /dev/null +++ b/security/pear-Auth_SASL/pkg-plist @@ -0,0 +1,8 @@ +%%PEARDIR%%/SASL.php +%%PEARDIR%%/SASL/Anonymous.php +%%PEARDIR%%/SASL/Common.php +%%PEARDIR%%/SASL/CramMD5.php +%%PEARDIR%%/SASL/DigestMD5.php +%%PEARDIR%%/SASL/Login.php +%%PEARDIR%%/SASL/Plain.php +@dirrm %%PEARDIR%%/SASL -- cgit v1.2.3