commit:     cd98e174190d0f3f12c0f02682a58228a0167f28
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 14 12:53:31 2019 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Dec 14 13:01:40 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd98e174

media-sound/linuxsampler: fixed linuxsampler-2.0.0-lv2-automagic.patch

the patch unfortunately changed the logic of lv2 detection
and broke it in such way that it worked with lv2-1.14.0 but
did not work with lv2-1.16.0 so the patch had to be fixed

Closes: https://bugs.gentoo.org/701606
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 .../files/linuxsampler-2.0.0-lv2-automagic.patch            | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git 
a/media-sound/linuxsampler/files/linuxsampler-2.0.0-lv2-automagic.patch 
b/media-sound/linuxsampler/files/linuxsampler-2.0.0-lv2-automagic.patch
index a5b9f8d71ef..522882abf5c 100644
--- a/media-sound/linuxsampler/files/linuxsampler-2.0.0-lv2-automagic.patch
+++ b/media-sound/linuxsampler/files/linuxsampler-2.0.0-lv2-automagic.patch
@@ -1,6 +1,8 @@
---- linuxsampler-2.0.0/configure.ac
-+++ linuxsampler-2.0.0/configure.ac
-@@ -532,12 +532,12 @@
+diff --git a/configure.ac b/configure.ac
+index c0a37e9..44348ad 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -535,12 +535,15 @@ AC_CHECK_HEADERS(dssi.h,
  AM_CONDITIONAL(HAVE_DSSI, test $config_have_dssi = "yes")
  
  # LV2
@@ -14,7 +16,10 @@
 +      AS_HELP_STRING([--enable-lv2], [Enable building with lv2]))
 +config_have_lv2="no"
 +AS_IF([test "x$enable_lv2" = "xyes"], [
-+      PKG_CHECK_MODULES([LV2], [lv2 >= 1.0.0 lv2core >= 1.0.0], 
[config_have_lv2="yes"])
++      PKG_CHECK_MODULES(LV2, lv2 >= 1.0.0, config_have_lv2="yes", 
config_have_lv2="no")
++      if test "$config_have_lv2" != "yes"; then
++          PKG_CHECK_MODULES(LV2, lv2core >= 1.0.0, config_have_lv2="yes", 
config_have_lv2="no")
++      fi
 +])
  AM_CONDITIONAL(HAVE_LV2, test $config_have_lv2 = "yes")
  

Reply via email to