Date: Tue, 20 Mar 2018 02:20:07 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465055 - in head: devel/pecl-svn mail/pecl-mailparse mail/pecl-mailparse2 math/pecl-stats math/pecl-stats2 net-im/pecl-stomp net-im/pecl-stomp2 net/pecl-oauth net/pecl-oauth2 security/... Message-ID: <201803200220.w2K2K7Td086356@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Tue Mar 20 02:20:07 2018 New Revision: 465055 URL: https://svnweb.freebsd.org/changeset/ports/465055 Log: Fix order of IGNORE_WITH_PHP variable Related with `USES=php` so is better to keep them together Reported by: mat Modified: head/devel/pecl-svn/Makefile head/mail/pecl-mailparse/Makefile head/mail/pecl-mailparse2/Makefile head/math/pecl-stats/Makefile head/math/pecl-stats2/Makefile head/net-im/pecl-stomp/Makefile head/net-im/pecl-stomp2/Makefile head/net/pecl-oauth/Makefile head/net/pecl-oauth2/Makefile head/security/pecl-ssh2-0/Makefile head/security/pecl-ssh2/Makefile head/textproc/pecl-xdiff/Makefile head/textproc/pecl-xdiff2/Makefile head/textproc/pecl-yaml/Makefile head/textproc/pecl-yaml1/Makefile Modified: head/devel/pecl-svn/Makefile ============================================================================== --- head/devel/pecl-svn/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/devel/pecl-svn/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,11 +11,10 @@ COMMENT= PECL extension to the libsvn library LICENSE= PHP301 -IGNORE_WITH_PHP= 70 71 72 - LIB_DEPENDS= libsvn_client-1.so:devel/subversion USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 USE_CSTD= c99 .include <bsd.port.mk> Modified: head/mail/pecl-mailparse/Makefile ============================================================================== --- head/mail/pecl-mailparse/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/mail/pecl-mailparse/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,9 +11,8 @@ COMMENT= PECL extension to create and decode MIME mess LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - USES= php:pecl USE_PHP= mbstring:build +IGNORE_WITH_PHP= 56 .include <bsd.port.mk> Modified: head/mail/pecl-mailparse2/Makefile ============================================================================== --- head/mail/pecl-mailparse2/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/mail/pecl-mailparse2/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,10 +11,9 @@ COMMENT= PECL extension to create and decode MIME mess LICENSE= PHP202 -IGNORE_WITH_PHP= 70 71 72 - USES= php:pecl USE_PHP= mbstring:build +IGNORE_WITH_PHP= 70 71 72 PORTSCOUT= limit:^2.* Modified: head/math/pecl-stats/Makefile ============================================================================== --- head/math/pecl-stats/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/math/pecl-stats/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,9 +11,8 @@ COMMENT= PECL extension with routines for statistical LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 70 71 72 - USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 PORTSCOUT= limit:^1.* Modified: head/math/pecl-stats2/Makefile ============================================================================== --- head/math/pecl-stats2/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/math/pecl-stats2/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -10,9 +10,8 @@ COMMENT= PECL extension with routines for statistical LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - USES= php:pecl +IGNORE_WITH_PHP= 56 CONFLICTS= pecl-stats-1* PORTSCOUT= limit:^2.* Modified: head/net-im/pecl-stomp/Makefile ============================================================================== --- head/net-im/pecl-stomp/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/net-im/pecl-stomp/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -12,9 +12,8 @@ COMMENT= PECL extension of stomp client LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 70 71 72 - USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 PORTSCOUT= limit:^1.* Modified: head/net-im/pecl-stomp2/Makefile ============================================================================== --- head/net-im/pecl-stomp2/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/net-im/pecl-stomp2/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -10,9 +10,8 @@ COMMENT= PECL extension of stomp client LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - USES= php:pecl +IGNORE_WITH_PHP= 56 CONFLICTS= pecl-stomp-1* PORTSCOUT= limit:^2.* Modified: head/net/pecl-oauth/Makefile ============================================================================== --- head/net/pecl-oauth/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/net/pecl-oauth/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -12,11 +12,10 @@ COMMENT= Php Interface to the OAuth Protocol LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 70 71 72 - LIB_DEPENDS= libcurl.so:ftp/curl USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/net/pecl-oauth2/Makefile ============================================================================== --- head/net/pecl-oauth2/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/net/pecl-oauth2/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -10,11 +10,10 @@ COMMENT= Php interface to the OAuth Protocol LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - LIB_DEPENDS= libcurl.so:ftp/curl USES= php:pecl +IGNORE_WITH_PHP= 56 CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/security/pecl-ssh2-0/Makefile ============================================================================== --- head/security/pecl-ssh2-0/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/security/pecl-ssh2-0/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,11 +11,10 @@ COMMENT= PECL extension to the libssh2 library LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 70 71 72 - LIB_DEPENDS= libssh2.so:security/libssh2 USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIBS} Modified: head/security/pecl-ssh2/Makefile ============================================================================== --- head/security/pecl-ssh2/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/security/pecl-ssh2/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,11 +11,10 @@ COMMENT= PECL extension to the libssh2 library LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - LIB_DEPENDS= libssh2.so:security/libssh2 USES= php:pecl +IGNORE_WITH_PHP= 56 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIBS} Modified: head/textproc/pecl-xdiff/Makefile ============================================================================== --- head/textproc/pecl-xdiff/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/textproc/pecl-xdiff/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,11 +11,10 @@ COMMENT= PECL extension to create/apply binary and tex LICENSE= PHP301 -IGNORE_WITH_PHP= 70 71 72 - LIB_DEPENDS= libxdiff.so:textproc/libxdiff USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 LDFLAGS+= -L${LOCALBASE}/lib Modified: head/textproc/pecl-xdiff2/Makefile ============================================================================== --- head/textproc/pecl-xdiff2/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/textproc/pecl-xdiff2/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -10,11 +10,10 @@ COMMENT= PECL extension to create/apply binary and tex LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - LIB_DEPENDS= libxdiff.so:textproc/libxdiff USES= php:pecl +IGNORE_WITH_PHP= 56 CONFLICTS= pecl-xdiff-1* LDFLAGS+= -L${LOCALBASE}/lib Modified: head/textproc/pecl-yaml/Makefile ============================================================================== --- head/textproc/pecl-yaml/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/textproc/pecl-yaml/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,10 +11,9 @@ COMMENT= YAML-1.1 parser and emitter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 56 - LIB_DEPENDS= libyaml.so:textproc/libyaml USES= php:pecl +IGNORE_WITH_PHP= 56 .include <bsd.port.mk> Modified: head/textproc/pecl-yaml1/Makefile ============================================================================== --- head/textproc/pecl-yaml1/Makefile Tue Mar 20 02:19:21 2018 (r465054) +++ head/textproc/pecl-yaml1/Makefile Tue Mar 20 02:20:07 2018 (r465055) @@ -11,12 +11,11 @@ COMMENT= YAML-1.1 parser and emitter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -IGNORE_WITH_PHP= 70 71 72 - LIB_DEPENDS= libyaml.so:textproc/libyaml PORTSCOUT= limit:^1.* USES= php:pecl +IGNORE_WITH_PHP= 70 71 72 .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803200220.w2K2K7Td086356>