View | Details | Raw Unified | Return to bug 44436
Collapse All | Expand All

(-)openvpn/Makefile (-1 / +3 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	openvpn
8
PORTNAME=	openvpn
9
PORTVERSION=	1.3.0
9
PORTVERSION=	1.3.2
10
CATEGORIES=	security
10
CATEGORIES=	security
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 24-29 Link Here
24
MAN8=		openvpn.8
24
MAN8=		openvpn.8
25
25
26
post-install:
26
post-install:
27
	${INSTALL_SCRIPT} ${FILESDIR}/openvpn.sh.sample \
28
		${PREFIX}/etc/rc.d/openvpn.sh.sample
27
.if !defined(NOPORTDOCS)
29
.if !defined(NOPORTDOCS)
28
	@${MKDIR} ${DOCSDIR}
30
	@${MKDIR} ${DOCSDIR}
29
.for docs in AUTHORS COPYING COPYRIGHT.GPL ChangeLog INSTALL NEWS \
31
.for docs in AUTHORS COPYING COPYRIGHT.GPL ChangeLog INSTALL NEWS \
(-)openvpn/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (openvpn-1.3.0.tar.gz) = f82482f0ec8d9091876bd86133a8ff2f
1
MD5 (openvpn-1.3.2.tar.gz) = 57f5f92730566401797943561f7cae6e
(-)openvpn/files/openvpn.sh.sample (+19 lines)
Line 0 Link Here
1
#! /bin/sh
2
# (C) 2002 by Matthias Andree
3
4
# This file may be redistributed according to the terms of the GNU General
5
# Public License, version 2 (two).
6
7
# To use this script, rename it to openvpn.sh and make sure it is
8
# executable for the owner.
9
10
# This file rouses a security warning at port install time. However, this
11
# file itself does not start network services, but it loads a kernel driver.
12
# The security of this file therefore depends on the security of kldload and
13
# the if_tap driver.
14
15
case x$1 in
16
  xstart) echo -n ' if_tap' ; exec kldload if_tap ;;
17
  xstop)  echo -n ' if_tap' ; exec kldunload if_tap ;;
18
  *)      echo >&2 "Usage: $0 {start|stop}"
19
esac
(-)openvpn/pkg-message (+4 lines)
Lines 1-4 Link Here
1
### ---------------------------------------------------------------------- ###
1
### ---------------------------------------------------------------------- ###
2
###  To use the tap driver, you may need to do: kldload if_tap             ###
3
###  See ${PREFIX}/etc/rc.d/openvpn.sh.sample for how to do this  	   ###
4
###  automatically at system boot-up time.                                 ###
5
### ---------------------------------------------------------------------- ###
2
###  To retain backwards compatibility of OpenVPN 1.3.0 with OpenVPN peers ###
6
###  To retain backwards compatibility of OpenVPN 1.3.0 with OpenVPN peers ###
3
###  that run older versions (back to 1.1.0), you will have to set the MTU ###
7
###  that run older versions (back to 1.1.0), you will have to set the MTU ###
4
###  explicitly by command line options since OpenVPN 1.3.0.               ###
8
###  explicitly by command line options since OpenVPN 1.3.0.               ###
(-)openvpn/pkg-plist (+4 lines)
Lines 1-4 Link Here
1
sbin/openvpn
1
sbin/openvpn
2
etc/rc.d/openvpn.sh.sample
2
%%PORTDOCS%%share/doc/openvpn/AUTHORS
3
%%PORTDOCS%%share/doc/openvpn/AUTHORS
3
%%PORTDOCS%%share/doc/openvpn/COPYING
4
%%PORTDOCS%%share/doc/openvpn/COPYING
4
%%PORTDOCS%%share/doc/openvpn/COPYRIGHT.GPL
5
%%PORTDOCS%%share/doc/openvpn/COPYRIGHT.GPL
Lines 10-15 Link Here
10
%%PORTDOCS%%share/doc/openvpn/easy-rsa/README
11
%%PORTDOCS%%share/doc/openvpn/easy-rsa/README
11
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-ca
12
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-ca
12
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-dh
13
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-dh
14
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-inter
13
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-key
15
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-key
14
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-key-pass
16
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-key-pass
15
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-req
17
%%PORTDOCS%%share/doc/openvpn/easy-rsa/build-req
Lines 28-33 Link Here
28
%%PORTDOCS%%share/doc/openvpn/sample-config-files/static-office.conf
30
%%PORTDOCS%%share/doc/openvpn/sample-config-files/static-office.conf
29
%%PORTDOCS%%share/doc/openvpn/sample-config-files/tls-home.conf
31
%%PORTDOCS%%share/doc/openvpn/sample-config-files/tls-home.conf
30
%%PORTDOCS%%share/doc/openvpn/sample-config-files/tls-office.conf
32
%%PORTDOCS%%share/doc/openvpn/sample-config-files/tls-office.conf
33
%%PORTDOCS%%share/doc/openvpn/sample-config-files/xinetd-client-config
34
%%PORTDOCS%%share/doc/openvpn/sample-config-files/xinetd-server-config
31
%%PORTDOCS%%share/doc/openvpn/sample-scripts/openvpn.init
35
%%PORTDOCS%%share/doc/openvpn/sample-scripts/openvpn.init
32
%%PORTDOCS%%share/doc/openvpn/sample-scripts/verify-cn
36
%%PORTDOCS%%share/doc/openvpn/sample-scripts/verify-cn
33
%%PORTDOCS%%@dirrm share/doc/openvpn/sample-scripts
37
%%PORTDOCS%%@dirrm share/doc/openvpn/sample-scripts

Return to bug 44436