64192827b4
An updated version of the Shibboleth Service Provider software is available which corrects a critical security issue in the "Dynamic" metadata provider plugin. Deployers making use of the affected feature should apply the relevant update at the soonest possible moment. Security: b4b7ec7d-ca27-11e7-a12d-6cc21735f730
37 lines
1,005 B
Makefile
37 lines
1,005 B
Makefile
# Created by: Janos Mohacsi
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opensaml2
|
|
PORTVERSION= 2.6.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://shibboleth.net/downloads/c++-opensaml/${PORTVERSION}/
|
|
DISTNAME= opensaml-${PORTVERSION}
|
|
|
|
MAINTAINER= girgen@FreeBSD.org
|
|
COMMENT= Open source implementation of SAML2
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= boost-libs>=0:devel/boost-libs
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
liblog4shib.so:devel/log4shib \
|
|
libxml-security-c.so:security/apache-xml-security-c \
|
|
libxerces-c.so:textproc/xerces-c3 \
|
|
libxmltooling.so:devel/xmltooling
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} \
|
|
--with-xmltooling=${LOCALBASE} --disable-doxygen-doc
|
|
USES= gmake libtool pkgconfig tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,^pkgdocdir.*=.*,pkgdocdir = ${DOCSDIR},' \
|
|
${WRKSRC}/doc/Makefile.in
|
|
|
|
post-patch-DOCS-off:
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS/s,doc ,,' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|