openbsd-ports/net/openvpn/Makefile
sturm 9e8e9e2e26 s,/bin/bash,/bin/sh, in example scripts
from Han Boetes <han at mijncomputer dot nl>
2003-12-30 21:29:53 +00:00

47 lines
1.4 KiB
Makefile

# $OpenBSD: Makefile,v 1.2 2003/12/30 21:29:53 sturm Exp $
COMMENT= "easy-to-use, robust, and highly configurable VPN"
VERSION= 1.5.0
DISTNAME= openvpn-${VERSION}
CATEGORIES= net security
HOMEPAGE= http://openvpn.sourceforge.net/
MAINTAINER= Jorge A. Cortes Montiel <jcortes@bsdcoders.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openvpn/}
LIB_DEPENDS= lzo::archivers/lzo
SEPARATE_BUILD= concurrent
USE_GMAKE= Yes
CONFIGURE_STYLE=gnu
# pthread support is supposed to be unstable on OpenBSD
CONFIGURE_ARGS+=--disable-pthread \
--with-lzo-headers=${LOCALBASE}/include \
--with-lzo-lib=${LOCALBASE}/lib
SAMPLES_DIR= ${PREFIX}/share/examples/openvpn
post-install:
${INSTALL_DATA_DIR} ${SAMPLES_DIR}
${INSTALL_DATA_DIR} ${SAMPLES_DIR}/sample-config-files
${INSTALL_DATA_DIR} ${SAMPLES_DIR}/sample-keys
${INSTALL_DATA_DIR} ${SAMPLES_DIR}/sample-scripts
@perl -pi -e 's,#!/bin/bash,#!/bin/sh,g' ${WRKSRC}/easy-rsa/*
${INSTALL_DATA_DIR} ${SAMPLES_DIR}/easy-rsa
${INSTALL_DATA} ${WRKSRC}/sample-config-files/* ${SAMPLES_DIR}/sample-config-files/
${INSTALL_DATA} ${WRKSRC}/sample-keys/* ${SAMPLES_DIR}/sample-keys/
${INSTALL_DATA} ${WRKSRC}/sample-scripts/* ${SAMPLES_DIR}/sample-scripts/
${INSTALL_DATA} ${WRKSRC}/easy-rsa/* ${SAMPLES_DIR}/easy-rsa/
.include <bsd.port.mk>