media-sound/qtractor: Bump to 0.9.2
authorSimon van der Veldt <simon.vanderveldt@gmail.com>
Sun, 9 Sep 2018 17:37:19 +0000 (19:37 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Wed, 12 Sep 2018 09:21:43 +0000 (11:21 +0200)
Closes: https://github.com/gentoo/gentoo/pull/9813

media-sound/qtractor/Manifest
media-sound/qtractor/qtractor-0.9.2.ebuild [new file with mode: 0644]

index aa733473631b3bb9ec5ac9733e85b4ba88cc082e..1cf32dfe42dcb979e998138c6101a7a298900327 100644 (file)
@@ -1 +1,2 @@
 DIST qtractor-0.9.1.tar.gz 1763699 BLAKE2B a1d03361266a91abc6c0425d71ee2fa53fd5ec6299a23f15ba1599e480d43c30180334defaa50fcc73a02b7ddafd694bfaf6a00fa14fbdd767276c05b7ec56b8 SHA512 c40a7535740bc8315ffc640f791b640a12a4ba135070502682681c3022923f1edb62738127cae0c523a6410cb163b4cac2828544ae629b42fc93946f3d4d8a59
+DIST qtractor-0.9.2.tar.gz 1789514 BLAKE2B 0e314fd04c908d0916d9979de6df940225a5a9f522289e80c1956902c05478c7655a8bc2ef1827bc36472d2b4dd3885de67cda801596057dec58a10ac3235ac2 SHA512 7dbc23afb05465251daea3e56a72ed6e7814a74e6a0a844b251d8bb4f864f606bfcae5aeb3847e5227589b313777268034590a566dd74eff5cc221f081653c33
diff --git a/media-sound/qtractor/qtractor-0.9.2.ebuild b/media-sound/qtractor/qtractor-0.9.2.ebuild
new file mode 100644 (file)
index 0000000..4b56566
--- /dev/null
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic qmake-utils
+
+DESCRIPTION="Audio/MIDI multi-track sequencer written in C++ with the Qt framework"
+HOMEPAGE="https://qtractor.sourceforge.io"
+SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="cpu_flags_x86_sse debug dssi libsamplerate mad osc rubberband vorbis zlib"
+
+RDEPEND="
+       dev-qt/qtcore:5
+       dev-qt/qtgui:5
+       dev-qt/qtwidgets:5
+       dev-qt/qtxml:5
+       dev-qt/qtx11extras:5
+       media-libs/alsa-lib
+       media-libs/ladspa-sdk
+       media-libs/libsndfile
+       >=media-libs/lilv-0.16.0
+       media-libs/lv2
+       media-libs/suil
+       virtual/jack
+       dssi? ( media-libs/dssi )
+       libsamplerate? ( media-libs/libsamplerate )
+       mad? ( media-libs/libmad )
+       osc? ( media-libs/liblo )
+       rubberband? ( media-libs/rubberband )
+       vorbis? ( media-libs/libvorbis )
+       zlib? ( sys-libs/zlib )
+"
+DEPEND="${RDEPEND}
+       dev-qt/linguist-tools:5
+       virtual/pkgconfig
+"
+
+src_configure() {
+       append-cxxflags -std=c++11
+       econf \
+               --enable-ladspa \
+               --enable-lilv \
+               --disable-qt4 \
+               --with-qt5=$(qt5_get_libdir)/qt5 \
+               $(use_enable debug) \
+               $(use_enable dssi) \
+               $(use_enable libsamplerate) \
+               $(use_enable mad libmad) \
+               $(use_enable osc liblo) \
+               $(use_enable rubberband librubberband) \
+               $(use_enable cpu_flags_x86_sse sse) \
+               $(use_enable vorbis libvorbis) \
+               $(use_enable zlib libz)
+
+       eqmake5 ${PN}.pro -o ${PN}.mak
+}