diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-07-25 11:53:15 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-07-25 11:53:15 +0000 |
commit | ac05ee7f0be1ec1d3fbb6cf126ee602bedc70667 (patch) | |
tree | db8c5a3d84ef85c47e927d507ac4ce4dba06812a /media-sound/qtractor | |
parent | Drop as many keywords as possible in old versions. (diff) | |
download | gentoo-2-ac05ee7f0be1ec1d3fbb6cf126ee602bedc70667.tar.gz gentoo-2-ac05ee7f0be1ec1d3fbb6cf126ee602bedc70667.tar.bz2 gentoo-2-ac05ee7f0be1ec1d3fbb6cf126ee602bedc70667.zip |
version bump
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-sound/qtractor')
-rw-r--r-- | media-sound/qtractor/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/qtractor/qtractor-0.5.10.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/media-sound/qtractor/ChangeLog b/media-sound/qtractor/ChangeLog index 0b166f4377b1..93577af2e818 100644 --- a/media-sound/qtractor/ChangeLog +++ b/media-sound/qtractor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/qtractor # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.52 2013/07/25 11:47:49 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.53 2013/07/25 11:53:15 aballier Exp $ + +*qtractor-0.5.10 (25 Jul 2013) + + 25 Jul 2013; Alexis Ballier <aballier@gentoo.org> +qtractor-0.5.10.ebuild: + version bump 25 Jul 2013; Alexis Ballier <aballier@gentoo.org> -qtractor-0.5.4.ebuild, -qtractor-0.5.5.ebuild, -qtractor-0.5.6.ebuild, -qtractor-0.5.7.ebuild, diff --git a/media-sound/qtractor/qtractor-0.5.10.ebuild b/media-sound/qtractor/qtractor-0.5.10.ebuild new file mode 100644 index 000000000000..1621e2ce480d --- /dev/null +++ b/media-sound/qtractor/qtractor-0.5.10.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.5.10.ebuild,v 1.1 2013/07/25 11:53:15 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 sse zlib" + +RDEPEND=">=dev-qt/qtcore-4.2:4 + >=dev-qt/qtgui-4.7:4 + media-libs/alsa-lib + media-libs/libsndfile + media-sound/jack-audio-connection-kit + media-libs/ladspa-sdk + media-libs/lilv + media-libs/lv2 + media-libs/suil + dssi? ( media-libs/dssi ) + mad? ( media-libs/libmad ) + libsamplerate? ( media-libs/libsamplerate ) + osc? ( media-libs/liblo ) + rubberband? ( media-libs/rubberband ) + 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_enable sse) \ + $(use_enable zlib libz) \ + $(use_enable debug) + eqmake4 qtractor.pro -o qtractor.mak +} |