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: Mon, 24 Jan 2022 10:38:55
Message-Id: 1643020728.991dda2a3be9da21136f7d835708ecf1e99b54bb.fordfrog@gentoo
1 commit: 991dda2a3be9da21136f7d835708ecf1e99b54bb
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 24 10:38:38 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 24 10:38:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=991dda2a
7
8 media-sound/fluidsynth: bump to 2.2.5
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.5.ebuild | 119 +++++++++++++++++++++++++
15 2 files changed, 120 insertions(+)
16
17 diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
18 index 6761f25c4eb6..24f0cf1fb883 100644
19 --- a/media-sound/fluidsynth/Manifest
20 +++ b/media-sound/fluidsynth/Manifest
21 @@ -1 +1,2 @@
22 DIST fluidsynth-2.2.4.tar.gz 1746638 BLAKE2B 28a2a8048ad3f652afd424358b1b268d42672eb8fba0bdb30c72c06041617844fb5b90bc922e905d80ca2818eac03e9e5ce7f9a57b4cf68a43f60ed4bfddcd49 SHA512 46c3f0759cc011f34e5ba80684df4e8b593315d564da2341aaea14a5f0ba9cf732933f6ebc8712506f194b044a8e2b198b9e50879ff4221e6a9ab8051e79b48f
23 +DIST fluidsynth-2.2.5.tar.gz 1747610 BLAKE2B a658e5fb66ebb091560d9e0b8bddd99ec7e7e84c58d9074057fd612a2eb0abf637778ea06c3481dd4d5179a917d47a08f25533d9002c1a915037a83279e2381a SHA512 9ba96da560d3e0a3e38febc6f10d2b3d8019b63ffa0a4c6fa9032efd019333df0367bdd3056faba22517f59f4ef27b18d52429606ed2b8306f69778fd755beb2
24
25 diff --git a/media-sound/fluidsynth/fluidsynth-2.2.5.ebuild b/media-sound/fluidsynth/fluidsynth-2.2.5.ebuild
26 new file mode 100644
27 index 000000000000..90271801e90c
28 --- /dev/null
29 +++ b/media-sound/fluidsynth/fluidsynth-2.2.5.ebuild
30 @@ -0,0 +1,119 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
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 +}