blob: 1ceeb2c9581d7ee3e49bc97622dfd7717211eb62 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
KMNAME="kdenetwork"
inherit kde4-meta
DESCRIPTION="An advanced download manager for KDE"
KEYWORDS="~amd64 ~x86"
IUSE="debug htmlhandbook +plasma bittorrent -bittorrent-external +semantic-desktop sqlite"
DEPEND="
dev-libs/libpcre
semantic-desktop? ( >=kde-base/nepomuk-${PV}:${SLOT} )
sqlite? ( dev-db/sqlite )
bittorrent? ( dev-libs/gmp app-crypt/qca:2 )
bittorrent-external? ( >=net-p2p/ktorrent-3.1.5 )"
RDEPEND="${DEPEND}"
pkg_setup() {
if use bittorrent && use bittorrent-external; then
eerror
eerror "USE flag 'bittorrent' conflicts with these USE flag 'bittorrent-external'"
eerror
eerror "You must disable these conflicting flags before you can emerge this package."
eerror "You can do this by disabling one of these flags in /etc/portage/package.use:"
eerror " =${CATEGORY}/${PN}-${PV} -bittorrent-external"
eerror
die "Conflicting USE flags found"
fi
kde4-base_pkg_setup
}
src_prepare() {
if ! use bittorrent && ! use bittorrent-external; then
sed -i -e '/bittorrent/s:^:#DONOTCOMPILE :' \
"${S}"/kget/transfer-plugins/CMakeLists.txt \
|| die "sed to disable torrent support failed."
fi
kde4-meta_src_prepare
}
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_enable bittorrent EMBEDDED_TORRENT_SUPPORT)
$(cmake-utils_use_with plasma Plasma)
$(cmake-utils_use_with semantic-desktop Nepomuk)
$(cmake-utils_use_with semantic-desktop Soprano)
$(cmake-utils_use_with sqlite Sqlite)"
kde4-meta_src_configure
}
|