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-sound/fluidsynth/
Date: Sun, 10 Mar 2019 22:46:39
Message-Id: 1552257954.580fc2f06f2dd4c494c370fd92a14eccc8b9c86d.asturm@gentoo
1 commit: 580fc2f06f2dd4c494c370fd92a14eccc8b9c86d
2 Author: Nikos Chantziaras <realnc <AT> gmail <DOT> com>
3 AuthorDate: Mon Mar 4 17:50:22 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 10 22:45:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=580fc2f0
7
8 media-sound/fluidsynth: bump to 2.0.4 with subslot, update ebuild
9
10 Use subslot due to soversion change. Bump EAPI to 7. License is now LGPL-2.1+.
11 Add "oss" USE flag. Enable upstream-recommended USE flags by default (+readline
12 +sndfile). Drop versioned deps (no longer in portage.) Remove unused "ladcca"
13 cmake option. Put pkgconfig in BDEPEND. Remove forced "-pthread" flag.
14
15 Closes: https://bugs.gentoo.org/667254
16 Package-Manager: Portage-2.3.62, Repoman-2.3.12
17 Signed-off-by: Nikos Chantziaras <realnc <AT> gmail.com>
18 Closes: https://github.com/gentoo/gentoo/pull/11257
19 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
20
21 media-sound/fluidsynth/Manifest | 1 +
22 media-sound/fluidsynth/fluidsynth-2.0.4.ebuild | 75 ++++++++++++++++++++++++++
23 2 files changed, 76 insertions(+)
24
25 diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
26 index 73513b81a4b..3017ba15365 100644
27 --- a/media-sound/fluidsynth/Manifest
28 +++ b/media-sound/fluidsynth/Manifest
29 @@ -1 +1,2 @@
30 DIST fluidsynth-1.1.11.tar.gz 634566 BLAKE2B ed135533c9e3e807794e0eca8117d430aa299b8772b2b6c85f6233e7e497d69f43381d9c7cf2de5ce8638f5dc616339bd28cecc3cdc23408bf5883a0b14fee79 SHA512 ad7c634426b29e5a05d67addf32d43a9ccb11a1fe3cfc09ad617416b9df3dc99a48191377f5027232521380737dde2d9b59833516d1bffb90f410bab3bbe140c
31 +DIST fluidsynth-2.0.4.tar.gz 1378042 BLAKE2B 0fc75ea68169c47d64bdf727b8d78e311b36cb04509832f449a52d05e085908bd1ef837dd4c5e23edc25286b8ff3fdf69a9d042520c8eb2a3234fb929bed8de5 SHA512 d58ddc5f4da9bb5954a82749617548ef32edd25f6ca5c6d5c2b06d23090784ec175d2422553a66776f543c6b253f037a6cf1e717a853344ffb899fa53752eec0
32
33 diff --git a/media-sound/fluidsynth/fluidsynth-2.0.4.ebuild b/media-sound/fluidsynth/fluidsynth-2.0.4.ebuild
34 new file mode 100644
35 index 00000000000..6d956183e8b
36 --- /dev/null
37 +++ b/media-sound/fluidsynth/fluidsynth-2.0.4.ebuild
38 @@ -0,0 +1,75 @@
39 +# Copyright 1999-2019 Gentoo Authors
40 +# Distributed under the terms of the GNU General Public License v2
41 +
42 +EAPI=7
43 +
44 +inherit cmake-multilib
45 +
46 +DESCRIPTION="Software real-time synthesizer based on the Soundfont 2 specifications"
47 +HOMEPAGE="http://www.fluidsynth.org/"
48 +SRC_URI="https://github.com/FluidSynth/fluidsynth/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="LGPL-2.1+"
51 +SLOT="0/2"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
53 +IUSE="alsa dbus debug examples ipv6 jack ladspa lash oss portaudio pulseaudio +readline +sndfile"
54 +
55 +BDEPEND="
56 + virtual/pkgconfig[${MULTILIB_USEDEP}]
57 +"
58 +DEPEND="
59 + dev-libs/glib:2[${MULTILIB_USEDEP}]
60 + alsa? (
61 + media-libs/alsa-lib[${MULTILIB_USEDEP}]
62 + lash? ( media-sound/lash[${MULTILIB_USEDEP}] )
63 + )
64 + dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
65 + jack? ( virtual/jack[${MULTILIB_USEDEP}] )
66 + ladspa? (
67 + media-libs/ladspa-cmt[${MULTILIB_USEDEP}]
68 + media-libs/ladspa-sdk[${MULTILIB_USEDEP}]
69 + )
70 + portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
71 + pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
72 + readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
73 + sndfile? ( media-libs/libsndfile[${MULTILIB_USEDEP}] )
74 +"
75 +RDEPEND="${DEPEND}"
76 +
77 +DOCS=( AUTHORS NEWS README.md THANKS TODO doc/{fluidsynth-v20-devdoc,xtrafluid}.txt )
78 +
79 +src_configure() {
80 + local mycmakeargs=(
81 + -Denable-alsa=$(usex alsa)
82 + -Denable-dbus=$(usex dbus)
83 + -Denable-debug=$(usex debug)
84 + -Denable-ipv6=$(usex ipv6)
85 + -Denable-jack=$(usex jack)
86 + -Denable-ladspa=$(usex ladspa)
87 + -Denable-oss=$(usex oss)
88 + -Denable-libsndfile=$(usex sndfile)
89 + -Denable-portaudio=$(usex portaudio)
90 + -Denable-pulseaudio=$(usex pulseaudio)
91 + -Denable-readline=$(usex readline)
92 + )
93 +
94 + if use alsa; then
95 + mycmakeargs+=( -Denable-lash=$(usex lash) )
96 + else
97 + mycmakeargs+=( -Denable-lash=OFF )
98 + fi
99 +
100 + cmake-multilib_src_configure
101 +}
102 +
103 +src_install() {
104 + cmake-multilib_src_install
105 +
106 + docinto pdf
107 + dodoc doc/*.pdf
108 +
109 + if use examples; then
110 + docinto examples
111 + dodoc doc/*.c
112 + fi
113 +}