aboutsummaryrefslogtreecommitdiff
path: root/audio/beatslash-lv2/files/patch-wscript
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2020-09-22 01:28:50 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2020-09-22 01:28:50 +0000
commit566e4787fdba59fb4c1be87d0a028b21a06769e7 (patch)
tree6f8420cc9072276c157e483119b48845206fed78 /audio/beatslash-lv2/files/patch-wscript
parente7b04b37f0ba0f4c13ec526f7c791cc911aea78b (diff)
downloadports-566e4787fdba59fb4c1be87d0a028b21a06769e7.tar.gz
ports-566e4787fdba59fb4c1be87d0a028b21a06769e7.zip
MFH: r549539
audio/beatslash-lv2: Fix build on some systems Waf warning about duplicately-installed files somehow caused failure to find some files later. This commit adds the patch to prevent duplicate file installation. This fixes the warning and hopefully fixes poudriere build. I couldn't reproduce this failure in my poudriere. Also: * Strip binarires * Fix WWW Approved by: ports-secteam (fluffy)
Notes
Notes: svn path=/branches/2020Q3/; revision=549552
Diffstat (limited to 'audio/beatslash-lv2/files/patch-wscript')
-rw-r--r--audio/beatslash-lv2/files/patch-wscript11
1 files changed, 10 insertions, 1 deletions
diff --git a/audio/beatslash-lv2/files/patch-wscript b/audio/beatslash-lv2/files/patch-wscript
index b1f94879fcce..49e6ebd1334f 100644
--- a/audio/beatslash-lv2/files/patch-wscript
+++ b/audio/beatslash-lv2/files/patch-wscript
@@ -1,4 +1,4 @@
---- wscript.orig 2016-11-06 20:24:40 UTC
+--- wscript.orig 2019-02-23 21:03:41 UTC
+++ wscript
@@ -31,9 +31,9 @@ def configure(conf):
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', atleast_version='2.24.0')
@@ -13,3 +13,12 @@
check = 'Extended Initializer Lists'
conf.check_cxx(msg = check,
+@@ -78,7 +78,7 @@ def build_plugin(bld, bundle, name, source, cxxflags=[
+
+ # Install data file
+ data_file = '%s.ttl' % name
+- bld.install_files('${LV2DIR}/' + bundle, os.path.join(bundle, data_file))
++ #bld.install_files('${LV2DIR}/' + bundle, os.path.join(bundle, data_file)) # see https://github.com/blablack/beatslash-lv2/issues/9
+
+
+ def build_plugin_gui(bld, bundle, name, source, cxxflags=[], libs=[], add_source=[]):