blob: 9c0afe2e4a3c360cd2348cc1f496eb7f85bf98d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KMNAME="extragear/base"
inherit kde4-meta
DESCRIPTION="Various plugins for konqueror"
HOMEPAGE="http://kde.org/"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE="debug tidy"
DEPEND="
>=kde-base/libkonq-${KDE_MINIMAL}
tidy? ( app-text/htmltidy )
"
RDEPEND="${DEPEND}
!kde-base/konq-plugins:4.1[-kdeprefix]
!kde-base/konq-plugins:4.2[-kdeprefix]
>=kde-base/kcmshell-${KDE_MINIMAL}
>=kde-base/konqueror-${KDE_MINIMAL}
"
src_configure() {
mycmakeargs="${mycmakeargs}
-DKdeWebKit=OFF
-DWebKitPart=OFF
$(cmake-utils_use_with tidy LibTidy)"
kde4-meta_src_configure
}
|