summaryrefslogtreecommitdiff
path: root/converters/pecl-igbinary
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2016-11-26 10:33:32 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2016-11-26 10:33:32 +0000
commit490d612cfe52aa0adfd8f8b303d8ea0141ad86a7 (patch)
tree336c5d2d7432e5a808c41e669995dd728a052924 /converters/pecl-igbinary
parentdatabases/cego: 2.31.5 -> 2.31.6 (diff)
- Fix installation of igbinary.h and php_igbinary.h
- Bump PORTREVISION for package change
Notes
Notes: svn path=/head/; revision=427138
Diffstat (limited to 'converters/pecl-igbinary')
-rw-r--r--converters/pecl-igbinary/Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/converters/pecl-igbinary/Makefile b/converters/pecl-igbinary/Makefile
index 9c84315a7c03..fbdfe0ddd5e1 100644
--- a/converters/pecl-igbinary/Makefile
+++ b/converters/pecl-igbinary/Makefile
@@ -3,6 +3,7 @@
PORTNAME= igbinary
PORTVERSION= 2.0.0
+PORTREVISION= 1
CATEGORIES= converters
MASTER_SITES= http://pecl.php.net/get/ \
LOCAL/sunpoet
@@ -17,4 +18,15 @@ LICENSE_FILE= ${WRKSRC}/COPYING
USES= php:ext tar:tgz
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+post-patch:
+.if ${PHP_VER} >= 70
+ ${CP} ${WRKSRC}/src/php7/igbinary.h ${WRKSRC}/igbinary.h
+ ${CP} ${WRKSRC}/src/php7/php_igbinary.h ${WRKSRC}/php_igbinary.h
+.else
+ ${CP} ${WRKSRC}/src/php5/igbinary.h ${WRKSRC}/igbinary.h
+ ${CP} ${WRKSRC}/src/php5/php_igbinary.h ${WRKSRC}/php_igbinary.h
+.endif
+
+.include <bsd.port.post.mk>