diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-03-09 23:33:43 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-03-09 23:33:43 +0000 |
commit | 0959ba584a5485bbd0f6bd66c99e0852e37dc9b5 (patch) | |
tree | b1b0c4e0e85ca0ba369d03da3fcc3a9641506b18 /media-sound/qjackctl | |
parent | Add missing dep on perl-File-Temp (diff) | |
download | gentoo-2-0959ba584a5485bbd0f6bd66c99e0852e37dc9b5.tar.gz gentoo-2-0959ba584a5485bbd0f6bd66c99e0852e37dc9b5.tar.bz2 gentoo-2-0959ba584a5485bbd0f6bd66c99e0852e37dc9b5.zip |
version bump
(Portage version: 2.2_rc66/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/qjackctl')
-rw-r--r-- | media-sound/qjackctl/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/qjackctl/qjackctl-0.3.6.ebuild | 47 |
2 files changed, 54 insertions, 2 deletions
diff --git a/media-sound/qjackctl/ChangeLog b/media-sound/qjackctl/ChangeLog index 5c22f5c6348d..ba9172be8b3b 100644 --- a/media-sound/qjackctl/ChangeLog +++ b/media-sound/qjackctl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/qjackctl -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.63 2009/10/06 17:10:49 ayoy Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.64 2010/03/09 23:33:43 aballier Exp $ + +*qjackctl-0.3.6 (09 Mar 2010) + + 09 Mar 2010; Alexis Ballier <aballier@gentoo.org> +qjackctl-0.3.6.ebuild: + version bump 06 Oct 2009; Dominik Kapusta <ayoy@gentoo.org> qjackctl-0.3.2.ebuild, qjackctl-0.3.4.ebuild: diff --git a/media-sound/qjackctl/qjackctl-0.3.6.ebuild b/media-sound/qjackctl/qjackctl-0.3.6.ebuild new file mode 100644 index 000000000000..47d75a829ba1 --- /dev/null +++ b/media-sound/qjackctl/qjackctl-0.3.6.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.6.ebuild,v 1.1 2010/03/09 23:33:43 aballier Exp $ + +EAPI=2 + +inherit qt4 + +DESCRIPTION="A Qt application to control the JACK Audio Connection Kit and ALSA sequencer connections." +HOMEPAGE="http://qjackctl.sourceforge.net/" +SRC_URI="mirror://sourceforge/qjackctl/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +IUSE="alsa dbus debug portaudio" + +RDEPEND="alsa? ( media-libs/alsa-lib ) + x11-libs/qt-core:4 + x11-libs/qt-gui:4 + dbus? ( x11-libs/qt-dbus ) + portaudio? ( media-libs/portaudio ) + >=media-sound/jack-audio-connection-kit-0.109.2" +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + $(use_enable alsa alsa-seq) \ + $(use_enable dbus) \ + $(use_enable debug) \ + $(use_enable portaudio) + + # Emulate what the Makefile does, so that we can get the correct + # compiler used. + eqmake4 ${PN}.pro -o ${PN}.mak || die "eqmake4 failed" +} + +src_compile() { + emake -f ${PN}.mak || die "emake failed" + lupdate ${PN}.pro || die "lupdate failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc README ChangeLog TODO AUTHORS TRANSLATORS +} |