Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/freeverb3/files/, media-libs/freeverb3/
Date: Thu, 13 Dec 2018 00:32:57
Message-Id: 1544661160.f1aec77c19b636d9b7ebe663275473ba1382134a.asturm@gentoo
1 commit: f1aec77c19b636d9b7ebe663275473ba1382134a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 13 00:30:44 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 13 00:32:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1aec77c
7
8 media-libs/freeverb3: Drop 3.1.2_pre20151102
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/freeverb3/Manifest | 1 -
14 ...erb3-3.1.2_pre20151102-jack-audacious-3-6.patch | 75 --------------------
15 .../freeverb3-3.1.2_pre20151102-r1.ebuild | 79 ----------------------
16 3 files changed, 155 deletions(-)
17
18 diff --git a/media-libs/freeverb3/Manifest b/media-libs/freeverb3/Manifest
19 index 706d31c95ab..abe29d87cad 100644
20 --- a/media-libs/freeverb3/Manifest
21 +++ b/media-libs/freeverb3/Manifest
22 @@ -1,3 +1,2 @@
23 DIST freeverb3-3.1.2.tar.xz 6015544 BLAKE2B 7589e7aeb04f2253124c94036b53cb86151ffb9f53ae1caefd932ac4ea2c75063a3697101c481e89b7a978044eb02849541b11a7064ede2aec1cd92beba54ad6 SHA512 d3c0b64f14e98f3641b593f3902017fcb457d7a920082bc31e4fc70aaaa11e9172ecabe56bd93c1722b4860239e5ac127c11da6ced6f708def440018451d86bd
24 -DIST freeverb3-3.1.2_pre20151102.tar.gz 8416503 BLAKE2B 114089be0829e3f1ac36e43e43f455f020e0c72ee6e8e66e1dc2571b8715e56bbdf3b71aa332c3451d511ea4695d6b11a08fb11c9a0e8876ed2556a964be38d9 SHA512 ccdcf8832155e479164bb6a4cb2f830db83bf55b8c797ba96686abe8392e7d88f55c6ab8bcb2db447ec3ab4f5cca05e09ec0753a61452c01a32ff9f4008b3536
25 DIST freeverb3-3.2.1.tar.xz 6031592 BLAKE2B 8fbabde0e1c359048f4dc2595729ba93323c1f41176aedfaef406b10c570fc15913a63383f5dd054163efc1f2924958871a8e23d5d7edd0d5e07d52553bc7e38 SHA512 7cab3b2389c8d0a60d0c5f809b214677221204727a74a2b8622455b579aa8fcbd6952da3a343d0ff4bd06a386bbaed0371ddac99bb8ee85862b62435eaeba21b
26
27 diff --git a/media-libs/freeverb3/files/freeverb3-3.1.2_pre20151102-jack-audacious-3-6.patch b/media-libs/freeverb3/files/freeverb3-3.1.2_pre20151102-jack-audacious-3-6.patch
28 deleted file mode 100644
29 index a76d08d3194..00000000000
30 --- a/media-libs/freeverb3/files/freeverb3-3.1.2_pre20151102-jack-audacious-3-6.patch
31 +++ /dev/null
32 @@ -1,75 +0,0 @@
33 -From 1fbb0e7954701cfa5f88eb764a2e18002519a9ce Mon Sep 17 00:00:00 2001
34 -From: Sebastian Pipping <sebastian@×××××××.org>
35 -Date: Sun, 20 Aug 2017 18:42:17 +0200
36 -Subject: [PATCH] Fix JACK compilation for Audacious 3.6+
37 -
38 ----
39 - audacious/impulser2.cpp | 2 +-
40 - jack/Makefile.am | 20 ++++++++++++++++++--
41 - 2 files changed, 19 insertions(+), 3 deletions(-)
42 -
43 -diff --git a/audacious/impulser2.cpp b/audacious/impulser2.cpp
44 -index bc7d4de..b2ae0a8 100644
45 ---- a/audacious/impulser2.cpp
46 -+++ b/audacious/impulser2.cpp
47 -@@ -301,7 +301,7 @@ static void slot_load(SlotConfiguration * slot, int i)
48 - slot->limit = aud_get_double (configSectionString, key_i("limit",i));
49 - slot->idelay = aud_get_double (configSectionString, key_i("idelay",i));
50 - slot->i1o2_index = aud_get_int (configSectionString, key_i("i1o2_index",i));
51 -- #ifdef AUDACIOUS36
52 -+ #if defined(AUDACIOUS36) && ! defined(JACK)
53 - filename = aud_get_str(configSectionString, key_i("file",i)).to_raw();
54 - #else
55 - filename = aud_get_str(configSectionString, key_i("file",i));
56 -diff --git a/jack/Makefile.am b/jack/Makefile.am
57 -index 58527d6..0512828 100644
58 ---- a/jack/Makefile.am
59 -+++ b/jack/Makefile.am
60 -@@ -26,6 +26,10 @@ include $(top_srcdir)/audacious/plugins.make
61 -
62 - AM_CPPFLAGS += $(jack_CFLAGS) $(gtk3_CFLAGS) -I$(top_srcdir)/samples
63 -
64 -+if BUILD_AUDACIOUS36
65 -+AM_CPPFLAGS += -DAUDACIOUS36 -fvisibility=hidden
66 -+endif
67 -+
68 - if BUILD_JACK
69 - noinst_LTLIBRARIES = libbmp_int.la libjack_common.la
70 - bin_PROGRAMS = fv3_jack_strev fv3_jack_nrev fv3_jack_revmodel fv3_jack_impulser2 fv3_jack_mbcomp fv3_jack_stenh \
71 -@@ -35,9 +39,15 @@ endif
72 - libbmp_int_la_CPPFLAGS = -DJACK $(AM_CPPFLAGS)
73 - libbmp_int_la_SOURCES = configdb.h configdb_rcfile.c rcfile.c rcfile.h util.c util.h
74 - libjack_common_la_CPPFLAGS = -DJACK $(AM_CPPFLAGS)
75 --libjack_common_la_SOURCES = plugin.h jack_main.cpp ../samples/CArg.cpp ../samples/CArg.hpp ../audacious/so.c
76 -+libjack_common_la_SOURCES = plugin.h jack_main.cpp ../samples/CArg.cpp ../samples/CArg.hpp
77 - libjack_common_la_LIBADD = $(jack_LIBS) $(gtk3_LIBS)
78 -
79 -+if BUILD_AUDACIOUS36
80 -+libjack_common_la_SOURCES += ../audacious/so36.cpp
81 -+else
82 -+libjack_common_la_SOURCES += ../audacious/so.c
83 -+endif
84 -+
85 - I_LIBS += libbmp_int.la libjack_common.la
86 -
87 - fv3_jack_strev_CPPFLAGS = -DJACK $(AM_CPPFLAGS)
88 -@@ -54,9 +64,15 @@ fv3_jack_revmodel_LDADD = $(I_LIBS)
89 -
90 - fv3_jack_impulser2_CPPFLAGS = -DJACK $(AM_CPPFLAGS)
91 - fv3_jack_impulser2_SOURCES = ../audacious/CFileLoader.hpp ../audacious/CFileLoader_t.hpp ../audacious/impulser2.cpp \
92 -- ../audacious/wave.xpm ../audacious/so.c
93 -+ ../audacious/wave.xpm
94 - fv3_jack_impulser2_LDADD = $(I_LIBS) $(top_builddir)/libgdither/libgdither.la $(sndfile_LIBS)
95 -
96 -+if BUILD_AUDACIOUS36
97 -+fv3_jack_impulser2_SOURCES += ../audacious/so36.cpp
98 -+else
99 -+fv3_jack_impulser2_SOURCES += ../audacious/so.c
100 -+endif
101 -+
102 - fv3_jack_mbcomp_CPPFLAGS = -DJACK $(AM_CPPFLAGS)
103 - fv3_jack_mbcomp_SOURCES = ../audacious/compressor.cpp
104 - fv3_jack_mbcomp_LDADD = $(I_LIBS)
105 ---
106 -2.13.2
107 -
108
109 diff --git a/media-libs/freeverb3/freeverb3-3.1.2_pre20151102-r1.ebuild b/media-libs/freeverb3/freeverb3-3.1.2_pre20151102-r1.ebuild
110 deleted file mode 100644
111 index 99aab4c4be8..00000000000
112 --- a/media-libs/freeverb3/freeverb3-3.1.2_pre20151102-r1.ebuild
113 +++ /dev/null
114 @@ -1,79 +0,0 @@
115 -# Copyright 1999-2018 Gentoo Foundation
116 -# Distributed under the terms of the GNU General Public License v2
117 -
118 -EAPI=6
119 -inherit autotools eutils multilib versionator
120 -
121 -MY_PV=796b552e8a32cc8e63d40dfb94b8a6209731060b
122 -DESCRIPTION="Reverb and Impulse Response Convolution plug-ins (Audacious/JACK)"
123 -HOMEPAGE="https://savannah.nongnu.org/projects/freeverb3"
124 -SRC_URI="https://www.hartwork.org/public/${P}.tar.gz"
125 -
126 -LICENSE="GPL-2"
127 -SLOT="0"
128 -KEYWORDS="amd64 x86"
129 -_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"
130 -IUSE="${_IUSE_INSTRUCTION_SETS} audacious forcefpu jack openmp plugdouble threads"
131 -
132 -_GTK_DEPEND=">=dev-libs/glib-2.4.7:2
133 - >=x11-libs/gtk+-3.0.0:3
134 - x11-libs/pango
135 - x11-libs/cairo"
136 -
137 -RDEPEND=">=sci-libs/fftw-3.0.1
138 - audacious? ( >=media-sound/audacious-3.7[gtk3]
139 - ${_GTK_DEPEND}
140 - media-libs/libsndfile )
141 - jack? ( media-sound/jack-audio-connection-kit
142 - ${_GTK_DEPEND}
143 - media-libs/libsndfile )"
144 -DEPEND=${RDEPEND}
145 -
146 -S="${WORKDIR}/${PN}-${MY_PV}"
147 -
148 -REQUIRED_USE="jack? ( audacious )"
149 -
150 -src_prepare() {
151 - eapply "${FILESDIR}"/${P}-jack-audacious-3-6.patch
152 - eapply_user
153 - eautoreconf
154 -}
155 -
156 -src_configure() {
157 - econf \
158 - --disable-profile \
159 - --enable-release \
160 - --disable-autocflags \
161 - --enable-undenormal \
162 - $(use_enable threads pthread) \
163 - $(use_enable forcefpu) \
164 - --disable-force3dnow \
165 - $(use_enable cpu_flags_x86_3dnow 3dnow) \
166 - $(use_enable cpu_flags_x86_sse sse) \
167 - $(use_enable cpu_flags_x86_sse2 sse2) \
168 - $(use_enable cpu_flags_x86_sse3 sse3) \
169 - $(use_enable cpu_flags_x86_sse4_1 sse4) \
170 - $(use_enable cpu_flags_x86_avx avx) \
171 - --disable-fma \
172 - --disable-fma4 \
173 - $(use_enable openmp omp) \
174 - --disable-sample \
175 - $(use_enable jack) \
176 - $(use_enable audacious) \
177 - --disable-srcnewcoeffs \
178 - $(use_enable plugdouble) \
179 - --disable-pluginit \
180 - || die "econf failed"
181 -}
182 -
183 -src_install() {
184 - emake DESTDIR="${D}" install || die "emake install failed"
185 - dodoc ChangeLog README || die 'dodoc failed'
186 -
187 - if use audacious ; then
188 - find "${D}/usr/$(get_libdir)/audacious/" -name '*.la' -print -delete || die
189 - fi
190 -
191 - insinto /usr/share/${PN}/samples/IR
192 - doins samples/IR/*.wav || die
193 -}