blob: 4028c7e2ceeca61ea8a4e70ee0182a461d81f47a (
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
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: openconnect
# Date created: 03 June 2009
# Whom: Damian Gerow
#
# $FreeBSD$
#
PORTNAME= openconnect
PORTVERSION= 3.16
CATEGORIES= security
MASTER_SITES= ftp://ftp.infradead.org/pub/openconnect/ \
http://mirrors.rit.edu/zi/
MAINTAINER= zi@FreeBSD.org
COMMENT= A client for Cisco's AnyConnect SSL VPN
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/COPYING.LGPL
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-nls --with-openssl=/usr
MAKE_ENV+= OPENSSL_CFLAGS=-I/usr/include
USE_AUTOTOOLS= aclocal autoconf libtool
USE_GNOME= gnomehack pkgconfig
USE_GMAKE= yes
MAKE_JOBS_SAFE= yes
ACLOCAL_ARGS= -I .
USE_OPENSSL= yes
USE_LDCONFIG= yes
PORTDOCS= *
MAN8= openconnect.8
OPTIONS= PROXY "Enable automatic proxy configuratio via libproxy" off \
OPENSSLPORT "Use OpenSSL from ports" off
.include <bsd.port.options.mk>
.if defined(WITH_OPENSSLPORT)
WITH_OPENSSL_PORT= yes
.else
WITH_OPENSSL_BASE= yes
.endif
.include <bsd.port.pre.mk>
.if defined(WITH_PROXY)
LIB_DEPENDS+= proxy.1:${PORTSDIR}/net/libproxy
.endif
post-patch:
@${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|' \
${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.am
@${REINPLACE_CMD} -e '/SUBDIRS += www/d' ${WRKSRC}/Makefile.am
@${REINPLACE_CMD} -e 's|.{with_openssl}/libssl.a .{with_openssl}/libcrypto.a -ldl|-lssl -lcrypto|g' \
${WRKSRC}/configure.ac
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/openconnect.html ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/TODO ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|