Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 409705
Collapse All | Expand All

(-)qjackctl-0.3.8.ebuild (-10 / +7 lines)
Lines 1-10 Link Here
1
# Copyright 1999-2011 Gentoo Foundation
1
# Copyright 1999-2012 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.8.ebuild,v 1.2 2011/08/12 18:51:07 xarthisius Exp $
3
# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.8.ebuild,v 1.2 2011/08/12 18:51:07 xarthisius Exp $
4
4
5
EAPI=2
5
EAPI=4
6
6
7
inherit qt4
7
inherit qt4-r2
8
8
9
DESCRIPTION="A Qt application to control the JACK Audio Connection Kit and ALSA sequencer connections."
9
DESCRIPTION="A Qt application to control the JACK Audio Connection Kit and ALSA sequencer connections."
10
HOMEPAGE="http://qjackctl.sourceforge.net/"
10
HOMEPAGE="http://qjackctl.sourceforge.net/"
Lines 24-29 Link Here
24
	>=media-sound/jack-audio-connection-kit-0.109.2"
24
	>=media-sound/jack-audio-connection-kit-0.109.2"
25
DEPEND="${RDEPEND}"
25
DEPEND="${RDEPEND}"
26
26
27
DOCS="AUTHORS ChangeLog README TODO TRANSLATORS"
28
27
src_configure() {
29
src_configure() {
28
	econf \
30
	econf \
29
		$(use_enable alsa alsa-seq) \
31
		$(use_enable alsa alsa-seq) \
Lines 33-47 Link Here
33
35
34
	# Emulate what the Makefile does, so that we can get the correct
36
	# Emulate what the Makefile does, so that we can get the correct
35
	# compiler used.
37
	# compiler used.
36
	eqmake4 ${PN}.pro -o ${PN}.mak || die "eqmake4 failed"
38
	eqmake4 ${PN}.pro -o ${PN}.mak
37
}
39
}
38
40
39
src_compile() {
41
src_compile() {
40
	emake -f ${PN}.mak || die "emake failed"
42
	emake -f ${PN}.mak
41
	lupdate ${PN}.pro || die "lupdate failed"
43
	lupdate ${PN}.pro || die "lupdate failed"
42
}
44
}
43
44
src_install() {
45
	emake DESTDIR="${D}" install || die "make install failed"
46
	dodoc README ChangeLog TODO AUTHORS TRANSLATORS
47
}

Return to bug 409705