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: 1567857720.cfd9b24cc3eadc437024d14a8c15e6c4cd9c3956.juippis@gentoo
1 commit: cfd9b24cc3eadc437024d14a8c15e6c4cd9c3956
2 Author: Simon van der Veldt <simon.vanderveldt <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 7 09:20:06 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 7 12:02:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfd9b24c
7
8 media-sound/qtractor: Bump to 0.9.9
9
10 Closes: https://bugs.gentoo.org/692652
11
12 Signed-off-by: Simon van der Veldt <simon.vanderveldt <AT> gmail.com>
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 media-sound/qtractor/Manifest | 1 +
16 media-sound/qtractor/metadata.xml | 1 +
17 media-sound/qtractor/qtractor-0.9.9.ebuild | 79 ++++++++++++++++++++++++++++++
18 3 files changed, 81 insertions(+)
19
20 diff --git a/media-sound/qtractor/Manifest b/media-sound/qtractor/Manifest
21 index 7f993a0a52e..ad27397b116 100644
22 --- a/media-sound/qtractor/Manifest
23 +++ b/media-sound/qtractor/Manifest
24 @@ -1 +1,2 @@
25 DIST qtractor-0.9.5.tar.gz 1812859 BLAKE2B 157592217e19cfcf9d02477425d9289cf4b293bf0891352d0afc7a89709810b4db5a2656fb816c2b3a206f55424bef54d007fc2dd5bd328dde4a4ca94ba7080d SHA512 5972631db76cbd298982b7c28eb2b142d6537422db6e35aa42c5e23b5bcf366907c84a69d11b957f31a87fcc112aba23b2b477e0d2ff7ec94e66c169bdf7cadb
26 +DIST qtractor-0.9.9.tar.gz 1831016 BLAKE2B caef9b7a29ae30661dd08c302b16a2f12c66e2f1ffd63ca847ffd4272bcd114ecf74f1dddde1c37788e635896f25ca62283adc773734754d65ea12618248368b SHA512 151a3a92cfb98b9c9b19d18730109bce83744d4c24d3ca200f53a04938cbab1f33dd8080d3faae47b5026eebbbb750a74f64a5a046b0967278e848f424ff962a
27
28 diff --git a/media-sound/qtractor/metadata.xml b/media-sound/qtractor/metadata.xml
29 index e585a897562..5169d9fae0a 100644
30 --- a/media-sound/qtractor/metadata.xml
31 +++ b/media-sound/qtractor/metadata.xml
32 @@ -14,6 +14,7 @@
33 <name>Proxy Maintainers</name>
34 </maintainer>
35 <use>
36 + <flag name="aubio">Enable <pkg>media-libs/aubio</pkg> support</flag>
37 <flag name="dssi">Enable support for DSSI Soft Synth Interface</flag>
38 <flag name="rubberband">Enable support for in-place audio clip pitch-shifting through the rubberband library</flag>
39 </use>
40
41 diff --git a/media-sound/qtractor/qtractor-0.9.9.ebuild b/media-sound/qtractor/qtractor-0.9.9.ebuild
42 new file mode 100644
43 index 00000000000..762a38ad8b7
44 --- /dev/null
45 +++ b/media-sound/qtractor/qtractor-0.9.9.ebuild
46 @@ -0,0 +1,79 @@
47 +# Copyright 1999-2019 Gentoo Authors
48 +# Distributed under the terms of the GNU General Public License v2
49 +
50 +EAPI=7
51 +
52 +inherit flag-o-matic qmake-utils xdg-utils
53 +
54 +DESCRIPTION="Audio/MIDI multi-track sequencer written in C++ with the Qt framework"
55 +HOMEPAGE="https://qtractor.sourceforge.io"
56 +SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
57 +
58 +LICENSE="GPL-2"
59 +SLOT="0"
60 +KEYWORDS="~amd64 ~x86"
61 +
62 +IUSE="aubio cpu_flags_x86_sse debug dssi libsamplerate mad osc rubberband vorbis zlib"
63 +
64 +BDEPEND="
65 + dev-qt/linguist-tools:5
66 + virtual/pkgconfig
67 +"
68 +DEPEND="
69 + dev-qt/qtcore:5
70 + dev-qt/qtgui:5
71 + dev-qt/qtwidgets:5
72 + dev-qt/qtxml:5
73 + dev-qt/qtx11extras:5
74 + media-libs/alsa-lib
75 + media-libs/ladspa-sdk
76 + media-libs/libsndfile
77 + >=media-libs/lilv-0.16.0
78 + media-libs/lv2
79 + media-libs/suil
80 + virtual/jack
81 + aubio? ( media-libs/aubio )
82 + dssi? ( media-libs/dssi )
83 + libsamplerate? ( media-libs/libsamplerate )
84 + mad? ( media-libs/libmad )
85 + osc? ( media-libs/liblo )
86 + rubberband? ( media-libs/rubberband )
87 + vorbis? ( media-libs/libvorbis )
88 + zlib? ( sys-libs/zlib )
89 +"
90 +RDEPEND="${DEPEND}"
91 +
92 +PATCHES=(
93 + "${FILESDIR}/${PN}-0.9.4-dont-compress-manpages.patch"
94 +)
95 +
96 +src_configure() {
97 + append-cxxflags -std=c++11
98 + econf \
99 + --enable-ladspa \
100 + --enable-lilv \
101 + $(use_enable debug) \
102 + $(use_enable aubio libaubio) \
103 + $(use_enable dssi) \
104 + $(use_enable libsamplerate) \
105 + $(use_enable mad libmad) \
106 + $(use_enable osc liblo) \
107 + $(use_enable rubberband librubberband) \
108 + $(use_enable cpu_flags_x86_sse sse) \
109 + $(use_enable vorbis libvorbis) \
110 + $(use_enable zlib libz)
111 +
112 + eqmake5 ${PN}.pro -o ${PN}.mak
113 +}
114 +
115 +pkg_postinst() {
116 + xdg_desktop_database_update
117 + xdg_icon_cache_update
118 + xdg_mimeinfo_database_update
119 +}
120 +
121 +pkg_postrm() {
122 + xdg_desktop_database_update
123 + xdg_icon_cache_update
124 + xdg_mimeinfo_database_update
125 +}