media-sound/qtractor: version bump to 0.8.5.
authorSimon van der Veldt <simon.vanderveldt@gmail.com>
Fri, 15 Dec 2017 13:33:05 +0000 (14:33 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Thu, 21 Dec 2017 20:21:16 +0000 (21:21 +0100)
media-sound/qtractor/Manifest
media-sound/qtractor/qtractor-0.8.5.ebuild [new file with mode: 0644]

index c1b4741d15a8d45589ce7a2cde58de4d0dafea27..35dc30730918f4d34fce4699174dfab57dc3d53c 100644 (file)
@@ -1 +1,2 @@
 DIST qtractor-0.8.4.tar.gz 1752418 BLAKE2B a66edab959df43c6210e8fb26338d1299b26eb9a767158e371741bffc847420eac3a5a487da9cb83b6da0fe2705a34c9a3290a2a5400e66cf8e6ff3060e1b541 SHA512 406c19eb37273ac932b0f797db6e064e48119a245fe25762f743a261c9f80ec3ce762c76ddbc633ad17bb5924affb7db7ded95d1403b9b1edaa360e6ff060f92
+DIST qtractor-0.8.5.tar.gz 1766017 BLAKE2B eaa75f6efd7ebcfdb1e21c717960d22eb9790c4a3f15ae8bcc364c9b6a5eed6137e4f9d47bd914abdb3679de2cbc30e9c72e32f07fc1ca06959140c5c96dc29b SHA512 9f916e46460403fcb4b1e2dadd048dd52c0d74425a2220cc4d40456141ff7bf5a9cb2fda0f394dac38079af67c322720468d9b7825181442875945899b699329
diff --git a/media-sound/qtractor/qtractor-0.8.5.ebuild b/media-sound/qtractor/qtractor-0.8.5.ebuild
new file mode 100644 (file)
index 0000000..4796180
--- /dev/null
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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
+"
+
+DOCS=( README ChangeLog TODO AUTHORS )
+
+src_configure() {
+       append-cxxflags '-std=c++11'
+       econf \
+               $(use_enable mad libmad) \
+               $(use_enable libsamplerate) \
+               $(use_enable vorbis libvorbis) \
+               $(use_enable osc liblo) \
+               --enable-ladspa \
+               $(use_enable dssi) \
+               --enable-lilv \
+               --disable-qt4 \
+               --with-qt5=$(qt5_get_libdir)/qt5 \
+               $(use_enable rubberband librubberband) \
+               $(use_enable cpu_flags_x86_sse sse) \
+               $(use_enable zlib libz) \
+               $(use_enable debug)
+
+       eqmake5 ${PN}.pro -o ${PN}.mak
+}