blob: c4cb31593146021fa0faeec3558efd2feb6fc596 (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-blasq/lc-blasq-0.6.60.ebuild,v 1.2 2014/04/02 17:03:36 zlogene Exp $
EAPI="5"
inherit leechcraft
DESCRIPTION="Cloud image storage services client (like Flickr or Picasa)"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="debug +deathnote +rappor +spegnersi +vangog"
DEPEND="~app-leechcraft/lc-core-${PV}
deathnote? ( dev-qt/qtxmlpatterns:4 )
spegnersi? ( dev-libs/kqoauth )
vangog? ( dev-libs/qjson )
"
RDEPEND="${DEPEND}"
src_configure(){
local mycmakeargs=(
$(cmake-utils_use_enable deathnote BLASQ_DEATHNOTE)
$(cmake-utils_use_enable rappor BLASQ_RAPPOR)
$(cmake-utils_use_enable spegnersi BLASQ_SPEGNERSI)
$(cmake-utils_use_enable vangog BLASQ_VANGOG)
)
cmake-utils_src_configure
}
|