Index: qjackctl-0.3.8.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.8.ebuild,v retrieving revision 1.2 diff -u -r1.2 qjackctl-0.3.8.ebuild --- qjackctl-0.3.8.ebuild 12 Aug 2011 18:51:07 -0000 1.2 +++ qjackctl-0.3.8.ebuild 25 Mar 2012 22:15:58 -0000 @@ -1,10 +1,10 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.3.8.ebuild,v 1.2 2011/08/12 18:51:07 xarthisius Exp $ -EAPI=2 +EAPI=4 -inherit qt4 +inherit qt4-r2 DESCRIPTION="A Qt application to control the JACK Audio Connection Kit and ALSA sequencer connections." HOMEPAGE="http://qjackctl.sourceforge.net/" @@ -24,6 +24,8 @@ >=media-sound/jack-audio-connection-kit-0.109.2" DEPEND="${RDEPEND}" +DOCS="AUTHORS ChangeLog README TODO TRANSLATORS" + src_configure() { econf \ $(use_enable alsa alsa-seq) \ @@ -33,15 +35,10 @@ # Emulate what the Makefile does, so that we can get the correct # compiler used. - eqmake4 ${PN}.pro -o ${PN}.mak || die "eqmake4 failed" + eqmake4 ${PN}.pro -o ${PN}.mak } src_compile() { - emake -f ${PN}.mak || die "emake failed" + emake -f ${PN}.mak lupdate ${PN}.pro || die "lupdate failed" } - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc README ChangeLog TODO AUTHORS TRANSLATORS -}