summaryrefslogtreecommitdiff
blob: c6e83169cf0eefb1d6443cd0a32fb086bb30cc38 (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit leechcraft

DESCRIPTION="Cloud image storage services client (like Flickr or Picasa)"

SLOT="0"
KEYWORDS=""
IUSE="debug +deathnote +rappor +spegnersi +vangog"

DEPEND="
	~app-leechcraft/lc-core-${PV}
	dev-qt/qtwidgets:5
	dev-qt/qtnetwork:5
	dev-qt/qtdeclarative:5
	rappor? ( dev-qt/qtxml:5 )
	deathnote? (
		dev-qt/qtxml:5
		dev-qt/qtxmlpatterns:5
	)
	spegnersi? (
		dev-libs/kqoauth
		dev-qt/qtxml:5
	)
	vangog? ( dev-qt/qtxml:5 )"
RDEPEND="${DEPEND}"

src_configure() {
	local mycmakeargs=(
		-DENABLE_BLASQ_DEATHNOTE=$(usex deathnote)
		-DENABLE_BLASQ_RAPPOR=$(usex rappor)
		-DENABLE_BLASQ_SPEGNERSI=$(usex spegnersi)
		-DENABLE_BLASQ_VANGOG=$(usex vangog)
	)

	cmake-utils_src_configure
}