diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-10-11 13:05:24 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-10-11 13:05:24 +0000 |
commit | 9faf50d366f15b19c987067f1b54ad75316b639c (patch) | |
tree | 56782ae3b5061e56d9bc0878e7b73f22c7de2ba7 /media-sound/qtractor | |
parent | version bump (diff) | |
download | gentoo-2-9faf50d366f15b19c987067f1b54ad75316b639c.tar.gz gentoo-2-9faf50d366f15b19c987067f1b54ad75316b639c.tar.bz2 gentoo-2-9faf50d366f15b19c987067f1b54ad75316b639c.zip |
version bump
(Portage version: 2.2.0_alpha137/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/qtractor')
-rw-r--r-- | media-sound/qtractor/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/qtractor/qtractor-0.5.6.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/media-sound/qtractor/ChangeLog b/media-sound/qtractor/ChangeLog index 4aea96d950e8..350485178159 100644 --- a/media-sound/qtractor/ChangeLog +++ b/media-sound/qtractor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/qtractor # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.45 2012/06/30 12:51:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.46 2012/10/11 13:05:23 aballier Exp $ + +*qtractor-0.5.6 (11 Oct 2012) + + 11 Oct 2012; Alexis Ballier <aballier@gentoo.org> +qtractor-0.5.6.ebuild: + version bump *qtractor-0.5.5 (30 Jun 2012) diff --git a/media-sound/qtractor/qtractor-0.5.6.ebuild b/media-sound/qtractor/qtractor-0.5.6.ebuild new file mode 100644 index 000000000000..f47a1d415ba5 --- /dev/null +++ b/media-sound/qtractor/qtractor-0.5.6.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.5.6.ebuild,v 1.1 2012/10/11 13:05:24 aballier Exp $ + +EAPI=2 + +inherit qt4-r2 flag-o-matic + +DESCRIPTION="Qtractor is an Audio/MIDI multi-track sequencer." +HOMEPAGE="http://qtractor.sourceforge.net/" +SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="debug dssi libsamplerate mad osc rubberband vorbis suil sse zlib" + +RDEPEND=">=x11-libs/qt-core-4.2:4 + >=x11-libs/qt-gui-4.7:4[gtkstyle] + media-libs/alsa-lib + media-libs/libsndfile + media-sound/jack-audio-connection-kit + media-libs/ladspa-sdk + dssi? ( media-libs/dssi ) + mad? ( media-libs/libmad ) + libsamplerate? ( media-libs/libsamplerate ) + media-libs/lilv + osc? ( media-libs/liblo ) + rubberband? ( media-libs/rubberband ) + suil? ( media-libs/suil ) + vorbis? ( media-libs/libvorbis ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="README ChangeLog TODO AUTHORS" + +src_configure() { + econf \ + $(use_enable mad libmad) \ + $(use_enable libsamplerate) \ + $(use_enable vorbis libvorbis) \ + $(use_enable osc liblo) \ + --enable-ladspa \ + $(use_enable dssi) \ + --enable-lilv \ + $(use_enable rubberband librubberband) \ + $(use suil || echo " --disable-suil") \ + $(use_enable sse) \ + $(use_enable zlib libz) \ + $(use_enable debug) + eqmake4 qtractor.pro -o qtractor.mak +} |