diff options
3 files changed, 67 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gimp/gimp/gimp/0001-configure-Keep-first-line-of-compiler-version-string.patch b/meta-gnome/recipes-gimp/gimp/gimp/0001-configure-Keep-first-line-of-compiler-version-string.patch new file mode 100644 index 0000000000..618b4cc7a7 --- /dev/null +++ b/meta-gnome/recipes-gimp/gimp/gimp/0001-configure-Keep-first-line-of-compiler-version-string.patch | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | From 5711ccfab40e304ced7f5be39a4083e3fcecff91 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Wed, 24 May 2023 22:22:41 -0700 | ||
| 4 | Subject: [PATCH] configure: Keep first line of compiler version string | ||
| 5 | |||
| 6 | Full output of cc -v may contain additional information which could | ||
| 7 | contain build path information, which is unnessasary | ||
| 8 | |||
| 9 | Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/gimp/-/merge_requests/926] | ||
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 11 | --- | ||
| 12 | configure.ac | 2 +- | ||
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/configure.ac b/configure.ac | ||
| 16 | index c25415d..68707a0 100644 | ||
| 17 | --- a/configure.ac | ||
| 18 | +++ b/configure.ac | ||
| 19 | @@ -599,7 +599,7 @@ fi | ||
| 20 | for CC_VERSION_OPT in $CC_VERSION_OPTS; do | ||
| 21 | # We run $CC, and escape and format its output, in a single step, | ||
| 22 | # since some shells expand escape sequences in "echo" arguments. | ||
| 23 | - CC_VERSION="`$CC $CC_VERSION_OPT 2>&1 | sed -e 's/\\\\/\\\\\\\\\\\\\\\\/g;s/^/\\\\t/;s/$/\\\\n/' | tr -d '\n'`" | ||
| 24 | + CC_VERSION="`$CC $CC_VERSION_OPT 2>&1 | head -1 | sed -e 's/\\\\/\\\\\\\\\\\\\\\\/g;s/^/\\\\t/;s/$/\\\\n/' | tr -d '\n'`" | ||
| 25 | if test $? -eq 0; then | ||
| 26 | break | ||
| 27 | fi | ||
| 28 | -- | ||
| 29 | 2.40.1 | ||
| 30 | |||
diff --git a/meta-gnome/recipes-gimp/gimp/gimp/0001-libtool-Do-not-add-build-time-library-paths-to-LD_LI.patch b/meta-gnome/recipes-gimp/gimp/gimp/0001-libtool-Do-not-add-build-time-library-paths-to-LD_LI.patch new file mode 100644 index 0000000000..cec0055284 --- /dev/null +++ b/meta-gnome/recipes-gimp/gimp/gimp/0001-libtool-Do-not-add-build-time-library-paths-to-LD_LI.patch | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | From c720df90dfe3a3e92e34bfb36a04cc792064a501 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Wed, 24 May 2023 22:39:02 -0700 | ||
| 4 | Subject: [PATCH] libtool: Do not add build time library paths to | ||
| 5 | LD_LIBRARY_PATH | ||
| 6 | |||
| 7 | This does not serve much purpose on cross builds as it will add build | ||
| 8 | time paths which are only useful when trying to run these tools from | ||
| 9 | build area but when they are cross built this is not possible to run | ||
| 10 | them like this. | ||
| 11 | |||
| 12 | Upstream-Status: Inappropriate [Cross-compile specific] | ||
| 13 | |||
| 14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 15 | --- | ||
| 16 | ltmain.sh | 2 +- | ||
| 17 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 18 | |||
| 19 | diff --git a/ltmain.sh b/ltmain.sh | ||
| 20 | index 134902c..068d74a 100644 | ||
| 21 | --- a/ltmain.sh | ||
| 22 | +++ b/ltmain.sh | ||
| 23 | @@ -5748,7 +5748,7 @@ func_exec_program () | ||
| 24 | if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then | ||
| 25 | $ECHO "\ | ||
| 26 | # Add our own library path to $shlibpath_var | ||
| 27 | - $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" | ||
| 28 | + $shlibpath_var=\"$shlibpath_var\" | ||
| 29 | |||
| 30 | # Some systems cannot cope with colon-terminated $shlibpath_var | ||
| 31 | # The second colon is a workaround for a bug in BeOS R4 sed | ||
| 32 | -- | ||
| 33 | 2.40.1 | ||
| 34 | |||
diff --git a/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb b/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb index 76825d96c5..7343036807 100644 --- a/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb +++ b/meta-gnome/recipes-gimp/gimp/gimp_2.10.34.bb | |||
| @@ -43,7 +43,9 @@ REQUIRED_DISTRO_FEATURES = "x11" | |||
| 43 | 43 | ||
| 44 | SHPV = "${@gnome_verdir("${PV}")}" | 44 | SHPV = "${@gnome_verdir("${PV}")}" |
| 45 | 45 | ||
| 46 | SRC_URI = "https://download.gimp.org/pub/${BPN}/v${SHPV}/${BP}.tar.bz2" | 46 | SRC_URI = "https://download.gimp.org/pub/${BPN}/v${SHPV}/${BP}.tar.bz2 \ |
| 47 | file://0001-configure-Keep-first-line-of-compiler-version-string.patch \ | ||
| 48 | file://0001-libtool-Do-not-add-build-time-library-paths-to-LD_LI.patch" | ||
| 47 | SRC_URI[sha256sum] = "84004642d351b398a4293cd7fd3592044a944f05bb52850ee6068f247c657aa3" | 49 | SRC_URI[sha256sum] = "84004642d351b398a4293cd7fd3592044a944f05bb52850ee6068f247c657aa3" |
| 48 | 50 | ||
| 49 | EXTRA_OECONF = "--disable-python \ | 51 | EXTRA_OECONF = "--disable-python \ |
