commit:     990dbf5a48a258c451d1f0a0e9b7e462ceef3eaf
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 29 23:15:18 2021 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Sep 29 23:15:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990dbf5a

dev-php/pecl-ps: Fix build error with gd detection

Closes: https://bugs.gentoo.org/815388
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch | 11 +++++++++++
 dev-php/pecl-ps/pecl-ps-1.4.4.ebuild                  |  3 ++-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch 
b/dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch
new file mode 100644
index 00000000000..282bc7a3410
--- /dev/null
+++ b/dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch
@@ -0,0 +1,11 @@
+--- a/config.m4
++++ b/config.m4
+@@ -38,7 +38,7 @@
+ PHP_ARG_ENABLE([gd],
+   [for GD support],
+   [AS_HELP_STRING([--enable-gd],
+-    [Include GD support])])
++    [Include GD support])], no, no)
+ 
+ if test "$PHP_GD" != "no"; then
+ 

diff --git a/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild 
b/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild
index 9de12888a4c..e010eda79f5 100644
--- a/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild
+++ b/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild
@@ -18,9 +18,10 @@ IUSE="examples gd"
 
 DEPEND="dev-libs/pslib gd? ( media-libs/gd:2= )"
 RDEPEND="${DEPEND}"
+PATCHES=( "${FILESDIR}/ps-1.4.4-fix-gd-detection.patch" )
 
 src_configure() {
-       PHP_EXT_ECONF_ARGS="$(use_enable gd)"
+       PHP_EXT_ECONF_ARGS=( $(use_enable gd) )
        php-ext-source-r3_src_configure
 }
 

Reply via email to