blob: 65f9ad2b269706a37a8d1e6df321e01af1fa71dd (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit kde4-base
DESCRIPTION="A user friendly IRC Client for KDE4"
HOMEPAGE="http://konversation.kde.org"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE="+crypt debug"
DEPEND="
$(add_kdebase_dep kdepimlibs)
crypt? ( app-crypt/qca:2 )
"
RDEPEND="${DEPEND}
crypt? ( app-crypt/qca-ossl )
"
src_configure() {
mycmakeargs+=(
$(cmake-utils_use_with crypt QCA2)
)
kde4-base_src_configure
}
|