aboutsummaryrefslogtreecommitdiffstats
path: root/security/openconnect/Makefile
blob: 85f1832e35e125713678b53692f01b264f6fc0e7 (plain) (blame)
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
# New ports collection makefile for:    openconnect
# Date created:             03 June 2009
# Whom:                 Damian Gerow
#
# $FreeBSD$
#

PORTNAME=   openconnect
PORTVERSION=    2.00
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

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_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(WITHOUT_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.post.mk>