diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2005-03-14 19:45:13 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2005-03-14 19:45:13 +0000 |
commit | 8692279162a3a253ff33737827562c1605827fde (patch) | |
tree | 93bdc5722bc20cc8685dfafefb2be79fb9d45274 /eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-8692279162a3a253ff33737827562c1605827fde.tar.gz gentoo-2-8692279162a3a253ff33737827562c1605827fde.tar.bz2 gentoo-2-8692279162a3a253ff33737827562c1605827fde.zip |
fixed #67302
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ebook.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/ebook.eclass b/eclass/ebook.eclass index d4a2e91070ef..8b61d9a17117 100644 --- a/eclass/ebook.eclass +++ b/eclass/ebook.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ebook.eclass,v 1.20 2004/12/20 03:33:32 jhuebel Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ebook.eclass,v 1.21 2005/03/14 19:45:13 bass Exp $ # # Author Francisco Gimeno <kikov@fco-gimeno.com> # Mantainer José Alberto Suárez López <bass@gentoo.org> @@ -13,6 +13,7 @@ ECLASS=ebook INHERITED="$INHERITED $ECLASS" HOMEPAGE="http://lidn.sourceforge.net" +IUSE="kde" SLOT="0" LICENSE="OPL" KEYWORDS="x86 ppc amd64" @@ -65,7 +66,8 @@ if [ "${DEVHELPROOT}" = "" ]; then DEVHELPROOT="usr/share/devhelp" fi if [ "${RDEPEND}" = "" ]; then - RDEPEND=">=dev-util/devhelp-0.6" + RDEPEND="kde? ( dev-uitl/kdevelop ) + !kde? ( >=dev-util/devhelp-0.6 )" fi if [ "${DESCRIPTION}" = "" ]; then DESCRIPTION="${P} ebook based on $ECLASS eclass" |