Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14358 - (show annotations) (download)
Thu Jul 9 09:59:53 2020 UTC (3 years, 9 months ago) by niro
File size: 1521 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 msetfeature "!check" # no check target in Makefile
38 sminclude mbuild alx-split
39
40 SRC_URI=(
41 https://github.com/${PNAME}/${PNAME}/releases/download/v${PVER}/${SRCFILE}
42 mirror://${PNAME}/${SRCFILE}
43 )
44
45 UP2SEPERATOR="v"
46 UP2EXCLUDE="rdesktop-"
47 UP2DATE="updatecmd https://github.com/${PNAME}/${PNAME}/releases | highesttarball gz"
48
49 src_prepare()
50 {
51 munpack ${SRCFILE} || die
52 cd ${SRCDIR}
53
54 cd ${SRCDIR}
55
56 # force use of our CFLAGS
57 sed -i -e '/-O2/c\' -e 'cflags="$cflags ${CFLAGS}"' configure || die
58 }
59
60 src_compile()
61 {
62 cd ${SRCDIR}
63
64 mconfigure \
65 --with-openssl=/usr \
66 --with-sound \
67 --without-debug \
68 --with-ipv6 \
69 --disable-credssp \
70 --enable-smartcard \
71 || die
72
73 mmake || die
74 }