Magellan Linux

Annotation of /smage/trunk/extras/rdesktop/rdesktop-1.9.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14355 - (hide annotations) (download)
Thu Jul 9 09:29:55 2020 UTC (3 years, 10 months ago) by niro
File size: 1470 byte(s)
auto added: ver bump to 1.9.0-r1
1 niro 14353 # $Id$
2    
3     PNAME="rdesktop"
4     PVER="1.9.0"
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.9
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.9
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 niro 14354 https://github.com/${PNAME}/${PNAME}/releases/download/v${PVER}/${SRCFILE}
41 niro 14353 mirror://${PNAME}/${SRCFILE}
42     )
43    
44 niro 14354 UP2SEPERATOR="v"
45     UP2EXCLUDE="rdesktop-"
46     UP2DATE="updatecmd https://github.com/${PNAME}/${PNAME}/releases | highesttarball gz"
47 niro 14353
48     src_prepare()
49     {
50     munpack ${SRCFILE} || die
51     cd ${SRCDIR}
52    
53     cd ${SRCDIR}
54    
55     # force use of our CFLAGS
56     sed -i -e '/-O2/c\' -e 'cflags="$cflags ${CFLAGS}"' configure || die
57     }
58    
59     src_compile()
60     {
61     cd ${SRCDIR}
62    
63     mconfigure \
64     --with-openssl=/usr \
65     --with-sound \
66     --without-debug \
67     --with-ipv6 \
68     --disable-credssp \
69     --enable-smartcard \
70     || die
71    
72     mmake || die
73     }