1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup qmake5 1.0 |
---|
5 | PortGroup openssl 1.0 |
---|
6 | |
---|
7 | name x2goclient |
---|
8 | version 4.1.2.3 |
---|
9 | revision 0 |
---|
10 | |
---|
11 | checksums sha256 ab8bb3c78d31625c749e42f15f810fe3d242927a15298308c13dea3b915aca3c \ |
---|
12 | rmd160 65a8505d43101c9683a0699039a510b5e117e11f \ |
---|
13 | size 2582072 |
---|
14 | |
---|
15 | categories aqua net |
---|
16 | platforms macosx |
---|
17 | license {GPL-2+ OpenSSLException} |
---|
18 | |
---|
19 | maintainers {ionic @Ionic} openmaintainer |
---|
20 | |
---|
21 | description vnc-like remote desktop software |
---|
22 | long_description X2Go is based on the (now closed source) NX libraries which provide \ |
---|
23 | terminal server services. \ |
---|
24 | This is a client application to access the remote side. |
---|
25 | |
---|
26 | homepage https://www.x2go.org/ |
---|
27 | master_sites https://code.x2go.org/releases/source/${name}/ |
---|
28 | |
---|
29 | installs_libs no |
---|
30 | |
---|
31 | depends_lib-append port:libssh \ |
---|
32 | port:xorg-libX11 |
---|
33 | |
---|
34 | depends_run-append port:pulseaudio \ |
---|
35 | port:nxproxy \ |
---|
36 | port:xmodmap \ |
---|
37 | port:xauth |
---|
38 | |
---|
39 | pre-build { |
---|
40 | move ${worksrcpath}/VERSION ${worksrcpath}/VERSION.txt |
---|
41 | } |
---|
42 | |
---|
43 | configure.args-append x2goclient.pro |
---|
44 | |
---|
45 | destroot { |
---|
46 | copy ${worksrcpath}/client_build/${name}.app ${destroot}${applications_dir} |
---|
47 | xinstall -d -m 755 ${destroot}${applications_dir}/${name}.app/Contents/exe |
---|
48 | ln -s ${prefix}/bin/nxproxy ${destroot}${applications_dir}/${name}.app/Contents/exe/nxproxy |
---|
49 | ln -s ${prefix}/bin/xauth ${destroot}${applications_dir}/${name}.app/Contents/exe/nxauth |
---|
50 | ln -s ${applications_dir}/${name}.app/Contents/MacOS/${name} ${destroot}${prefix}/bin/${name} |
---|
51 | |
---|
52 | copy ${worksrcpath}/res/audio/startup.wav ${destroot}${applications_dir}/${name}.app/Contents/Resources/ |
---|
53 | } |
---|
54 | |
---|
55 | variant debug description {Builds a debug version. Only really useful with a debugging-enabled version of Qt.} { |
---|
56 | configure.args-replace CONFIG+=\"release\" \ |
---|
57 | CONFIG+=\"debug\" |
---|
58 | } |
---|
59 | |
---|
60 | livecheck.url https://code.x2go.org/releases/source/x2goclient/ |
---|
61 | livecheck.regex ${name}-(\\d+(?:\\.\\d+)*)\\.tar.gz |
---|