blob: 232c8655f6dcb4dc4f38ca73e94e0676284b461e (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit kde4-base
DESCRIPTION="A content publishing and distribution platform for Plasma Active"
HOMEPAGE="http://www.kde.org/"
SRC_URI="mirror://kde/stable/active/3.0/src/${P}.tar.xz"
LICENSE="GPL-2+ LGPL-2+"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="epub"
DEPEND="
dev-libs/qjson
epub? ( dev-libs/soprano $(add_kdebase_dep nepomuk) )
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${PN}-1.0-build.patch" )
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package epub Soprano)
$(cmake-utils_use_find_package epub Nepomuk)
)
kde4-base_src_configure
}
|