diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-12-28 07:55:47 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-12-28 07:55:47 +0000 |
commit | 93b7ed7f504a49dd67ffe3ac687750a2cf3de9af (patch) | |
tree | 8da4bd11526f4a4c8953d4db2c3e091588172722 /security/pear-Auth_SASL | |
parent | 8f2582a5696b97b61eaf3829d827c8b0ba5bc289 (diff) | |
download | ports-93b7ed7f504a49dd67ffe3ac687750a2cf3de9af.tar.gz ports-93b7ed7f504a49dd67ffe3ac687750a2cf3de9af.zip |
[PATCH] simplify pear-* ports
These patches do the following things for PEAR ports:
* devel-pear-PEAR-Makefile.common.patch
- provides a do-install target and all that jazz in
devel/pear-PEAR/Makefile.common
- individual PEAR ports now just set a few variables:
* pear-ports-Makefile.common-ng.patch
contains changes for all pear-* ports including devel/pear-PEAR
See http://smradoch.innuendo.cz/FreeBSD/ for complete description.
Note: still missing are:
devel/pear-HTML_Common
devel/pear-I18N
net/pear-Net_NNTP
security/pear-Auth
PR: ports/59213
Submitted by: Roman Neuhauser <neuhauser@bellavista.cz>
Notes
Notes:
svn path=/head/; revision=96732
Diffstat (limited to 'security/pear-Auth_SASL')
-rw-r--r-- | security/pear-Auth_SASL/Makefile | 18 | ||||
-rw-r--r-- | security/pear-Auth_SASL/pkg-plist | 10 |
2 files changed, 6 insertions, 22 deletions
diff --git a/security/pear-Auth_SASL/Makefile b/security/pear-Auth_SASL/Makefile index d0a421dc0138..aa0de7523595 100644 --- a/security/pear-Auth_SASL/Makefile +++ b/security/pear-Auth_SASL/Makefile @@ -7,6 +7,7 @@ PORTNAME= Auth_SASL PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= security www pear MAINTAINER= ports@FreeBSD.org @@ -15,17 +16,10 @@ 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 +CATEGORY= Auth +FILES= SASL.php SASL/Anonymous.php SASL/Common.php SASL/CramMD5.php \ + SASL/DigestMD5.php SASL/Login.php SASL/Plain.php +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" .include <bsd.port.post.mk> diff --git a/security/pear-Auth_SASL/pkg-plist b/security/pear-Auth_SASL/pkg-plist deleted file mode 100644 index 5b786210180e..000000000000 --- a/security/pear-Auth_SASL/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -%%PEARDIR%%/Auth/SASL.php -%%PEARDIR%%/Auth/SASL/Anonymous.php -%%PEARDIR%%/Auth/SASL/Common.php -%%PEARDIR%%/Auth/SASL/CramMD5.php -%%PEARDIR%%/Auth/SASL/DigestMD5.php -%%PEARDIR%%/Auth/SASL/Login.php -%%PEARDIR%%/Auth/SASL/Plain.php -%%PKGREGDIR%%/package.xml -@dirrm %%PEARDIR%%/Auth/SASL -@dirrm %%PKGREGDIR%% |