diff options
author | Simon van der Veldt <simon.vanderveldt@gmail.com> | 2019-09-07 11:20:06 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-09-07 15:02:00 +0300 |
commit | cfd9b24cc3eadc437024d14a8c15e6c4cd9c3956 (patch) | |
tree | 62e625bd20957748f21151c38d6408fd2b884fdd /media-sound/qtractor/qtractor-0.9.9.ebuild | |
parent | dev-python/mpi4py: Drop 2.0.0, 3.0.0 (diff) | |
download | gentoo-cfd9b24cc3eadc437024d14a8c15e6c4cd9c3956.tar.gz gentoo-cfd9b24cc3eadc437024d14a8c15e6c4cd9c3956.tar.bz2 gentoo-cfd9b24cc3eadc437024d14a8c15e6c4cd9c3956.zip |
media-sound/qtractor: Bump to 0.9.9
Closes: https://bugs.gentoo.org/692652
Signed-off-by: Simon van der Veldt <simon.vanderveldt@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-sound/qtractor/qtractor-0.9.9.ebuild')
-rw-r--r-- | media-sound/qtractor/qtractor-0.9.9.ebuild | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/media-sound/qtractor/qtractor-0.9.9.ebuild b/media-sound/qtractor/qtractor-0.9.9.ebuild new file mode 100644 index 000000000000..762a38ad8b74 --- /dev/null +++ b/media-sound/qtractor/qtractor-0.9.9.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic qmake-utils xdg-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="aubio cpu_flags_x86_sse debug dssi libsamplerate mad osc rubberband vorbis zlib" + +BDEPEND=" + dev-qt/linguist-tools:5 + virtual/pkgconfig +" +DEPEND=" + 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 + aubio? ( media-libs/aubio ) + 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 ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-0.9.4-dont-compress-manpages.patch" +) + +src_configure() { + append-cxxflags -std=c++11 + econf \ + --enable-ladspa \ + --enable-lilv \ + $(use_enable debug) \ + $(use_enable aubio libaubio) \ + $(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 +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update + xdg_mimeinfo_database_update +} |