Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/fluidsynth/
Date: Mon, 31 Aug 2020 09:10:42
Message-Id: 1598865022.58a93bd7fa8de9521a96bf40573919b25b119743.aballier@gentoo
1 commit: 58a93bd7fa8de9521a96bf40573919b25b119743
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 08:20:49 2020 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 09:10:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a93bd7
7
8 media-sound/fluidsynth: bump to 2.1.4
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 media-sound/fluidsynth/Manifest | 1 +
14 media-sound/fluidsynth/fluidsynth-2.1.4.ebuild | 115 +++++++++++++++++++++++++
15 2 files changed, 116 insertions(+)
16
17 diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
18 index dfe2f32876c..7ffb63b9644 100644
19 --- a/media-sound/fluidsynth/Manifest
20 +++ b/media-sound/fluidsynth/Manifest
21 @@ -1 +1,2 @@
22 DIST fluidsynth-2.1.0.tar.gz 1356096 BLAKE2B f1dcf05a3d776d3e8be15330e2177e59c10da25063cba577b734aed2af98955c18b7184ee73866503c0cc9c5374c14a8a0030f630be98c9319680a34d8cab117 SHA512 d7af4047ebde49ef48098ae9dbab5d90422a4536acf28a2de32d8da67a50ebbbcf30e06833b630bd54e441040be0e432b377e3b63bf666e63106e69cd408ea0d
23 +DIST fluidsynth-2.1.4.tar.gz 1363975 BLAKE2B 068a8a1722036a5a409331b1bdcf566cb9a1e7b4a27c78adec51c6d82f7c53cba9178c87013f1a9c0ef62d26b1ba876fad567e4c8bb41b8d478632699876e41d SHA512 22e8d2f8b144f96a334aff1f7d183b91e6c5418482bd61553028ff571836b0ca13fff89e7e3cc1c2d08e106a430331d179e607d78b00e218baec433b6d140190
24
25 diff --git a/media-sound/fluidsynth/fluidsynth-2.1.4.ebuild b/media-sound/fluidsynth/fluidsynth-2.1.4.ebuild
26 new file mode 100644
27 index 00000000000..d5fdde4142d
28 --- /dev/null
29 +++ b/media-sound/fluidsynth/fluidsynth-2.1.4.ebuild
30 @@ -0,0 +1,115 @@
31 +# Copyright 1999-2020 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="http://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/2"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~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 +src_install() {
128 + cmake-multilib_src_install
129 +
130 + docinto pdf
131 + dodoc doc/*.pdf
132 +
133 + if use examples; then
134 + docinto examples
135 + dodoc doc/*.c
136 + fi
137 +
138 + if use systemd; then
139 + multilib_foreach_abi install_systemd_files
140 +
141 + elog "When using fluidsynth as a systemd service, make sure"
142 + elog "to configure your fluidsynth settings globally in "
143 + elog "/etc/fluidsynth.conf or per-user in ~/.config/fluidsynth"
144 + fi
145 +}