blob: 09f67647b7b3c2bdb63c82a4e56162cbb1b124c2 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/krfb/krfb-4.3.3.ebuild,v 1.6 2010/01/19 02:29:23 jer Exp $
EAPI="2"
KMNAME="kdenetwork"
inherit kde4-meta
DESCRIPTION="VNC-compatible server to share KDE desktops"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE="debug +handbook zeroconf"
DEPEND="
>=net-libs/libvncserver-0.9
net-libs/openslp
x11-libs/libXdamage
zeroconf? (
|| (
net-dns/avahi[mdnsresponder-compat]
net-misc/mDNSResponder
)
)
"
RDEPEND="${DEPEND}"
src_configure() {
# krfb requires both slp and vnc to build
mycmakeargs="${mycmakeargs}
-DWITH_Xmms=OFF -DWITH_SLP=ON -DWITH_LibVNCServer=ON
$(cmake-utils_use_with zeroconf DNSSD)"
kde4-meta_src_configure
}
|