Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3306 - (show annotations) (download)
Tue Nov 22 14:59:30 2011 UTC (12 years, 6 months ago) by niro
File size: 827 byte(s)
auto added: ver bump to 1.7.0-r1
1 # $Id$
2
3 PNAME="rdesktop"
4 PVER="1.7.0"
5 PBUILD="r1"
6
7 PCATEGORIE="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.4
13 >= x11-libs/libXext-1.3
14 >= x11-libs/libXau-1
15 >= x11-libs/libXdmcp-1"
16
17 SDEPEND=">= virtual/sed
18 >= x11-libs/libXt-1"
19
20 SRCFILE="${PNAME}-${PVER}.tar.gz"
21 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
22
23 SRC_URI=(
24 sourceforge://${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 )
27
28 UP2DATE="updatecmd_sourceforge ${PNAME}"
29
30 src_prepare()
31 {
32 munpack ${SRCFILE} || die
33 cd ${SRCDIR}
34
35 # force use of our CFLAGS
36 sed -i -e '/-O2/c\' -e 'cflags="$cflags ${CFLAGS}"' configure || die
37 }
38
39 src_compile()
40 {
41 cd ${SRCDIR}
42
43 mconfigure \
44 --without-openssl \
45 --with-sound \
46 --without-debug \
47 --with-ipv6 \
48 || die
49
50 mmake || die
51 }