Ticket #2306: Portfile

File Portfile, 1.3 KB (added by shadow@…, 20 years ago)

revised Portfile for rdesktop

Line 
1# $Id: Portfile,v 1.3 2003/10/30 13:43:27 olegb Exp $
2
3PortSystem 1.0
4name            rdesktop
5version         1.3.1
6revision        0
7categories      net
8maintainers     noses@noses.com
9description     Windows Terminal Server Client
10long_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       
20platforms       darwin freebsd
21
22homepage        http://rdesktop.sourceforge.net/
23master_sites    sourceforge
24
25configure.args  --mandir=${prefix}/share/man
26build.target    rdesktop
27
28checksums       md5 968a1e3f5161bab80c306df31c54cfb1
29
30#worksrcdir     rdesktop
31
32variant         w2k-license-hack {
33                        patchfiles patch-licence.c
34                }
35
36variant         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                }