blob: c4b0ebd054d36df7e8b921a1024395c79aac663e (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
VIRTUALX_REQUIRED="test"
inherit kde4-base
DESCRIPTION="A DropDrawers clone. Multiple information organizer"
HOMEPAGE="http://basket.kde.org/"
EGIT_REPO_URI="git://github.com/kelvie/basket.git"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE="debug crypt"
DEPEND="
$(add_kdebase_dep kdepimlibs)
media-libs/qimageblitz
x11-libs/libX11
crypt? ( >=app-crypt/gpgme-1.0 )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package crypt Gpgme)
)
kde4-base_src_configure
}
|