diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-01-02 15:54:38 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-01-02 15:54:38 +0000 |
commit | 8d4b014e4b3883d56b469d047000d0e1ab6b4114 (patch) | |
tree | f2a5b7c70923da239c57050e9ee68009c895b67e /media-sound | |
parent | Improving use flags deps. (diff) | |
download | gentoo-2-8d4b014e4b3883d56b469d047000d0e1ab6b4114.tar.gz gentoo-2-8d4b014e4b3883d56b469d047000d0e1ab6b4114.tar.bz2 gentoo-2-8d4b014e4b3883d56b469d047000d0e1ab6b4114.zip |
version bump by Robert Piasek <robert.piasek@member.fsf.org>, bug #253066
(Portage version: 2.2_rc20/cvs/Linux 2.6.27.10 x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/qtractor/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/qtractor/qtractor-0.3.0.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/media-sound/qtractor/ChangeLog b/media-sound/qtractor/ChangeLog index caadd8678118..0ea9cd082bec 100644 --- a/media-sound/qtractor/ChangeLog +++ b/media-sound/qtractor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/qtractor -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.14 2008/10/05 18:01:26 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/ChangeLog,v 1.15 2009/01/02 15:54:38 aballier Exp $ + +*qtractor-0.3.0 (02 Jan 2009) + + 02 Jan 2009; Alexis Ballier <aballier@gentoo.org> +qtractor-0.3.0.ebuild: + version bump by Robert Piasek <robert.piasek@member.fsf.org>, bug #253066 05 Oct 2008; Alexis Ballier <aballier@gentoo.org> -qtractor-0.2.0.ebuild: remove old diff --git a/media-sound/qtractor/qtractor-0.3.0.ebuild b/media-sound/qtractor/qtractor-0.3.0.ebuild new file mode 100644 index 000000000000..ff75c19f008e --- /dev/null +++ b/media-sound/qtractor/qtractor-0.3.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qtractor/qtractor-0.3.0.ebuild,v 1.1 2009/01/02 15:54:38 aballier Exp $ + +EAPI=2 + +inherit eutils qt4 + +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" + +DEPEND="|| ( ( x11-libs/qt-core x11-libs/qt-gui ) + =x11-libs/qt-4.3*:4 ) + media-libs/alsa-lib[midi] + 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 ) + osc? ( media-libs/liblo ) + rubberband? ( media-libs/rubberband ) + vorbis? ( media-libs/libvorbis )" + +src_configure() { + econf \ + $(use_enable mad libmad) \ + $(use_enable libsamplerate) \ + $(use_enable vorbis libvorbis) \ + $(use_enable osc liblo) \ + --enable-ladspa \ + $(use_enable dssi) \ + $(use_enable rubberband librubberband) \ + $(use_enable sse) \ + $(use_enable debug) \ + || die "econf failed" + eqmake4 qtractor.pro -o qtractor.mak +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc README ChangeLog TODO AUTHORS +} |