Magellan Linux

Contents of /trunk/extras/freerdp/freerdp-1.0.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12045 - (show annotations) (download)
Wed May 2 15:13:44 2012 UTC (12 years, 1 month ago) by niro
File size: 1362 byte(s)
-disabled pcsc support
1 # $Id$
2
3 PNAME="freerdp"
4 PVER="1.0.1"
5 PBUILD="r1"
6
7 PCAT="net-misc"
8
9 DESCRIPTION="FreeRDP is a free implementation of the Remote Desktop Protocol (RDP)."
10 HOMEPAGE="http://www.freerdp.com/"
11
12 DEPEND=">= dev-libs/openssl-1.0.1g
13 >= media-sound/libpulse-1.1
14 >= net-print/libcups-1.5
15 >= media-video/ffmpeg-0.10
16 >= media-libs/alsa-lib-1.0.25
17 >= x11-libs/libX11-1.4
18 >= x11-libs/libXext-1.3
19 >= x11-libs/libXcursor-1.1
20 >= x11-libs/libxkbfile-1
21 >= x11-libs/libXinerama-1.1
22 >= x11-libs/libXv-1"
23 #>= sys-apps/pcsc-lite-1.8
24
25 SDEPEND=">= x11-proto/xproto-7
26 >= x11-proto/xineramaproto-1.2
27 >= x11-proto/kbproto-1
28 >= x11-proto/xextproto-7.2"
29
30 SRCFILE="${PNAME}-${PVER}.tar.gz"
31 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
32
33 sminclude cmake
34
35 SRC_URI=(
36 https://github.com/downloads/FreeRDP/FreeRDP/${SRCFILE}
37 mirror://${PNAME}/${SRCFILE}
38 )
39
40 UP2DATE="updatecmd https://github.com/FreeRDP/FreeRDP/downloads | grep freerdp-[0-9] | firsttarball gz"
41
42 src_compile()
43 {
44 cd ${SRCDIR}
45
46 cmake_configure \
47 $(cmake_with OpenSSL) \
48 $(cmake_with PULSEAUDIO) \
49 $(cmake_with CUPS) \
50 $(cmake_with FFMPEG) \
51 $(cmake_with ALSA) \
52 $(cmake_with X11) \
53 $(cmake_with XKBFILE) \
54 $(cmake_with XINERAMA) \
55 $(cmake_with XEXT) \
56 $(cmake_with XCURSOR) \
57 $(cmake_with XV) \
58 $(cmake_without PCSC) \
59 $(cmake_without CUNIT) \
60 $(cmake_without DIRECTFB) \
61 || die
62
63 mmake || die
64 }