blob: 7be1fadff04bd5c33766e56e3abd3813b81bd177 (
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
57
58
59
60
61
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/freerdp/freerdp-9999.1.ebuild,v 1.2 2011/09/07 03:53:03 floppym Exp $
EAPI="4"
inherit cmake-utils git-2
DESCRIPTION="Client-side implementation of the Remote Desktop Protocol"
HOMEPAGE="http://www.freerdp.com/"
SRC_URI=""
EGIT_REPO_URI="git://github.com/FreeRDP/FreeRDP.git
https://github.com/FreeRDP/FreeRDP.git"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""
IUSE="+alsa +cups directfb pulseaudio test +X +xcursor +xext +xinerama +xkbfile"
RDEPEND="
dev-libs/openssl
sys-libs/zlib
alsa? ( media-libs/alsa-lib )
cups? ( net-print/cups )
directfb? ( dev-libs/DirectFB )
pulseaudio? ( media-sound/pulseaudio )
X? (
x11-libs/libX11
xcursor? ( x11-libs/libXcursor )
xext? ( x11-libs/libXext )
xinerama? ( x11-libs/libXinerama )
)
xkbfile? ( x11-libs/libxkbfile )
"
DEPEND="${RDEPEND}
app-text/xmlto
test? ( dev-util/cunit )
"
DOCS=( README )
# Test suite segfaults
RESTRICT="test"
src_configure() {
# TODO: Add debug options
local mycmakeargs=(
-DWITH_MANPAGES=ON
$(cmake-utils_use_with alsa)
$(cmake-utils_use_with cups)
$(cmake-utils_use_with directfb)
$(cmake-utils_use_with pulseaudio)
$(cmake-utils_use_with test CUNIT)
$(cmake-utils_use_with X X11)
$(cmake-utils_use_with xcursor)
$(cmake-utils_use_with xext)
$(cmake-utils_use_with xinerama)
$(cmake-utils_use_with xkbfile)
)
cmake-utils_src_configure
}
|