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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name vpnc-scripts |
---|
7 | version 20150314 |
---|
8 | categories net |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | license GPL-2 |
---|
12 | |
---|
13 | description connect scripts for use with vpnc and openconnect |
---|
14 | |
---|
15 | long_description This package contains scripts used by vpnc and OpenConnect \ |
---|
16 | (and possibly other programs) to provide an OS-independent \ |
---|
17 | interface for various operations associated with configuring \ |
---|
18 | VPNs over tun devices. |
---|
19 | |
---|
20 | homepage http://www.infradead.org/openconnect/vpnc-script.html |
---|
21 | |
---|
22 | fetch.type git |
---|
23 | git.url git://git.infradead.org/users/dwmw2/vpnc-scripts.git |
---|
24 | git.branch e8b30a2be93bf2e9930cc5a2a000d5fb4cb2312c |
---|
25 | |
---|
26 | use_configure no |
---|
27 | |
---|
28 | build {} |
---|
29 | |
---|
30 | destroot { |
---|
31 | xinstall -d -m 0755 ${destroot}${prefix}/etc/${name} |
---|
32 | foreach script { vpnc-script vpnc-script-ptrtd vpnc-script-sshd } { |
---|
33 | xinstall -m 0755 ${worksrcpath}/${script} ${destroot}${prefix}/etc/${name} |
---|
34 | } |
---|
35 | } |
---|