summaryrefslogtreecommitdiff
path: root/net/openvpn/Makefile
blob: b7528de2c0dadfd40c0f002f2483510c84cd86c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# $NetBSD: Makefile,v 1.23 2008/01/18 05:08:48 tnn Exp $
#

DISTNAME=	openvpn-2.1_rc4
PKGNAME=	openvpn-2.1rc4

PKGREVISION=	1
CATEGORIES=	net
MASTER_SITES=	http://openvpn.net/release/ \
		http://openvpn.net/release/old/

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	http://openvpn.net/
COMMENT=	Easy-to-use SSL VPN daemon

GNU_CONFIGURE=		yes
USE_TOOLS+=		grep:run
USE_LIBTOOL=		yes
USE_OLD_DES_API=	yes
TEST_TARGET=		check

PKG_SYSCONFSUBDIR=	openvpn
DATADIR=		${PREFIX}/share/${PKGBASE}
DOCDIR=			${PREFIX}/share/doc/${PKGBASE}
EGDIR=			${PREFIX}/share/examples/${PKGBASE}
EASYRSADIR=		${DATADIR}/easy-rsa
RCD_SCRIPTS=		openvpn

CONFIGURE_ARGS+=	--sysconfdir=${PKG_SYSCONFDIR:Q}
CONFIGURE_ARGS+=	--enable-password-save
CONFIGURE_ARGS+=	--disable-dependency-tracking

# Pthread support is still considered very experimental, so don't enable
# it for the default (production) build.
#
#CONFIGURE_ARGS+=	--enable-pthread

INSTALLATION_DIRS=	${DATADIR}/easy-rsa	${EGDIR}/config		\
			${DOCDIR}		${EGDIR}/keys		\
						${EGDIR}/scripts

.include "../../mk/bsd.prefs.mk"

# OpenVPN 2.x has a shared module "plugin" architecture that allows
# inserting callbacks into the server for various tasks.
#
DL_AUTO_VARS=		yes
.include "../../mk/dlopen.buildlink3.mk"

.include "../../archivers/lzo/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.if ${OPSYS} == "SunOS"
.include "../../net/solaris-tap/buildlink3.mk"
.endif

SUBST_CLASSES+=		pkitool
SUBST_STAGE.pkitool=	post-build
SUBST_MESSAGE.pkitool=	Fixing up default paths to grep & openssl in pkitool.
SUBST_FILES.pkitool=	easy-rsa/2.0/pkitool
SUBST_SED.pkitool=	\
	-e "s|\\(GREP\\)=.*|\\1=\""${GREP:Q}"\"|"			\
	-e "s|\\(OPENSSL\\)=.*|\\1=\""${SSLBASE:Q}/bin/openssl"\"|"

post-install:
	cd ${WRKSRC:Q}/easy-rsa/2.0; for file in [a-zR]*; do		\
		case $$file in						\
		*.orig)	;;						\
		[A-Z]*|*.cnf|vars)					\
			${INSTALL_DATA} $$file ${EASYRSADIR:Q} ;;	\
		*)	${INSTALL_SCRIPT} $$file ${EASYRSADIR:Q} ;;	\
		esac;							\
	done
	${INSTALL_DATA} ${WRKSRC:Q}/management/management-notes.txt ${DOCDIR:Q}
	cd ${WRKSRC:Q}/sample-config-files; for file in *; do		\
		${INSTALL_DATA} $$file ${EGDIR:Q}/config;		\
	done
	cd ${WRKSRC:Q}/sample-scripts; for file in *; do		\
		${INSTALL_DATA} $$file ${EGDIR:Q}/scripts;		\
	done
	cd ${WRKSRC:Q}/sample-keys; for file in *; do			\
		${INSTALL_DATA} $$file ${EGDIR:Q}/keys;			\
	done

.include "../../mk/bsd.pkg.mk"