blob: f98545e8f12afb9812a5d912b948e8085b344927 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
ESVN_REPO_URI="git://gitorious.org/konversation/konversation.git"
inherit git 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="
>=kde-base/kdepimlibs-${KDE_MINIMAL}
crypt? ( app-crypt/qca:2 )
"
RDEPEND="${DEPEND}"
src_unpack() {
git_src_unpack
}
src_configure() {
mycmakeargs=($(cmake-utils_use_with crypt QCA2))
kde4-base_src_configure
}
|