From owner-dev-commits-ports-main@freebsd.org Thu Apr 8 00:33:07 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 088855C9402; Thu, 8 Apr 2021 00:33:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FG2Kt6ttnz3HX3; Thu, 8 Apr 2021 00:33:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DF4FA28AA9; Thu, 8 Apr 2021 00:33:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1380X67x042129; Thu, 8 Apr 2021 00:33:06 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1380X6S8042128; Thu, 8 Apr 2021 00:33:06 GMT (envelope-from git) Date: Thu, 8 Apr 2021 00:33:06 GMT Message-Id: <202104080033.1380X6S8042128@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: cbdd9d9db1b4 - main - New port: audio/littlefly-lv2: Overdrive/distortion pedal simulation LV2 plugin MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: cbdd9d9db1b424522d78c3181dd578b876a3f2ca Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Apr 2021 00:33:07 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=cbdd9d9db1b424522d78c3181dd578b876a3f2ca commit cbdd9d9db1b424522d78c3181dd578b876a3f2ca Author: Yuri Victorovich AuthorDate: 2021-04-08 00:32:27 +0000 Commit: Yuri Victorovich CommitDate: 2021-04-08 00:32:27 +0000 New port: audio/littlefly-lv2: Overdrive/distortion pedal simulation LV2 plugin --- audio/Makefile | 1 + audio/littlefly-lv2/Makefile | 30 ++++++++++++++++++++++ audio/littlefly-lv2/distinfo | 5 ++++ audio/littlefly-lv2/files/patch-LittleFly_Makefile | 19 ++++++++++++++ audio/littlefly-lv2/pkg-descr | 3 +++ 5 files changed, 58 insertions(+) diff --git a/audio/Makefile b/audio/Makefile index ed60bb912d3b..aac65af898a3 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -431,6 +431,7 @@ SUBDIR += linuxsampler SUBDIR += liquidsfz SUBDIR += listener + SUBDIR += littlefly-lv2 SUBDIR += lmms SUBDIR += logitechmediaserver SUBDIR += logitechmediaserver-dynamicplaylist diff --git a/audio/littlefly-lv2/Makefile b/audio/littlefly-lv2/Makefile new file mode 100644 index 000000000000..f35eff5713e0 --- /dev/null +++ b/audio/littlefly-lv2/Makefile @@ -0,0 +1,30 @@ +PORTNAME= littlefly +DISTVERSIONPREFIX= v +DISTVERSION= 1.0 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Overdrive/distortion pedal simulation LV2 plugin + +LICENSE= BSD0CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= lv2>0:audio/lv2 + +USES= gmake gnome localbase pkgconfig xorg +USE_GNOME= cairo +USE_XORG= x11 +USE_BINUTILS= yes # linking needs some GNU features, fails on 12 without this, see https://github.com/brummer10/GxPlugins.lv2/issues/9 + +USE_GITHUB= yes +GH_ACCOUNT= brummer10 +GH_PROJECT= LittleFly.lv2 +GH_TUPLE= brummer10:libxputty:70c910d:libxputty/libxputty + +PLIST_FILES= lib/lv2/LittleFly.lv2/LittleFly.so \ + lib/lv2/LittleFly.lv2/LittleFly.ttl \ + lib/lv2/LittleFly.lv2/LittleFly_ui.so \ + lib/lv2/LittleFly.lv2/manifest.ttl + +.include diff --git a/audio/littlefly-lv2/distinfo b/audio/littlefly-lv2/distinfo new file mode 100644 index 000000000000..fd0184e3bc8e --- /dev/null +++ b/audio/littlefly-lv2/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1617770944 +SHA256 (brummer10-LittleFly.lv2-v1.0_GH0.tar.gz) = 586b89ff0e18a3700a06d4c53792f5a79e859a22ee7f1db8988220da009b3ea7 +SIZE (brummer10-LittleFly.lv2-v1.0_GH0.tar.gz) = 102121 +SHA256 (brummer10-libxputty-70c910d_GH0.tar.gz) = 34879c6a7a7de9dc48503486b75b90b4db6a42da8d019215dc741425d92a8c51 +SIZE (brummer10-libxputty-70c910d_GH0.tar.gz) = 275065 diff --git a/audio/littlefly-lv2/files/patch-LittleFly_Makefile b/audio/littlefly-lv2/files/patch-LittleFly_Makefile new file mode 100644 index 000000000000..8a2c445c08fa --- /dev/null +++ b/audio/littlefly-lv2/files/patch-LittleFly_Makefile @@ -0,0 +1,19 @@ +--- LittleFly/Makefile.orig 2021-04-08 00:24:47 UTC ++++ LittleFly/Makefile +@@ -3,11 +3,11 @@ + STRIP ?= strip + # check if user is root + user = $(shell whoami) +- ifeq ($(user),root) +- INSTALL_DIR ?= /usr/lib/lv2 +- else +- INSTALL_DIR ?= ~/.lv2 +- endif ++ #ifeq ($(user),root) ++ INSTALL_DIR ?= $(PREFIX)/lib/lv2 ++ #else ++ #INSTALL_DIR ?= ~/.lv2 ++ #endif + + # check CPU and supported optimization flags + ifeq ($(UNAME), Linux) diff --git a/audio/littlefly-lv2/pkg-descr b/audio/littlefly-lv2/pkg-descr new file mode 100644 index 000000000000..2507f26588d6 --- /dev/null +++ b/audio/littlefly-lv2/pkg-descr @@ -0,0 +1,3 @@ +LittleFly is an LV2 plugin performing overdrive pedal simulation. + +WWW: https://github.com/brummer10/LittleFly.lv2