blob: 18dbfc29250bd8824d146f9fd45a002c922e33a6 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/kmldonkey/kmldonkey-2.0.2-r2.ebuild,v 1.3 2010/12/30 16:35:09 tampakrap Exp $
EAPI="3"
KDE_PV="4.4.0"
SLOT="4"
KDE_LINGUAS="ca cs el es et fr ga gl it nb nl pt ru sv tr uk zh_CN zh_TW"
inherit kde4-base
DESCRIPTION="Provides integration for the MLDonkey P2P software and KDE 4."
HOMEPAGE="http://www.kde.org/"
LICENSE="GPL-2 LGPL-2"
SRC_URI="mirror://kde/stable/${KDE_PV}/src/extragear/${P}-kde${KDE_PV}.tar.bz2"
KEYWORDS="~amd64 ~x86"
IUSE="debug plasma"
RDEPEND="plasma? ( >=kde-base/plasma-workspace-${KDE_MINIMAL} )"
DEPEND="${RDEPEND}
sys-devel/gettext"
S=${WORKDIR}/${P}-kde${KDE_PV}
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with plasma Plasma)"
kde4-base_src_configure
}
|