0b055d47f2
- Switch to C++14 for libboost_system to support C++14 consumers Changes: http://www.boost.org/users/history/version_1_68_0.html PR: 229569 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D16165
36 lines
926 B
Makefile
36 lines
926 B
Makefile
# Created by: Janos Mohacsi
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opensaml
|
|
PORTVERSION= 3.0.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://shibboleth.net/downloads/c++-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+=--disable-doxygen-doc --disable-dependency-tracking
|
|
USES= gmake libtool pkgconfig tar:bzip2 ssl
|
|
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>
|