blob: 86e035dc4b9fa94cb630e89257bd6d66f8f86378 (
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
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
WEBKIT_REQUIRED="always"
KDE_LINGUAS="cs da de el es et eu fi fr gl hu ia it km lt mr nb nl pl pt pt_BR
sk sl sr sr@ijekavian sr@ijekavianlatin sr@latin sv tr uk zh_CN zh_TW"
KDE_HANDBOOK="optional"
KDE_MINIMAL="4.13.1"
inherit kde4-base
DESCRIPTION="A browser based on qtwebkit"
HOMEPAGE="https://rekonq.kde.org/"
[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug kde opera"
DEPEND="
$(add_kdebase_dep kdelibs)
kde? ( $(add_kdebase_dep kactivities) )
opera? (
app-crypt/qca:2[qt4(+)]
dev-libs/qoauth
)
"
RDEPEND="
${DEPEND}
$(add_kdeapps_dep kdebase-kioslaves)
$(add_kdeapps_dep keditbookmarks)
"
src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_NepomukCore=ON
-DCMAKE_DISABLE_FIND_PACKAGE_Soprano=ON
$(cmake-utils_use_with kde KActivities)
$(cmake-utils_use_with opera QCA2)
$(cmake-utils_use_with opera QtOAuth)
)
kde4-base_src_configure
}
|