1 | # $Id: Portfile,v 1.3 2003/10/30 13:43:27 olegb Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name rdesktop |
---|
5 | version 1.3.1 |
---|
6 | revision 0 |
---|
7 | categories net |
---|
8 | maintainers noses@noses.com |
---|
9 | description Windows Terminal Server Client |
---|
10 | long_description \ |
---|
11 | rdesktop is an RDP clietn to access Microsoft Terminal Server \ |
---|
12 | based services. \ |
---|
13 | \ |
---|
14 | The variant called w2k-license-hack is a backported patch from \ |
---|
15 | an rdesktop 1.1 patchset which wasn't integrated into the latest \ |
---|
16 | version -- it will announce the client as Windows 2000 machine \ |
---|
17 | causing the Terminal Server to provide a license for free. \ |
---|
18 | Please argue over this with your own conscience. |
---|
19 | |
---|
20 | platforms darwin freebsd |
---|
21 | |
---|
22 | homepage http://rdesktop.sourceforge.net/ |
---|
23 | master_sites sourceforge |
---|
24 | |
---|
25 | configure.args --mandir=${prefix}/share/man |
---|
26 | build.target rdesktop |
---|
27 | |
---|
28 | checksums md5 968a1e3f5161bab80c306df31c54cfb1 |
---|
29 | |
---|
30 | #worksrcdir rdesktop |
---|
31 | |
---|
32 | variant w2k-license-hack { |
---|
33 | patchfiles patch-licence.c |
---|
34 | } |
---|
35 | |
---|
36 | variant devel { |
---|
37 | fetch.type cvs |
---|
38 | cvs.root :pserver:anonymous@cvs.sourceforge.net:/cvsroot/rdesktop |
---|
39 | cvs.module rdesktop |
---|
40 | cvs.tag HEAD |
---|
41 | version HEAD |
---|
42 | worksrcdir ${cvs.module} |
---|
43 | patchfiles patch-disk.c |
---|
44 | post-patch { |
---|
45 | cd ${worksrcpath} |
---|
46 | system "autoconf" |
---|
47 | } |
---|
48 | } |
---|