diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-10-01 21:37:06 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-10-01 21:37:06 +0000 |
commit | 79d307e2f8fec4bbc72028fb34be26ed504ca626 (patch) | |
tree | 5b5a62250af31a4930175897726d3a562fae5876 /media-sound/qjackctl | |
parent | set IUSE; drop RDEPEND (diff) | |
download | gentoo-2-79d307e2f8fec4bbc72028fb34be26ed504ca626.tar.gz gentoo-2-79d307e2f8fec4bbc72028fb34be26ed504ca626.tar.bz2 gentoo-2-79d307e2f8fec4bbc72028fb34be26ed504ca626.zip |
version bump
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/qjackctl')
-rw-r--r-- | media-sound/qjackctl/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/qjackctl/qjackctl-0.3.5.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/media-sound/qjackctl/ChangeLog b/media-sound/qjackctl/ChangeLog index 68fcb204f08e..99ba4cf06015 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.61 2009/08/01 06:34:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.62 2009/10/01 21:37:06 aballier Exp $ + +*qjackctl-0.3.5 (01 Oct 2009) + + 01 Oct 2009; Alexis Ballier <aballier@gentoo.org> +qjackctl-0.3.5.ebuild: + version bump 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> qjackctl-0.3.2.ebuild, qjackctl-0.3.4.ebuild: diff --git a/media-sound/qjackctl/qjackctl-0.3.5.ebuild b/media-sound/qjackctl/qjackctl-0.3.5.ebuild new file mode 100644 index 000000000000..902054a54e73 --- /dev/null +++ b/media-sound/qjackctl/qjackctl-0.3.5.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.5.ebuild,v 1.1 2009/10/01 21:37:06 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 +} |