aboutsummaryrefslogtreecommitdiff
path: root/audio/beatslash-lv2/Makefile
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/Makefile
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/Makefile')
-rw-r--r--audio/beatslash-lv2/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/audio/beatslash-lv2/Makefile b/audio/beatslash-lv2/Makefile
index dedbc418ebd1..8e425798fce9 100644
--- a/audio/beatslash-lv2/Makefile
+++ b/audio/beatslash-lv2/Makefile
@@ -3,7 +3,7 @@
PORTNAME= beatslash
DISTVERSIONPREFIX= v
DISTVERSION= 1.0.6
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= audio
PKGNAMESUFFIX= -lv2
@@ -29,4 +29,7 @@ USE_GNOME= atkmm gdkpixbuf2 gtkmm24
post-patch:
@${REINPLACE_CMD} -e 's|#include <lvtk-1/lvtk|#include <lvtk-2/lvtk|' ${WRKSRC}/src/*.?pp
+post-install:
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/beatslash.lv2/*.so
+
.include <bsd.port.mk>