blob: 4f76701b2bc9a30a25f73de84ebab7bbd4b54bf1 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# 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-1.0_beta2.ebuild,v 1.1 2011/11/28 03:08:41 floppym Exp $
EAPI="4"
inherit cmake-utils
DESCRIPTION="Client-side implementation of the Remote Desktop Protocol"
HOMEPAGE="http://www.freerdp.com/"
SRC_URI="https://github.com/downloads/FreeRDP/FreeRDP/FreeRDP-${PV/_beta2/-bete2}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+alsa +cups directfb ffmpeg pulseaudio smartcard sse2 test +X +xcursor
+xext +xinerama +xkbfile +xv"
FREERDP_DEBUG="transport chanman svc dvc kbd nla nego certificate license gdi
rfx x11 rail xv scard orders redir"
IUSE+=" $(printf 'debug-%s ' ${FREERDP_DEBUG})"
RDEPEND="
dev-libs/openssl
sys-libs/zlib
alsa? ( media-libs/alsa-lib )
cups? ( net-print/cups )
directfb? ( dev-libs/DirectFB )
ffmpeg? ( virtual/ffmpeg )
pulseaudio? ( media-sound/pulseaudio )
smartcard? ( sys-apps/pcsc-lite )
X? (
x11-libs/libX11
xcursor? ( x11-libs/libXcursor )
xext? ( x11-libs/libXext )
xinerama? ( x11-libs/libXinerama )
xv? ( x11-libs/libXv )
)
xkbfile? ( x11-libs/libxkbfile )
"
DEPEND="${RDEPEND}
app-text/xmlto
test? ( dev-util/cunit )
"
DOCS=( README )
# Test suite segfaults
RESTRICT="test"
src_unpack() {
unpack ${A}
mv FreeRDP-* "${S}" || die
}
CMAKE_VERBOSE=1
src_configure() {
local mycmakeargs=(
-DWITH_MANPAGES=ON
$(cmake-utils_use_with alsa ALSA)
$(cmake-utils_use_with cups CUPS)
$(cmake-utils_use_with directfb DIRECTFB)
$(cmake-utils_use_with ffmpeg FFMPEG)
$(cmake-utils_use_with pulseaudio PULSEAUDIO)
$(cmake-utils_use_with smartcard PCSC)
$(cmake-utils_use_with sse2 SSE2)
$(cmake-utils_use_with test CUNIT)
$(cmake-utils_use_with X X11)
$(cmake-utils_use_with xcursor XCURSOR)
$(cmake-utils_use_with xext XEXT)
$(cmake-utils_use_with xinerama XINERAMA)
$(cmake-utils_use_with xkbfile XKBFILE)
$(cmake-utils_use_with xv XV)
)
for i in ${FREERDP_DEBUG}; do
mycmakeargs+=(
$(cmake-utils_use_with debug-${i} DEBUG_$(LC_ALL=C echo ${i} | tr a-z A-Z))
)
done
cmake-utils_src_configure
}
|