diff options
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/kamix/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/kamix/kamix-0.6.1.ebuild | 21 |
2 files changed, 15 insertions, 13 deletions
diff --git a/media-sound/kamix/ChangeLog b/media-sound/kamix/ChangeLog index 00c91a935170..9cd5e0fb950a 100644 --- a/media-sound/kamix/ChangeLog +++ b/media-sound/kamix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/kamix -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kamix/ChangeLog,v 1.14 2004/12/24 04:19:09 pkdawson Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/kamix/ChangeLog,v 1.15 2005/02/18 13:46:58 greg_g Exp $ + + 18 Feb 2005; Gregorio Guidi <greg_g@gentoo.org> kamix-0.6.1.ebuild: + Make arts support optional again. *kamix-0.6.1 (23 Dec 2004) diff --git a/media-sound/kamix/kamix-0.6.1.ebuild b/media-sound/kamix/kamix-0.6.1.ebuild index fa6ef57dd061..21c23f568197 100644 --- a/media-sound/kamix/kamix-0.6.1.ebuild +++ b/media-sound/kamix/kamix-0.6.1.ebuild @@ -1,11 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kamix/kamix-0.6.1.ebuild,v 1.1 2004/12/24 04:19:09 pkdawson Exp $ - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/media-sound/kamix/kamix-0.6.1.ebuild,v 1.2 2005/02/18 13:46:58 greg_g Exp $ inherit kde -need-kde 3 DESCRIPTION="A mixer for KDE and ALSA." HOMEPAGE="http://kamix.sourceforge.net/" @@ -14,14 +11,16 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -DEPEND="${DEPEND} - >=kde-base/arts-1.2.0 - >=media-libs/alsa-lib-0.9" +IUSE="" + +DEPEND=">=media-libs/alsa-lib-0.9" + +need-kde 3 S=${WORKDIR}/${PN} src_compile() { - kde_src_compile myconf - myconf="$myconf --enable-vumeter" - kde_src_compile configure make + myconf="$(use_enable arts vumeter)" + + kde_src_compile } |