- When installing from port, do not tamper with permissions of other files

in ${PREFIX}/sbin and ${PREFIX}/lib. [1]

- Do not install plugin .la/.so files with the executable bit set, they
  are not executable.

PR:		ports/175434 [1]
Submitted by:	Benjamin Lorenz [1]
This commit is contained in:
Matthias Andree 2013-01-20 02:55:48 +00:00
parent 891d15444b
commit 053c78f1e9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=310670

View File

@ -3,7 +3,7 @@
PORTNAME= openvpn
DISTVERSION= 2.3.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= security net
MASTER_SITES= http://swupdate.openvpn.net/community/releases/ \
http://build.openvpn.net/downloads/releases/
@ -91,10 +91,10 @@ post-build:
.endif
post-install:
${MKDIR} ${PREFIX}/lib ${PREFIX}/sbin ${PREFIX}/include ${PREFIX}/man
.for i in lib sbin
(cd ${_stagedir}${PREFIX}/${i} && ${COPYTREE_BIN} \* ${PREFIX}/${i}/)
.endfor
${MKDIR} ${PREFIX}/lib/openvpn/plugins/ ${PREFIX}/sbin \
${PREFIX}/include ${PREFIX}/man
${INSTALL_PROGRAM} ${_stagedir}${PREFIX}/sbin/openvpn ${PREFIX}/sbin
${INSTALL_DATA} ${_stagedir}${PREFIX}/lib/openvpn/plugins/* ${PREFIX}/lib/openvpn/plugins/
${INSTALL_DATA} ${_stagedir}${PREFIX}/include/* ${PREFIX}/include/
${INSTALL_MAN} ${_stagedir}${PREFIX}/man/man8/* ${MAN8PREFIX}/man/man8/
.if ${PORT_OPTIONS:MDOCS}