blob: 420c0628132684ba8dc667348fb3f1762bd83b9e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/konq-plugins/konq-plugins-4.6.1.ebuild,v 1.7 2011/06/01 19:46:18 ranger Exp $
EAPI=4
KDE_MINIMAL="4.6"
inherit kde4-base
DESCRIPTION="Various plugins for konqueror"
HOMEPAGE="http://kde.org/"
SRC_URI="mirror://kde/stable/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1 FDL-1.2"
SLOT="4"
KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE="debug tidy"
DEPEND="
$(add_kdebase_dep libkonq)
tidy? ( app-text/htmltidy )
"
RDEPEND="${DEPEND}
$(add_kdebase_dep kcmshell)
$(add_kdebase_dep konqueror)
"
src_configure() {
mycmakeargs=(
$(cmake-utils_use_with tidy LibTidy)
)
kde4-base_src_configure
}
|