diff options
author | fhajny <fhajny@pkgsrc.org> | 2015-09-03 06:19:26 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2015-09-03 06:19:26 +0000 |
commit | e5b41d0a5ef0b6f136963b4b22b6af79d268056f (patch) | |
tree | 33a4a507bd11eb8226f706cde987f557b006b1de /security | |
parent | 5d54ba118d0152055fb6e837823ce8e3a3a142d1 (diff) | |
download | pkgsrc-e5b41d0a5ef0b6f136963b4b22b6af79d268056f.tar.gz |
Make sure php-oauth's configure can find pkgsrc libcurl. PKGREVISION++
Diffstat (limited to 'security')
-rw-r--r-- | security/php-oauth/Makefile | 6 | ||||
-rw-r--r-- | security/php-oauth/distinfo | 3 | ||||
-rw-r--r-- | security/php-oauth/patches/patch-config.m4 | 25 |
3 files changed, 31 insertions, 3 deletions
diff --git a/security/php-oauth/Makefile b/security/php-oauth/Makefile index 87b1dae146f..62e6aee9482 100644 --- a/security/php-oauth/Makefile +++ b/security/php-oauth/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2014/02/12 23:18:35 tron Exp $ +# $NetBSD: Makefile,v 1.3 2015/09/03 06:19:26 fhajny Exp $ MODNAME= oauth -PKGREVISION= 1 +PKGREVISION= 2 PECL_VERSION= 1.2.3 CATEGORIES+= security @@ -11,6 +11,8 @@ LICENSE= modified-bsd USE_LANGUAGES= c c++ +CONFIGURE_ARGS+= --with-curl=${BUILDLINK_PREFIX.curl} + .include "../../lang/php/ext.mk" .include "../../www/curl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/security/php-oauth/distinfo b/security/php-oauth/distinfo index eb97a0d4f41..08b498596b8 100644 --- a/security/php-oauth/distinfo +++ b/security/php-oauth/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1 2013/09/13 08:12:52 fhajny Exp $ +$NetBSD: distinfo,v 1.2 2015/09/03 06:19:26 fhajny Exp $ SHA1 (php-oauth/oauth-1.2.3.tgz) = e2a42961c8134746fc0cd8ef9bd433f760b94975 RMD160 (php-oauth/oauth-1.2.3.tgz) = 506f0644b22323a4d1ad6794433768d83357b5ba Size (php-oauth/oauth-1.2.3.tgz) = 45531 bytes +SHA1 (patch-config.m4) = c64940fc005c3f61a4c2bd8f370a4e16d434c336 diff --git a/security/php-oauth/patches/patch-config.m4 b/security/php-oauth/patches/patch-config.m4 new file mode 100644 index 00000000000..e3afaedd59b --- /dev/null +++ b/security/php-oauth/patches/patch-config.m4 @@ -0,0 +1,25 @@ +$NetBSD: patch-config.m4,v 1.1 2015/09/03 06:19:26 fhajny Exp $ + +Make sure configure can find our curl. + +--- config.m4.orig 1970-01-01 09:13:08.000000000 +0000 ++++ config.m4 +@@ -5,6 +5,9 @@ dnl + PHP_ARG_ENABLE(oauth, for oauth support, + [ --enable-oauth Include oauth support]) + ++PHP_ARG_WITH([curl], [whether to enable cURL engine support], ++[ --with-curl[=PATH] Include cURL engine support], $PHP_OAUTH, $PHP_OAUTH) ++ + if test "$PHP_OAUTH" != "no"; then + PHP_SUBST(OAUTH_SHARED_LIBADD) + +@@ -12,7 +15,7 @@ if test "$PHP_OAUTH" != "no"; then + CFLAGS="$CFLAGS -Wall -g" + + AC_MSG_CHECKING(for cURL in default path) +- for i in /usr/local /usr; do ++ for i in "$PHP_CURL" /usr/local /usr; do + if test -r $i/include/curl/easy.h; then + CURL_DIR=$i + AC_MSG_RESULT(found in $i) |