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 /net/pear-Net_SMTP | |
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 'net/pear-Net_SMTP')
-rw-r--r-- | net/pear-Net_SMTP/Makefile | 13 | ||||
-rw-r--r-- | net/pear-Net_SMTP/pkg-plist | 3 |
2 files changed, 5 insertions, 11 deletions
diff --git a/net/pear-Net_SMTP/Makefile b/net/pear-Net_SMTP/Makefile index 91346ac0f360..06e17422ae2f 100644 --- a/net/pear-Net_SMTP/Makefile +++ b/net/pear-Net_SMTP/Makefile @@ -7,6 +7,7 @@ PORTNAME= Net_SMTP PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= net mail www pear MAINTAINER= ports@FreeBSD.org @@ -17,13 +18,9 @@ BUILD_DEPENDS= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL \ # The Auth_SASL package is no longer absolutely required, but it will be used if it is available. RUN_DEPENDS= ${BUILD_DEPENDS} -.include <bsd.port.pre.mk> -.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common" - -MANIFEST= Net/SMTP.php - -do-install: - @${CP} -p ${WRKSRC}/SMTP.php ${PEARDIR}/Net - @${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/${MANIFEST} +CATEGORY= Net +FILES= SMTP.php +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" .include <bsd.port.post.mk> diff --git a/net/pear-Net_SMTP/pkg-plist b/net/pear-Net_SMTP/pkg-plist deleted file mode 100644 index 4d01f94a59c7..000000000000 --- a/net/pear-Net_SMTP/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -%%PEARDIR%%/Net/SMTP.php -%%PKGREGDIR%%/package.xml -@dirrm %%PKGREGDIR%% |