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/zynaddsubfx/
Date: Fri, 22 Feb 2019 13:06:36
Message-Id: 1550840357.6cd888fc928933af1a25074a736085f2ccbad18f.asturm@gentoo
1 commit: 6cd888fc928933af1a25074a736085f2ccbad18f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 22 12:59:17 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 22 12:59:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd888fc
7
8 media-sound/zynaddsubfx: Drop 3.0.3 (r0)
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild | 55 ------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild b/media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild
17 deleted file mode 100644
18 index b929690c9c5..00000000000
19 --- a/media-sound/zynaddsubfx/zynaddsubfx-3.0.3.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit eutils cmake-utils flag-o-matic multilib
28 -
29 -DESCRIPTION="ZynAddSubFX is an opensource software synthesizer"
30 -HOMEPAGE="http://zynaddsubfx.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/zynaddsubfx/${P}.tar.bz2"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc x86"
36 -IUSE="alsa +fltk jack lash"
37 -
38 -RDEPEND=">=dev-libs/mxml-2.2.1
39 - sci-libs/fftw:3.0
40 - media-libs/liblo
41 - alsa? ( media-libs/alsa-lib )
42 - fltk? ( >=x11-libs/fltk-1.3:1 )
43 - jack? ( virtual/jack )
44 - lash? ( media-sound/lash )"
45 -# portaudio? ( media-libs/portaudio )"
46 -DEPEND="${RDEPEND}
47 - virtual/pkgconfig"
48 -# Upstream uses the following preferences: alsa > jack > portaudio
49 -# At least one of them must be enabled
50 -# We do not support portaudio, so if alsa is disabled force jack.
51 -REQUIRED_USE="!alsa? ( jack )"
52 -
53 -PATCHES=(
54 - "${FILESDIR}"/${PN}-${PV}-docs.patch
55 -)
56 -
57 -DOCS=( ChangeLog HISTORY.txt README.adoc )
58 -
59 -src_configure() {
60 - append-cxxflags "-std=c++11"
61 - use lash || sed -i -e 's/lash-1.0/lash_disabled/' "${S}"/src/CMakeLists.txt
62 - mycmakeargs=(
63 - `use fltk && echo "-DGuiModule=fltk" || echo "-DGuiModule=off"`
64 - `use alsa && echo "-DOutputModule=alsa" || echo "-DOutputModule=jack"`
65 - `use alsa && echo "-DAlsaMidiOutput=TRUE" || echo "-DAlsaMidiOutput=FALSE"`
66 - `use jack && echo "-DJackOutput=TRUE" || echo "-DJackOutput=FALSE"`
67 - -DPluginLibDir=$(get_libdir)
68 - )
69 - cmake-utils_src_configure
70 -}
71 -
72 -src_install() {
73 - cmake-utils_src_install
74 - insinto /usr/share/${PN}
75 - doins -r "${S}"/instruments/*
76 -}