freebsd-ports/security/openconnect/Makefile
Sunpoet Po-Chuan Hsieh ecb8350b91 - Fix OPTIONS processing in previous commit
- Bump PORTREVISION for package change

Noticed by:	stas
2011-04-12 15:15:35 +00:00

56 lines
1.2 KiB
Makefile

# New ports collection makefile for: openconnect
# Date created: 03 June 2009
# Whom: Damian Gerow
#
# $FreeBSD$
#
PORTNAME= openconnect
PORTVERSION= 2.26
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= ftp://ftp.infradead.org/pub/openconnect/ \
CRITICAL
MAINTAINER= dgerow@afflictions.org
COMMENT= A client for Cisco\'s AnyConnect SSL VPN
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2
USE_GMAKE= yes
MAKE_JOBS_SAFE= yes
USE_OPENSSL= yes
OPENSSL= ${OPENSSLBASE}
MAN8= openconnect.8
PORTDOCS= README.*
.include <bsd.port.options.mk>
OPTIONS= GUI "Enable the OpenConnect configuration GUI" off
.if defined(WITH_GUI)
LIB_DEPENDS+= gtk-x11-2.0.0:${PORTSDIR}/x11-toolkits/gtk20
LIB_DEPENDS+= gconf-2.4:${PORTSDIR}/devel/gconf2
PLIST_SUB+= WITH_GUI=""
.else
PLIST_SUB+= WITH_GUI="@comment "
.endif
do-install:
${INSTALL_PROGRAM} -m 751 ${WRKSRC}/openconnect \
${PREFIX}/bin/openconnect
.if defined(WITH_GUI)
${INSTALL_PROGRAM} ${WRKSRC}/nm-openconnect-auth-dialog \
${PREFIX}/libexec
.endif
${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MANPREFIX}/man/man8
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/README.DTLS ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/README.SecurID ${DOCSDIR}
.endif
.include <bsd.port.mk>