Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qtractor/
Date: Sat, 07 Sep 2019 12:02:33
Message-Id: 1567857724.7122e535f261681acde7c4082cc22f0fc5bc0a13.juippis@gentoo
1 commit: 7122e535f261681acde7c4082cc22f0fc5bc0a13
2 Author: Simon van der Veldt <simon.vanderveldt <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 7 09:55:48 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 7 12:02:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7122e535
7
8 media-sound/qtractor: Drop old
9
10 Signed-off-by: Simon van der Veldt <simon.vanderveldt <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/12881
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 media-sound/qtractor/Manifest | 1 -
15 media-sound/qtractor/qtractor-0.9.5.ebuild | 65 ------------------------------
16 2 files changed, 66 deletions(-)
17
18 diff --git a/media-sound/qtractor/Manifest b/media-sound/qtractor/Manifest
19 index ad27397b116..3896e90bf3e 100644
20 --- a/media-sound/qtractor/Manifest
21 +++ b/media-sound/qtractor/Manifest
22 @@ -1,2 +1 @@
23 -DIST qtractor-0.9.5.tar.gz 1812859 BLAKE2B 157592217e19cfcf9d02477425d9289cf4b293bf0891352d0afc7a89709810b4db5a2656fb816c2b3a206f55424bef54d007fc2dd5bd328dde4a4ca94ba7080d SHA512 5972631db76cbd298982b7c28eb2b142d6537422db6e35aa42c5e23b5bcf366907c84a69d11b957f31a87fcc112aba23b2b477e0d2ff7ec94e66c169bdf7cadb
24 DIST qtractor-0.9.9.tar.gz 1831016 BLAKE2B caef9b7a29ae30661dd08c302b16a2f12c66e2f1ffd63ca847ffd4272bcd114ecf74f1dddde1c37788e635896f25ca62283adc773734754d65ea12618248368b SHA512 151a3a92cfb98b9c9b19d18730109bce83744d4c24d3ca200f53a04938cbab1f33dd8080d3faae47b5026eebbbb750a74f64a5a046b0967278e848f424ff962a
25
26 diff --git a/media-sound/qtractor/qtractor-0.9.5.ebuild b/media-sound/qtractor/qtractor-0.9.5.ebuild
27 deleted file mode 100644
28 index 01c2e76cc11..00000000000
29 --- a/media-sound/qtractor/qtractor-0.9.5.ebuild
30 +++ /dev/null
31 @@ -1,65 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit flag-o-matic qmake-utils
38 -
39 -DESCRIPTION="Audio/MIDI multi-track sequencer written in C++ with the Qt framework"
40 -HOMEPAGE="https://qtractor.sourceforge.io"
41 -SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -
47 -IUSE="cpu_flags_x86_sse debug dssi libsamplerate mad osc rubberband vorbis zlib"
48 -
49 -BDEPEND="
50 - dev-qt/linguist-tools:5
51 - virtual/pkgconfig
52 -"
53 -DEPEND="
54 - dev-qt/qtcore:5
55 - dev-qt/qtgui:5
56 - dev-qt/qtwidgets:5
57 - dev-qt/qtxml:5
58 - dev-qt/qtx11extras:5
59 - media-libs/alsa-lib
60 - media-libs/ladspa-sdk
61 - media-libs/libsndfile
62 - >=media-libs/lilv-0.16.0
63 - media-libs/lv2
64 - media-libs/suil
65 - virtual/jack
66 - dssi? ( media-libs/dssi )
67 - libsamplerate? ( media-libs/libsamplerate )
68 - mad? ( media-libs/libmad )
69 - osc? ( media-libs/liblo )
70 - rubberband? ( media-libs/rubberband )
71 - vorbis? ( media-libs/libvorbis )
72 - zlib? ( sys-libs/zlib )
73 -"
74 -RDEPEND="${DEPEND}"
75 -
76 -PATCHES=(
77 - "${FILESDIR}/${PN}-0.9.4-dont-compress-manpages.patch"
78 -)
79 -
80 -src_configure() {
81 - append-cxxflags -std=c++11
82 - econf \
83 - --enable-ladspa \
84 - --enable-lilv \
85 - $(use_enable debug) \
86 - $(use_enable dssi) \
87 - $(use_enable libsamplerate) \
88 - $(use_enable mad libmad) \
89 - $(use_enable osc liblo) \
90 - $(use_enable rubberband librubberband) \
91 - $(use_enable cpu_flags_x86_sse sse) \
92 - $(use_enable vorbis libvorbis) \
93 - $(use_enable zlib libz)
94 -
95 - eqmake5 ${PN}.pro -o ${PN}.mak
96 -}