diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-13 12:56:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-13 12:56:23 +0000 |
commit | a8488d61f46dd4c142e69f38041f428b5b7a8ada (patch) | |
tree | b3c513e1b9ac70bbe3aaf5ac034697e2585420b2 /media-sound/creox | |
parent | Stable on alpha wrt #102175 (diff) | |
download | gentoo-2-a8488d61f46dd4c142e69f38041f428b5b7a8ada.tar.gz gentoo-2-a8488d61f46dd4c142e69f38041f428b5b7a8ada.tar.bz2 gentoo-2-a8488d61f46dd4c142e69f38041f428b5b7a8ada.zip |
Added strict dependency on arts as per bug #81919.
(Portage version: 2.0.51.22)
Diffstat (limited to 'media-sound/creox')
-rw-r--r-- | media-sound/creox/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/creox/creox-0.2.2_rc2.ebuild | 14 |
2 files changed, 16 insertions, 5 deletions
diff --git a/media-sound/creox/ChangeLog b/media-sound/creox/ChangeLog index 783e899a77c6..c5e8cffc9e43 100644 --- a/media-sound/creox/ChangeLog +++ b/media-sound/creox/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/creox -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/creox/ChangeLog,v 1.8 2004/09/14 07:27:17 eradicator Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/creox/ChangeLog,v 1.9 2005/08/13 12:56:23 flameeyes Exp $ + + 13 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> creox-0.2.2_rc2.ebuild: + Added strict dependency on arts as per bug #81919. 14 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> creox-0.2.2_rc2.ebuild: diff --git a/media-sound/creox/creox-0.2.2_rc2.ebuild b/media-sound/creox/creox-0.2.2_rc2.ebuild index 87d7c4db82ee..6e1d24cf51ea 100644 --- a/media-sound/creox/creox-0.2.2_rc2.ebuild +++ b/media-sound/creox/creox-0.2.2_rc2.ebuild @@ -1,6 +1,6 @@ -# 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/creox/creox-0.2.2_rc2.ebuild,v 1.8 2004/09/14 07:27:17 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/creox/creox-0.2.2_rc2.ebuild,v 1.9 2005/08/13 12:56:23 flameeyes Exp $ inherit kde eutils @@ -16,9 +16,17 @@ LICENSE="GPL-2" KEYWORDS="x86 ~ppc amd64" IUSE="" -DEPEND="media-sound/jack-audio-connection-kit" +DEPEND="media-sound/jack-audio-connection-kit + kde-base/arts" need-kde 3 +pkg_setup() { + if ! built_with_use kdelibs arts ; then + eerror "${CATEGORY}/${P} requires you to build kdelibs with arts useflag on." + die + fi +} + src_unpack() { kde_src_unpack |