diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-02-24 05:27:41 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-02-24 05:27:41 +0000 |
commit | 37408314394e95028d8b2c39c7a046743f4a8aff (patch) | |
tree | 2b6191d95df05d3c803b2b608388da8da19d5172 /sysutils/pear-Log | |
parent | e9cbac30476d2a2b80b9d5e2de2698408bade36d (diff) | |
download | ports-37408314394e95028d8b2c39c7a046743f4a8aff.tar.gz ports-37408314394e95028d8b2c39c7a046743f4a8aff.zip |
Notes
Diffstat (limited to 'sysutils/pear-Log')
-rw-r--r-- | sysutils/pear-Log/Makefile | 14 | ||||
-rw-r--r-- | sysutils/pear-Log/pkg-deinstall | 13 |
2 files changed, 24 insertions, 3 deletions
diff --git a/sysutils/pear-Log/Makefile b/sysutils/pear-Log/Makefile index 56088d32ddef..f6d920d48d9d 100644 --- a/sysutils/pear-Log/Makefile +++ b/sysutils/pear-Log/Makefile @@ -7,6 +7,7 @@ PORTNAME= Log PORTVERSION= 1.5.3 +PORTREVISION= 1 CATEGORIES= sysutils www MASTER_SITES= http://pear.php.net/get/ PKGNAMEPREFIX= pear- @@ -16,8 +17,8 @@ DIST_SUBDIR= PEAR MAINTAINER= ports@FreeBSD.org COMMENT= PEAR logging utilities -BUILD_DEPENDS= ${PEARDIR}.DIST_PHP:${PORTSDIR}/devel/pear-install -RUN_DEPENDS= ${PEARDIR}.DIST_PHP:${PORTSDIR}/devel/pear-install +BUILD_DEPENDS= ${PEARDIR}/PEAR.php.dist:${PORTSDIR}/devel/pear-PEAR +RUN_DEPENDS= ${BUILD_DEPENDS} NO_BUILD= yes @@ -25,13 +26,20 @@ NO_BUILD= yes .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} do-install: @${CP} -Rp ${WRKSRC}/* ${PEARDIR} - @${CHOWN} -R root:wheel ${PEARDIR}/${PORTNAME}* + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/${PORTNAME}* + +post-install: +# Register a new package + @${PEAR} install -r -f ${WRKDIR}/package.xml .include <bsd.port.post.mk> diff --git a/sysutils/pear-Log/pkg-deinstall b/sysutils/pear-Log/pkg-deinstall new file mode 100644 index 000000000000..c17e9d19ced0 --- /dev/null +++ b/sysutils/pear-Log/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 |