From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lsp-plugins/
Date: Thu, 4 May 2023 11:21:15 +0000 (UTC) [thread overview]
Message-ID: <1683199261.6c6bc70ed340f5928e421fde03cb267ff31ab37f.sam@gentoo> (raw)
commit: 6c6bc70ed340f5928e421fde03cb267ff31ab37f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 11:19:34 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 4 11:21:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c6bc70e
media-libs/lsp-plugins: add 1.2.6
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/lsp-plugins/Manifest | 1 +
media-libs/lsp-plugins/lsp-plugins-1.2.6.ebuild | 88 +++++++++++++++++++++++++
2 files changed, 89 insertions(+)
diff --git a/media-libs/lsp-plugins/Manifest b/media-libs/lsp-plugins/Manifest
index 11db6e6441b5..60004443c499 100644
--- a/media-libs/lsp-plugins/Manifest
+++ b/media-libs/lsp-plugins/Manifest
@@ -1,2 +1,3 @@
DIST lsp-plugins-1.1.29.tar.gz 66143142 BLAKE2B 6fa6943d8cdf3aedc9f671c64b433ffd5c4f6c7ca14f6a75578300240971e7c9e8546b9a7df7a13b8cd6e0844724c064daa7e249aba70636f47a622e73ed264a SHA512 b8c3804ad583322bce414d6beb079afa5b98a111126bb4507642376fcf1f82b31525b4959c6388b02cc1d14e0ec25de3596794895f2860f492a5fbf87f6e88b7
DIST lsp-plugins-1.2.3.tar.gz 38760829 BLAKE2B c28a4b5cfdbbe5fe42c3f4821ce323cb097b84eddc850f43adcc14e8a9edb2e313236ce44e4eca17dd226c578113a5749d06754deb45a6c2e7c2ff37bfed4fc2 SHA512 1db849ebceffb24540879fcd0971ddd8bffe9a0ecaaebf4b69bf8633a267562bb3eb5cd55dce8b804868d880efdec95b19a312ee017c2a9334b5e764eebbbb30
+DIST lsp-plugins-1.2.6.tar.gz 40450212 BLAKE2B 02364391f4edc894c566b0038f0340be1f923c3de6dfc48ed90460df7a6ba452720e63bb1e510e5ff580e38066915f1761bcd2ca72cdba429163cf24b20ed09e SHA512 d76cee24e976022594eac4830987921ff18c0622bae1ac2fb4744d45ee89dccd1211247f9f7d6df1083c8629f66cd443bce701864a85ff10e66abcf2fae749ce
diff --git a/media-libs/lsp-plugins/lsp-plugins-1.2.6.ebuild b/media-libs/lsp-plugins/lsp-plugins-1.2.6.ebuild
new file mode 100644
index 000000000000..0cfd8b1be10f
--- /dev/null
+++ b/media-libs/lsp-plugins/lsp-plugins-1.2.6.ebuild
@@ -0,0 +1,88 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic xdg
+
+DESCRIPTION="Linux Studio Plugins"
+HOMEPAGE="https://lsp-plug.in"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sadko4u/lsp-plugins"
+ EGIT_BRANCH="devel"
+else
+ SRC_URI="https://github.com/sadko4u/${PN}/releases/download/${PV}/${PN}-src-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+ S="${WORKDIR}/${PN}"
+fi
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="doc jack ladspa +lv2 test vst X"
+REQUIRED_USE="|| ( jack ladspa lv2 )
+ test? ( jack )"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="doc? ( dev-lang/php:* )"
+DEPEND="
+ media-libs/libglvnd[X]
+ media-libs/libsndfile
+ jack? (
+ media-libs/freetype
+ virtual/jack
+ x11-libs/cairo[X]
+ x11-libs/libX11
+ x11-libs/libXrandr
+ )
+ ladspa? ( media-libs/ladspa-sdk )
+ lv2? (
+ media-libs/freetype
+ media-libs/lv2
+ x11-libs/cairo[X]
+ x11-libs/libX11
+ x11-libs/libXrandr
+ )
+ vst? (
+ media-libs/freetype
+ x11-libs/cairo[X]
+ x11-libs/libX11
+ x11-libs/libXrandr
+ )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ use doc && MODULES+="doc"
+ use jack && MODULES+=" jack"
+ use ladspa && MODULES+=" ladspa"
+ use lv2 && MODULES+=" lv2"
+ use vst && MODULES+=" vst2"
+ use X && MODULES+=" xdg"
+ emake \
+ FEATURES="${MODULES}" \
+ PREFIX="/usr" \
+ LIBDIR="/usr/$(get_libdir)" \
+ CFLAGS_EXT="${CFLAGS}" \
+ CXXFLAGS_EXT="${CXXFLAGS}" \
+ LDFLAGS_EXT="$(raw-ldflags)" \
+ VERBOSE=1 \
+ config
+}
+
+src_compile() {
+ emake \
+ FEATURES="${MODULES}" \
+ PREFIX="/usr" \
+ LIBDIR="/usr/$(get_libdir)" \
+ CFLAGS_EXT="${CFLAGS}" \
+ CXXFLAGS_EXT="${CXXFLAGS}" \
+ LDFLAGS_EXT="$(raw-ldflags)" \
+ VERBOSE=1
+}
+
+src_install() {
+ emake PREFIX="/usr" DESTDIR="${ED}" LIB_PATH="/usr/$(get_libdir)" VERBOSE=1 install
+}
next reply other threads:[~2023-05-04 11:21 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-04 11:21 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-02 5:55 [gentoo-commits] repo/gentoo:master commit in: media-libs/lsp-plugins/ Arthur Zamarin
2024-04-02 5:55 Arthur Zamarin
2024-04-02 1:53 Sam James
2024-03-15 2:53 Sam James
2024-03-15 2:53 Sam James
2024-03-05 4:48 Sam James
2023-12-27 17:21 Marek Szuba
2023-05-05 9:50 Arthur Zamarin
2023-05-04 15:11 Arthur Zamarin
2022-10-19 3:47 Sam James
2022-10-03 1:57 Sam James
2022-10-03 1:57 Sam James
2022-10-03 0:49 Sam James
2021-12-06 14:59 Marek Szuba
2021-07-13 0:05 Sam James
2021-07-13 0:05 Sam James
2021-03-11 2:42 Sam James
2021-02-22 7:18 Sam James
2021-02-22 7:14 Sam James
2021-02-21 0:54 Sam James
2021-02-06 10:39 Miroslav Šulc
2021-02-06 10:35 Miroslav Šulc
2021-02-04 20:22 Miroslav Šulc
2021-01-06 6:34 Sam James
2020-12-31 5:20 Sam James
2020-08-16 19:20 Matthew Thode
2020-08-15 19:50 Matthew Thode
2020-06-16 18:56 Matthew Thode
2019-12-16 6:48 Matthew Thode
2019-04-14 0:59 Matthew Thode
2019-03-25 17:27 Matthew Thode
2019-03-20 23:35 Matthew Thode
2019-02-24 23:51 Matthew Thode
2019-02-24 22:03 Matthew Thode
2019-02-24 1:55 Matthew Thode
2019-02-23 22:25 Matthew Thode
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1683199261.6c6bc70ed340f5928e421fde03cb267ff31ab37f.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox