diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2016-11-26 10:33:32 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2016-11-26 10:33:32 +0000 |
commit | 490d612cfe52aa0adfd8f8b303d8ea0141ad86a7 (patch) | |
tree | 336c5d2d7432e5a808c41e669995dd728a052924 /converters/pecl-igbinary | |
parent | 09b960804380f70430a335b4d5a9c049fa94165f (diff) |
Notes
Diffstat (limited to 'converters/pecl-igbinary')
-rw-r--r-- | converters/pecl-igbinary/Makefile | 14 |
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> |