diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-18 13:46:58 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-18 13:46:58 +0000 |
commit | 96c8912331cca0f5163ff1dd5eb85534e13d56c5 (patch) | |
tree | 67cdd59a52b553f157eb2912bc9851c929051ee7 /media-sound/kamix | |
parent | Added a desktop entry for Netscape 7.2. Thanks to Yaakov S <yselkowitz@hotmai... (diff) | |
download | gentoo-2-96c8912331cca0f5163ff1dd5eb85534e13d56c5.tar.gz gentoo-2-96c8912331cca0f5163ff1dd5eb85534e13d56c5.tar.bz2 gentoo-2-96c8912331cca0f5163ff1dd5eb85534e13d56c5.zip |
Make arts support optional again.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-sound/kamix')
-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 } |