From 990dbf5a48a258c451d1f0a0e9b7e462ceef3eaf Mon Sep 17 00:00:00 2001 From: Brian Evans Date: Wed, 29 Sep 2021 19:15:18 -0400 Subject: dev-php/pecl-ps: Fix build error with gd detection Closes: https://bugs.gentoo.org/815388 Signed-off-by: Brian Evans --- 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(-) create mode 100644 dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch (limited to 'dev-php') 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 000000000000..282bc7a34106 --- /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 9de12888a4cc..e010eda79f51 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 } -- cgit v1.2.3-65-gdbad