From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/freeverb3/
Date: Sun, 25 Nov 2018 18:52:48 +0000 (UTC) [thread overview]
Message-ID: <1543171936.a1fa84be5c013dcb63dfc4fae5dbe01fd95dad7c.asturm@gentoo> (raw)
commit: a1fa84be5c013dcb63dfc4fae5dbe01fd95dad7c
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 25 16:20:18 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Nov 25 18:52:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1fa84be
media-libs/freeverb3: EAPI-7 bump, fix audacious USE-dep
Drop unused eclass.
Assorted cleanups to ebuild.
Bug: https://bugs.gentoo.org/671828
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/freeverb3/freeverb3-3.1.2-r1.ebuild | 75 ++++++++++++++++++++++++++
media-libs/freeverb3/freeverb3-3.2.1-r1.ebuild | 64 ++++++++++++++++++++++
2 files changed, 139 insertions(+)
diff --git a/media-libs/freeverb3/freeverb3-3.1.2-r1.ebuild b/media-libs/freeverb3/freeverb3-3.1.2-r1.ebuild
new file mode 100644
index 00000000000..ce7c135f900
--- /dev/null
+++ b/media-libs/freeverb3/freeverb3-3.1.2-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Reverb and Impulse Response Convolution plug-ins (Audacious/JACK)"
+HOMEPAGE="https://savannah.nongnu.org/projects/freeverb3"
+SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+_IUSE_INSTRUCTION_SETS="cpu_flags_x86_3dnow cpu_flags_x86_avx cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1"
+IUSE="${_IUSE_INSTRUCTION_SETS} audacious forcefpu jack openmp plugdouble threads"
+
+REQUIRED_USE="jack? ( audacious )"
+
+_GTK_DEPEND="
+ >=dev-libs/glib-2.4.7:2
+ x11-libs/cairo
+ x11-libs/gtk+:3
+ x11-libs/pango
+"
+RDEPEND="
+ sci-libs/fftw:3.0=
+ audacious? ( ${_GTK_DEPEND}
+ =media-sound/audacious-3.9*[gtk3(+)]
+ media-libs/libsndfile
+ )
+ jack? ( ${_GTK_DEPEND}
+ virtual/jack
+ media-libs/libsndfile
+ )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ local myeconfargs=(
+ --enable-release
+ --enable-undenormal
+ --disable-autocflags
+ --disable-fma
+ --disable-fma4
+ --disable-force3dnow
+ --disable-pluginit
+ --disable-profile
+ --disable-sample
+ --disable-srcnewcoeffs
+ $(use_enable audacious)
+ $(use_enable cpu_flags_x86_3dnow 3dnow)
+ $(use_enable cpu_flags_x86_avx avx)
+ $(use_enable cpu_flags_x86_sse sse)
+ $(use_enable cpu_flags_x86_sse2 sse2)
+ $(use_enable cpu_flags_x86_sse3 sse3)
+ $(use_enable cpu_flags_x86_sse4_1 sse4)
+ $(use_enable forcefpu)
+ $(use_enable jack)
+ $(use_enable openmp omp)
+ $(use_enable plugdouble)
+ $(use_enable threads pthread)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ einstalldocs
+
+ if use audacious ; then
+ find "${D}/usr/$(get_libdir)/audacious/" -name '*.la' -print -delete || die
+ fi
+
+ insinto /usr/share/${PN}/samples/IR
+ doins samples/IR/*.wav
+}
diff --git a/media-libs/freeverb3/freeverb3-3.2.1-r1.ebuild b/media-libs/freeverb3/freeverb3-3.2.1-r1.ebuild
new file mode 100644
index 00000000000..a579cd53583
--- /dev/null
+++ b/media-libs/freeverb3/freeverb3-3.2.1-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Reverb and Impulse Response Convolution plug-ins (Audacious/JACK)"
+HOMEPAGE="https://savannah.nongnu.org/projects/freeverb3"
+SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="audacious forcefpu jack openmp plugdouble threads"
+
+REQUIRED_USE="jack? ( audacious )"
+
+_GTK_DEPEND="
+ >=dev-libs/glib-2.4.7:2
+ x11-libs/cairo
+ x11-libs/gtk+:3
+ x11-libs/pango
+"
+RDEPEND="
+ sci-libs/fftw:3.0=
+ audacious? ( ${_GTK_DEPEND}
+ =media-sound/audacious-3.9*[gtk3(+)]
+ media-libs/libsndfile
+ )
+ jack? ( ${_GTK_DEPEND}
+ virtual/jack
+ media-libs/libsndfile
+ )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ local myeconfargs=(
+ --enable-release
+ --enable-undenormal
+ --disable-autocflags
+ --disable-pluginit
+ --disable-profile
+ --disable-sample
+ --disable-srcnewcoeffs
+ $(use_enable audacious)
+ $(use_enable jack)
+ $(use_enable openmp omp)
+ $(use_enable plugdouble)
+ $(use_enable threads pthread)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ einstalldocs
+
+ if use audacious ; then
+ find "${D}/usr/$(get_libdir)/audacious/" -name '*.la' -print -delete || die
+ fi
+
+ insinto /usr/share/${PN}/samples/IR
+ doins samples/IR/*.wav
+}
next reply other threads:[~2018-11-25 18:52 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-25 18:52 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-02-07 2:53 [gentoo-commits] repo/gentoo:master commit in: media-libs/freeverb3/ Sam James
2023-02-04 10:58 Sam James
2022-11-29 1:18 Sebastian Pipping
2022-06-27 3:37 Miroslav Šulc
2022-06-26 8:47 Agostino Sarubbo
2022-06-26 8:46 Agostino Sarubbo
2022-05-25 12:26 Sebastian Pipping
2019-12-08 12:04 Andreas Sturmlechner
2019-04-09 21:12 Mikle Kolyada
2018-12-12 16:40 Mikle Kolyada
2018-11-27 21:55 Thomas Deutschmann
2018-11-25 18:52 Andreas Sturmlechner
2018-11-25 16:44 Sebastian Pipping
2018-11-25 15:45 Sebastian Pipping
2018-03-27 22:14 Sebastian Pipping
2018-01-06 21:20 Sebastian Pipping
2018-01-06 21:20 Sebastian Pipping
2018-01-06 19:46 Mikle Kolyada
2017-01-19 15:25 Sebastian Pipping
2016-08-06 16:51 Michał Górny
2016-02-08 1:09 Sebastian Pipping
2015-12-24 21:42 Manuel Rüger
2015-12-24 18:58 Agostino Sarubbo
2015-12-09 10:47 Agostino Sarubbo
2015-12-07 21:41 Sebastian Pipping
2015-11-02 12:30 Sebastian Pipping
2015-08-30 17:35 Sebastian Pipping
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=1543171936.a1fa84be5c013dcb63dfc4fae5dbe01fd95dad7c.asturm@gentoo \
--to=asturm@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