29 lines
794 B
Makefile
29 lines
794 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vpnc-scripts
|
|
PORTVERSION= 20161215
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.infradead.org/pub/${PORTNAME}/ \
|
|
http://mirrors.rit.edu/zi/
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Collection of scripts to setup routes and other changes for a VPN
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/vpnc-script sbin/vpnc-script-sshd sbin/vpnc-script-ptrtd
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|\(/etc/vpnc\)|${PREFIX}\1|' \
|
|
${WRKSRC}/vpnc-script
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/vpnc-script ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/vpnc-script-sshd ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/vpnc-script-ptrtd ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|