diff options
author | edwin <edwin@FreeBSD.org> | 2003-12-28 15:55:47 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-12-28 15:55:47 +0800 |
commit | d1c66c82a563be8eb2f4c7b6e96c75d3adb7eb1c (patch) | |
tree | 84003698ad2fd8363cbe0ecd528aef690cbacd97 /sysutils/pear-Log | |
parent | e77dff7e6230eea7acc0d504c3c918517180e95a (diff) | |
download | freebsd-ports-gnome-d1c66c82a563be8eb2f4c7b6e96c75d3adb7eb1c.tar.gz freebsd-ports-gnome-d1c66c82a563be8eb2f4c7b6e96c75d3adb7eb1c.tar.zst freebsd-ports-gnome-d1c66c82a563be8eb2f4c7b6e96c75d3adb7eb1c.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>
Diffstat (limited to 'sysutils/pear-Log')
-rw-r--r-- | sysutils/pear-Log/Makefile | 12 | ||||
-rw-r--r-- | sysutils/pear-Log/pkg-plist | 14 |
2 files changed, 6 insertions, 20 deletions
diff --git a/sysutils/pear-Log/Makefile b/sysutils/pear-Log/Makefile index 4b377a581986..f4d5b330040c 100644 --- a/sysutils/pear-Log/Makefile +++ b/sysutils/pear-Log/Makefile @@ -7,6 +7,7 @@ PORTNAME= Log PORTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= sysutils www pear MAINTAINER= ports@FreeBSD.org @@ -15,11 +16,10 @@ COMMENT= PEAR logging utilities BUILD_DEPENDS= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB RUN_DEPENDS= ${BUILD_DEPENDS} -.include <bsd.port.pre.mk> -.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common" - -do-install: - @${CP} -Rp ${WRKSRC}/* ${PEARDIR} - @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/${PORTNAME}* +FILES= Log.php Log/composite.php Log/console.php Log/error_log.php \ + Log/file.php Log/mail.php Log/mcal.php Log/observer.php \ + Log/sql.php Log/syslog.php Log/win.php +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" .include <bsd.port.post.mk> diff --git a/sysutils/pear-Log/pkg-plist b/sysutils/pear-Log/pkg-plist deleted file mode 100644 index 731f8fafdc0c..000000000000 --- a/sysutils/pear-Log/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -%%PEARDIR%%/Log/composite.php -%%PEARDIR%%/Log/console.php -%%PEARDIR%%/Log/error_log.php -%%PEARDIR%%/Log/file.php -%%PEARDIR%%/Log/mail.php -%%PEARDIR%%/Log/mcal.php -%%PEARDIR%%/Log/observer.php -%%PEARDIR%%/Log/sql.php -%%PEARDIR%%/Log/syslog.php -%%PEARDIR%%/Log/win.php -%%PEARDIR%%/Log.php -%%PKGREGDIR%%/package.xml -@dirrm %%PEARDIR%%/Log -@dirrm %%PKGREGDIR%% |