summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>