Magellan Linux

Contents of /smage/trunk/extras/rdesktop/rdesktop-1.8.6-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14356 - (show annotations) (download)
Thu Jul 9 09:45:01 2020 UTC (3 years, 9 months ago) by niro
File size: 1608 byte(s)
auto added: ver bump to 1.8.6-r1
1 # $Id$
2
3 PNAME="rdesktop"
4 PVER="1.8.6"
5 PBUILD="r1"
6
7 PCAT="net-misc"
8
9 DESCRIPTION="A remote desktop protocol client for RDP 4/5."
10 HOMEPAGE="http://rdesktop.sourceforge.net/"
11
12 DEPEND=">= x11-libs/libX11-1.6
13 >= x11-libs/libXext-1.3
14 >= x11-libs/libXau-1
15 >= x11-libs/libXdmcp-1
16 >= dev-libs/openssl-1.1
17 >= media-libs/libsamplerate-0.1.8
18 >= sys-apps/pcsc-lite-1.8"
19
20 SDEPEND=">= virtual/sed
21 >= x11-libs/libXt-1
22 >= x11-libs/libX11-dev-1.6
23 >= x11-libs/libXext-dev-1.3
24 >= x11-libs/libXau-dev-1
25 >= x11-libs/libXdmcp-dev-1
26 >= dev-libs/openssl-dev-1.1
27 >= media-libs/libsamplerate-dev-0.1.8
28 >= sys-apps/pcsc-lite-dev-1.8"
29
30 SRCFILE="${PNAME}-${PVER}.tar.gz"
31 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
32
33 ALX_PKG_KEEP="usr/bin/rdesktop
34 usr/share/rdesktop/keymaps/common
35 usr/share/rdesktop/keymaps/modifiers
36 usr/share/rdesktop/keymaps/de"
37 sminclude mbuild alx-split
38
39 SRC_URI=(
40 sourceforge://${PNAME}/${SRCFILE}
41 mirror://${PNAME}/${SRCFILE}
42 mirror://${PNAME}/${PNAME}-${PVER}-openssl-1.1-fixes.patch
43 mirror://${PNAME}/${PNAME}-${PVER}-openssl-1.1-x509-fixes.patch
44 )
45
46 UP2DATE="updatecmd_sourceforge ${PNAME}"
47
48 src_prepare()
49 {
50 munpack ${SRCFILE} || die
51 cd ${SRCDIR}
52
53 cd ${SRCDIR}
54
55 # openssl-1.1 fixes
56 mpatch ${PNAME}-${PVER}-openssl-1.1-fixes.patch || die
57 mpatch ${PNAME}-${PVER}-openssl-1.1-x509-fixes.patch || die
58
59 # force use of our CFLAGS
60 sed -i -e '/-O2/c\' -e 'cflags="$cflags ${CFLAGS}"' configure || die
61 }
62
63 src_compile()
64 {
65 cd ${SRCDIR}
66
67 mconfigure \
68 --with-openssl=/usr \
69 --with-sound \
70 --without-debug \
71 --with-ipv6 \
72 --disable-credssp \
73 --enable-smartcard \
74 || die
75
76 mmake || die
77 }