c25a97a7ec
Changes since 1.10: o Fix bug FreeBSD/229654: properly generate man pages on FreeBSD. o Fix Issue #14: properly create iked.conf.5 o Support OpenSSL 1.1 and newer. o Support for OpenSSL 1.0 has been retained with compatibility defines. PR: 229654 Reviewed by: mat@ Differential Revision: https://reviews.freebsd.org/D18907
33 lines
640 B
Makefile
33 lines
640 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= openiked
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= security net ipv6
|
|
|
|
MAINTAINER= marcel@FreeBSD.org
|
|
COMMENT= IKEv2 daemon
|
|
|
|
LICENSE= ISCL
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent
|
|
|
|
USES= autoreconf libtool ssl
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= xcllnt
|
|
|
|
USE_RC_SUBR= iked
|
|
USERS= _iked
|
|
GROUPS= _iked
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
CONFIGURE_ARGS= --with-libevent-dir=${PREFIX} --with-mantype=man
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/ikeca.cnf \
|
|
${STAGEDIR}${PREFIX}/etc/ikeca.cnf.sample
|
|
${MV} ${STAGEDIR}${PREFIX}/etc/iked.conf \
|
|
${STAGEDIR}${PREFIX}/etc/iked.conf.sample
|
|
|
|
.include <bsd.port.mk>
|