Ticket #32313: Portfile

File Portfile, 1.4 KB (added by rudloff@…, 12 years ago)
Line 
1# $Id: Portfile 78512 2011-05-10 12:57:07Z ryandesign@macports.org $
2
3PortSystem      1.0
4PortGroup       app 1.0
5
6app.create  no
7
8name            remmina
9version         0.9.3
10categories      net gtk
11maintainers     strasweb.fr:rudloff openmaintainer
12description     GTK+ Remote Desktop Client
13long_description        Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistant user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
14license         GPL
15homepage        http://remmina.sourceforge.net/
16master_sites    sourceforge
17checksums       sha256     ea10eba6f60676f7ebfebd285884e41fbb081f3809064588564f53624a3cee82
18platforms       darwin
19
20depends_lib     port:gtk2 \
21                        port:libssh01 \
22                        port:avahi \
23                        port:vte \
24                        port:libgcrypt \
25                        port:libunique
26                       
27
28variant quartz {
29    patchfiles patch-src-remmina.c.diff
30    app.create yes
31    app.icon    desktop/48x48/apps/remmina.png
32    app.executable ${filespath}/launch
33    post-destroot {
34        reinplace "s|@PREFIX@|${prefix}|g" ${destroot}${applications_dir}/${app.name}.app/Contents/MacOS/${app.name}
35}
36}