Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/fluidsynth/
Date: Sat, 25 Dec 2021 07:56:22
Message-Id: 1640418967.edfa0c6107c064403608eec06ff8417db9f0c7f3.fordfrog@gentoo
1 commit: edfa0c6107c064403608eec06ff8417db9f0c7f3
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 25 07:56:07 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 25 07:56:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edfa0c61
7
8 media-sound/fluidsynth: removed obsolete 2.2.3
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/fluidsynth/Manifest | 1 -
14 media-sound/fluidsynth/fluidsynth-2.2.3.ebuild | 119 -------------------------
15 2 files changed, 120 deletions(-)
16
17 diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
18 index 33eb4007d74f..6761f25c4eb6 100644
19 --- a/media-sound/fluidsynth/Manifest
20 +++ b/media-sound/fluidsynth/Manifest
21 @@ -1,2 +1 @@
22 -DIST fluidsynth-2.2.3.tar.gz 1745344 BLAKE2B 0d08c67532392d32501a71f1e6fac6d55a0a0a607dae914106e1674df0a96869041530f75669193305a091ec40177e2925345df24d75a369c87e738ec1f4eb2e SHA512 67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e
23 DIST fluidsynth-2.2.4.tar.gz 1746638 BLAKE2B 28a2a8048ad3f652afd424358b1b268d42672eb8fba0bdb30c72c06041617844fb5b90bc922e905d80ca2818eac03e9e5ce7f9a57b4cf68a43f60ed4bfddcd49 SHA512 46c3f0759cc011f34e5ba80684df4e8b593315d564da2341aaea14a5f0ba9cf732933f6ebc8712506f194b044a8e2b198b9e50879ff4221e6a9ab8051e79b48f
24
25 diff --git a/media-sound/fluidsynth/fluidsynth-2.2.3.ebuild b/media-sound/fluidsynth/fluidsynth-2.2.3.ebuild
26 deleted file mode 100644
27 index 57dcd76a5287..000000000000
28 --- a/media-sound/fluidsynth/fluidsynth-2.2.3.ebuild
29 +++ /dev/null
30 @@ -1,119 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -CMAKE_ECLASS=cmake
37 -inherit cmake-multilib systemd
38 -
39 -DESCRIPTION="Software real-time synthesizer based on the Soundfont 2 specifications"
40 -HOMEPAGE="https://www.fluidsynth.org"
41 -SRC_URI="https://github.com/FluidSynth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="LGPL-2.1+"
44 -SLOT="0/3"
45 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
46 -IUSE="alsa dbus debug examples ipv6 jack ladspa lash network oss portaudio pulseaudio +readline sdl +sndfile systemd threads"
47 -
48 -BDEPEND="
49 - virtual/pkgconfig
50 -"
51 -DEPEND="
52 - dev-libs/glib:2[${MULTILIB_USEDEP}]
53 - alsa? (
54 - media-libs/alsa-lib[${MULTILIB_USEDEP}]
55 - lash? ( media-sound/lash[${MULTILIB_USEDEP}] )
56 - )
57 - dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
58 - jack? ( virtual/jack[${MULTILIB_USEDEP}] )
59 - ladspa? (
60 - media-libs/ladspa-sdk[${MULTILIB_USEDEP}]
61 - media-plugins/cmt-plugins[${MULTILIB_USEDEP}]
62 - )
63 - portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
64 - pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
65 - readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
66 - sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] )
67 - sndfile? ( media-libs/libsndfile[${MULTILIB_USEDEP}] )
68 -"
69 -RDEPEND="${DEPEND}"
70 -
71 -DOCS=( AUTHORS ChangeLog README.md THANKS TODO doc/fluidsynth-v20-devdoc.txt )
72 -
73 -src_configure() {
74 - local mycmakeargs=(
75 - -Denable-alsa=$(usex alsa)
76 - -Denable-aufile=ON
77 - -Denable-dbus=$(usex dbus)
78 - -Denable-debug=$(usex debug)
79 - -Denable-dsound=OFF # Windows
80 - -Denable-floats=OFF # loat instead of double for DSP samples
81 - -Denable-fpe-check=$(usex debug)
82 - -Denable-ipv6=$(usex ipv6)
83 - -Denable-jack=$(usex jack)
84 - -Denable-ladspa=$(usex ladspa)
85 - -Denable-libinstpatch=ON # https://github.com/swami/libinstpatch
86 - -Denable-midishare=OFF # http://midishare.sourceforge.net/
87 - -Denable-network=$(usex network)
88 - -Denable-opensles=OFF
89 - -Denable-oboe=OFF # requires OpenSLES and/or AAudio
90 - -Denable-oss=$(usex oss)
91 - -Denable-libsndfile=$(usex sndfile)
92 - -Denable-pkgconfig=ON
93 - -Denable-portaudio=$(usex portaudio)
94 - -Denable-profiling=$(usex debug)
95 - -Denable-pulseaudio=$(usex pulseaudio)
96 - -Denable-readline=$(usex readline)
97 - -Denable-sdl2=$(usex sdl)
98 - -Denable-systemd=$(usex systemd)
99 - -Denable-threads=$(usex threads)
100 - -Denable-trap-on-fpe=$(usex debug)
101 - -Denable-ubsan=OFF # compile and link against UBSan (for debugging fluidsynth internals)
102 - -Denable-waveout=OFF # Windows
103 - -Denable-winmidi=OFF # Windows
104 - )
105 -
106 - if use alsa; then
107 - mycmakeargs+=( -Denable-lash=$(usex lash) )
108 - else
109 - mycmakeargs+=( -Denable-lash=OFF )
110 - fi
111 -
112 - if use systemd; then
113 - mycmakeargs+=( -DFLUID_DAEMON_ENV_FILE="/etc/fluidsynth.conf" )
114 - fi
115 -
116 - cmake-multilib_src_configure
117 -}
118 -
119 -install_systemd_files() {
120 - if multilib_is_native_abi; then
121 - systemd_dounit "${BUILD_DIR}/fluidsynth.service"
122 - insinto /etc
123 - doins "${BUILD_DIR}/fluidsynth.conf"
124 - fi
125 -}
126 -
127 -multilib_src_test() {
128 - eninja check
129 -}
130 -
131 -src_install() {
132 - cmake-multilib_src_install
133 -
134 - docinto pdf
135 - dodoc doc/*.pdf
136 -
137 - if use examples; then
138 - docinto examples
139 - dodoc doc/examples/*.c
140 - fi
141 -
142 - if use systemd; then
143 - multilib_foreach_abi install_systemd_files
144 -
145 - elog "When using fluidsynth as a systemd service, make sure"
146 - elog "to configure your fluidsynth settings globally in "
147 - elog "/etc/fluidsynth.conf or per-user in ~/.config/fluidsynth"
148 - fi
149 -}