diff options
author | miwi <miwi@FreeBSD.org> | 2010-05-15 13:18:25 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-05-15 13:18:25 +0800 |
commit | 262bb22c083481abc0224d8fefe3db60cb4d584c (patch) | |
tree | 7daed40e3c2c4fc5034fadb4be85bb43f2e740c2 /graphics/pear-Image_Graph | |
parent | 08bb7058571693dcfdf179884fc78cbaf974078a (diff) | |
download | freebsd-ports-gnome-262bb22c083481abc0224d8fefe3db60cb4d584c.tar.gz freebsd-ports-gnome-262bb22c083481abc0224d8fefe3db60cb4d584c.tar.zst freebsd-ports-gnome-262bb22c083481abc0224d8fefe3db60cb4d584c.zip |
- Fix php53 issus
- Take over maintainership
PR: 146555
Submitted by: olli hauer <ohauer@gmx.de>
Approved by: Nick Hilliard <nick@foobar.org> (prev. maintainer)
Diffstat (limited to 'graphics/pear-Image_Graph')
-rw-r--r-- | graphics/pear-Image_Graph/Makefile | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/graphics/pear-Image_Graph/Makefile b/graphics/pear-Image_Graph/Makefile index 238a92c027b8..d5a172df712b 100644 --- a/graphics/pear-Image_Graph/Makefile +++ b/graphics/pear-Image_Graph/Makefile @@ -10,13 +10,16 @@ PORTVERSION= 0.7.2 PORTREVISION= 2 CATEGORIES= graphics www pear -MAINTAINER= nick@foobar.org +MAINTAINER= miwi@FreeBSD.org COMMENT= An OO PEAR graph rendering package BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear RUN_DEPENDS= ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ ${PEARDIR}/Image/Canvas.php:${PORTSDIR}/graphics/pear-Image_Canvas +USE_PHP= yes +USE_DOS2UNIX= yes + CATEGORY= Image FILES= Graph.php Graph/Axis.php Graph/Common.php Graph/Config.php \ Graph/Constants.php Graph/DataPreprocessor.php \ @@ -163,12 +166,23 @@ DOCS= ChangeLog colors.txt LICENSE README examples/antialias.php \ LATEST_LINK= pear-Image_Graph +.include <bsd.port.pre.mk> post-patch: +# don't modify images .for file in ${FILES} - @${REINPLACE_CMD} -e "s|@package_version@|${DISTVERSION}|" ${WRKSRC}/${file} + @if ${ECHO_CMD} ${file} | ${GREP} -q -e "php$$" ; then \ + ${REINPLACE_CMD} -e "s|@package_version@|${DISTVERSION}|" ${WRKSRC}/${file}; \ + fi .endfor -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +# fix for php5.3, see http://pear.php.net/bugs/bug.php?id=16529 +.if ${PHP_VER} != 4 +.for file in ${FILES} + @if ${ECHO_CMD} ${file} | ${GREP} -q -e "php$$" ; then \ + ${REINPLACE_CMD} -e 's|parent::Image[^(]*|parent::__construct|' ${WRKSRC}/${file}; \ + fi +.endfor +.endif +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include <bsd.port.post.mk> |