blob: 5c6ae4ecd16b00fa84619e8191b5bc2bc9056f62 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_PV="4.14.3"
inherit kde4-base
DESCRIPTION="Framework for searching and managing metadata"
SRC_URI="
mirror://kde/stable/${MY_PV}/src/${PN}-${MY_PV}.tar.xz
https://dev.gentoo.org/~asturm/${P}.tar.xz
"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="
$(add_kdeapps_dep kdepimlibs)
dev-libs/qjson
dev-libs/xapian:=[chert]
"
RDEPEND="${DEPEND}
!<kde-apps/nepomuk-4.12.50
"
RESTRICT="test"
PATCHES=( "${WORKDIR}/${P}" ) # intevation branch + disable non-PIM stuff
S="${WORKDIR}/${PN}-${MY_PV}"
|