diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-01-13 21:02:37 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-01-13 21:02:37 +0000 |
commit | f2cca17b8201ed1437eb3ca880c88c2c284476af (patch) | |
tree | 2779422ec7ba1c65988a296a657f5bd39cb36972 | |
parent | Fix endianness bug #436640 by Anthony Basile. (diff) | |
download | gentoo-2-f2cca17b8201ed1437eb3ca880c88c2c284476af.tar.gz gentoo-2-f2cca17b8201ed1437eb3ca880c88c2c284476af.tar.bz2 gentoo-2-f2cca17b8201ed1437eb3ca880c88c2c284476af.zip |
version bump
(Portage version: 2.2.0_alpha151/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
-rw-r--r-- | media-sound/qtractor/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/qtractor/qtractor-0.5.7.ebuild | 54 |
2 files changed, 61 insertions, 2 deletions
diff --git a/media-sound/qtractor/ChangeLog b/media-sound/qtractor/ChangeLog index 350485178159..3c53e81540a6 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.46 2012/10/11 13:05:23 aballier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.47 2013/01/13 21:02:37 aballier Exp $ + +*qtractor-0.5.7 (13 Jan 2013) + + 13 Jan 2013; Alexis Ballier <aballier@gentoo.org> +qtractor-0.5.7.ebuild: + version bump *qtractor-0.5.6 (11 Oct 2012) diff --git a/media-sound/qtractor/qtractor-0.5.7.ebuild b/media-sound/qtractor/qtractor-0.5.7.ebuild new file mode 100644 index 000000000000..469ea4363450 --- /dev/null +++ b/media-sound/qtractor/qtractor-0.5.7.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.7.ebuild,v 1.1 2013/01/13 21:02:37 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 +} |