1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
freebsd-ports/security/openvpn-auth-ldap/Makefile
Matthias Andree ebdadb5af7 Mark the critical warning as an error, and bump PORTREVISION,
so that everyone is aware of the run-time issues.
2014-08-06 06:39:53 +00:00

60 lines
1.7 KiB
Makefile

# Created by: Nick Barkas <snb@threerings.net>
# $FreeBSD$
PORTNAME= openvpn-auth-ldap
PORTVERSION= 2.0.3
PORTREVISION= 9
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
DISTNAME= auth-ldap-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= LDAP authentication plugin for OpenVPN
# Older GCC used to provide +alloc and other methods on the Object
# class, newer GCC/libobjc version no longer to that. The software
# needs to learn to use the new Objective C world order:
BROKEN= Needs to be ported to a new Object base-class with +alloc.
USES= objc
BUILD_DEPENDS= re2c:${PORTSDIR}/devel/re2c \
${NONEXISTENT}:${PORTSDIR}/security/openvpn:extract
GNU_CONFIGURE= yes
USE_OPENLDAP= yes
OPENVPN_WRKSRC= `cd ${PORTSDIR}/security/openvpn; make -V WRKSRC`
CONFIGURE_ARGS+= --with-openldap=${LOCALBASE} \
--with-openvpn=${OPENVPN_WRKSRC}/include \
--with-objc-runtime=GNU
# this issue would cause run-time trouble, so turn it into an error:
OBJCFLAGS+= -Werror=objc-method-access
PORTDOCS= README
PORTEXAMPLES= auth-ldap.conf
PLIST_FILES= lib/openvpn-auth-ldap.so
OBJCFLAGS+= -L/usr/local/lib
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.options.mk>
CONFIGURE_ENV+= OBJC="${CC}"
post-patch:
${REINPLACE_CMD} 's|-export-dynamic|-Wl,-export-dynamic|' ${WRKSRC}/configure
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/openvpn-auth-ldap.so
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/auth-ldap.conf ${STAGEDIR}${EXAMPLESDIR}
.endif
.include <bsd.port.pre.mk>
CC+= ${DEBUG_FLAGS}
.include <bsd.port.post.mk>