blob: 4c0c91c5fc35cc2b4fc094436a9ffc71a51fafac (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/konversation/konversation-1.2_rc1-r1.ebuild,v 1.1 2009/10/07 21:40:21 scarabeus Exp $
EAPI="2"
KDE_LINGUAS="ar bg ca cs da de el en_GB es et fr gl hu it ja nds nl pa pt pt_BR ru sv
tr uk zh_CN zh_TW"
inherit kde4-base versionator
MY_PV=$(replace_version_separator 2 '-')
MY_P="${PN}"-"${MY_PV}"
DESCRIPTION="A user friendly IRC Client for KDE4"
HOMEPAGE="http://konversation.kde.org"
SRC_URI="mirror://kde/unstable/${PN}/${MY_PV}/src/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="+crypt debug"
DEPEND="
>=kde-base/kdepimlibs-${KDE_MINIMAL}
crypt? ( app-crypt/qca:2 )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${PV}-debug.patch
)
src_configure() {
mycmakeargs="$(cmake-utils_use_with crypt QCA2)"
kde4-base_src_configure
}
|