diff options
author | Nikos Chantziaras <realnc@gmail.com> | 2019-04-14 16:43:12 +0300 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-10 22:20:11 +0200 |
commit | e0a8b81024e6321f5a149d382f57bcf4f95b9382 (patch) | |
tree | 1c54636aa66f06004472b5af18ded361d9d98750 /media-libs/fluidsynth-dssi/fluidsynth-dssi-1.0.0-r1.ebuild | |
parent | sys-firmware/intel-microcode: drop old (diff) | |
download | gentoo-e0a8b81024e6321f5a149d382f57bcf4f95b9382.tar.gz gentoo-e0a8b81024e6321f5a149d382f57bcf4f95b9382.tar.bz2 gentoo-e0a8b81024e6321f5a149d382f57bcf4f95b9382.zip |
media-libs/fluidsynth-dssi: revbump with fluidsynth-2 support, EAPI 7
FluidSynth 2 patch based on
https://sourceforge.net/p/dssi/fluidsynth-dssi/merge-requests/1
Closes: https://bugs.gentoo.org/680040
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras <realnc@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11680
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/fluidsynth-dssi/fluidsynth-dssi-1.0.0-r1.ebuild')
-rw-r--r-- | media-libs/fluidsynth-dssi/fluidsynth-dssi-1.0.0-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-libs/fluidsynth-dssi/fluidsynth-dssi-1.0.0-r1.ebuild b/media-libs/fluidsynth-dssi/fluidsynth-dssi-1.0.0-r1.ebuild new file mode 100644 index 000000000000..a858fce99498 --- /dev/null +++ b/media-libs/fluidsynth-dssi/fluidsynth-dssi-1.0.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="DSSI Soft Synth Interface" +HOMEPAGE="http://dssi.sourceforge.net/" +SRC_URI="mirror://sourceforge/dssi/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +BDEPEND="virtual/pkgconfig" +DEPEND=" + media-libs/dssi + media-libs/liblo + media-sound/fluidsynth:= + x11-libs/gtk+:2 +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PV}-fluidsynth2.patch" +) + +src_prepare() { + default + eautoreconf +} |