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/qsynth/
Date: Sat, 15 Sep 2018 02:31:28
Message-Id: 1536978628.46ed6a07b8fcf82bb8e96744a41bc75fa5f995a1.asturm@gentoo
1 commit: 46ed6a07b8fcf82bb8e96744a41bc75fa5f995a1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 13 11:30:58 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 15 02:30:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46ed6a07
7
8 media-sound/qsynth: Drop 0.4.4
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 media-sound/qsynth/Manifest | 1 -
13 media-sound/qsynth/qsynth-0.4.4.ebuild | 60 ----------------------------------
14 2 files changed, 61 deletions(-)
15
16 diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
17 index 040188fe285..8b206d6e987 100644
18 --- a/media-sound/qsynth/Manifest
19 +++ b/media-sound/qsynth/Manifest
20 @@ -1,2 +1 @@
21 -DIST qsynth-0.4.4.tar.gz 260482 BLAKE2B c36e80bbe71960e83ef2bb7a9f0383625b12bb1f3755319218d8144d3a6749a807634b6babd40891f2ad0fca045b2be55dcbe0c60bdcbd150d32177c38046bdd SHA512 8995881ab992b8d02f83797093d406391327a362d0c331d0c8e023e1695baff5acb589be08427a25563f159067a8965c89be114ce74583db98e5a816f73aa9f0
22 DIST qsynth-0.5.0.tar.gz 260537 BLAKE2B def589a1cfb76517fa34811fe75a8379043d7e0f9fc661dd456b49414042662c3a3b8f57e2d0de5fae99cbdb60062b12d9b73b93032115648b9a21921766fbeb SHA512 3c7026edfef3115fae8e2167bb961f5e32d886c8d75b3534a3f110d921264cd270953145a4737f9d6660c55fccce81d7306ec0ce4064df6e7226598b52399298
23
24 diff --git a/media-sound/qsynth/qsynth-0.4.4.ebuild b/media-sound/qsynth/qsynth-0.4.4.ebuild
25 deleted file mode 100644
26 index a2a3d524b3d..00000000000
27 --- a/media-sound/qsynth/qsynth-0.4.4.ebuild
28 +++ /dev/null
29 @@ -1,60 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit eutils flag-o-matic qmake-utils
36 -
37 -DESCRIPTION="A Qt application to control FluidSynth"
38 -HOMEPAGE="http://qsynth.sourceforge.net/"
39 -SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -IUSE="debug jack alsa pulseaudio"
44 -KEYWORDS="amd64 ppc x86"
45 -
46 -RDEPEND="
47 - dev-qt/qtcore:5
48 - dev-qt/qtwidgets:5
49 - dev-qt/qtx11extras:5
50 - media-sound/fluidsynth[jack?,alsa?,pulseaudio?]
51 - x11-libs/libX11"
52 -DEPEND="${RDEPEND}
53 - dev-qt/linguist-tools:5
54 -"
55 -
56 -REQUIRED_USE="|| ( alsa jack pulseaudio )"
57 -
58 -PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
59 -
60 -src_configure() {
61 - append-cxxflags -std=c++11
62 - econf \
63 - $(use_enable debug) \
64 - --with-qt5=$(qt5_get_bindir)/..
65 -
66 - eqmake5 ${PN}.pro -o ${PN}.mak
67 -}
68 -
69 -src_install () {
70 - emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
71 - einstalldocs
72 -
73 - # The desktop file is invalid, and we also change the command
74 - # depending on useflags
75 - rm "${ED}usr/share/applications/qsynth.desktop" || die
76 -
77 - local cmd
78 - if use jack; then
79 - cmd="qsynth"
80 - elif use pulseaudio; then
81 - cmd="qsynth -a pulseaudio"
82 - elif use alsa; then
83 - cmd="qsynth -a alsa"
84 - else
85 - cmd="qsynth -a oss"
86 - fi
87 -
88 - make_desktop_entry "${cmd}" Qsynth qsynth
89 -}