Ticket #43117: Portfile

File Portfile, 1.4 KB (added by cshbell@…, 10 years ago)

Portfile for rdesktop 1.7.1 removing maintainer

Line 
1# $Id$
2
3PortSystem 1.0
4
5name            rdesktop
6version         1.7.1
7revision        1
8categories      net
9license         GPL-3+
10maintainers     
11description     Windows Terminal Server Client
12long_description        \
13        rdesktop is an RDP client to access Microsoft Terminal Server \
14        based services. \
15        \
16        The variant called w2k-license-hack is a backported patch from \
17        an rdesktop 1.1 patchset which was not integrated into the latest \
18        version -- it will announce the client as Windows 2000 machine \
19        causing the Terminal Server to provide a license for free. \
20        Please argue over this with your own conscience.
21       
22platforms       darwin freebsd
23
24homepage        http://rdesktop.sourceforge.net/
25master_sites    sourceforge
26
27universal_variant no
28use_parallel_build yes
29
30depends_build   port:pkgconfig
31depends_lib     port:xorg-libX11 \
32                port:xorg-libXrandr \
33                port:openssl \
34                port:libiconv \
35                port:libao \
36                port:libsamplerate
37
38configure.args          --mandir=${prefix}/share/man \
39                        --with-sound=libao \
40                        --with-openssl=${prefix} \
41                        --with-libiconv-prefix=${prefix}
42
43build.target    rdesktop
44
45checksums       md5 c4b39115951c4a6d74f511c99b18fcf9 \
46                sha1 c718d0f49948a964c7ef8424b8ade73ecce3aba3   \
47                rmd160 d9f39cb75ab13d7be846f61ea40276cddcbcb550
48
49variant         w2k_license_hack description {will announce the client as Windows 2000 machine} {
50                        patchfiles patch-licence.c
51                }
52
53variant smartcard description {enables smartcard forwarding} {
54    configure.args-append --enable-smartcard
55}