mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
98eb11b2f0
Changes: http://www.boost.org/users/history/version_1_65_1.html PR: 218835 Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month) Tested by: jhibbits (on powerpc64, earlier version) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582
38 lines
1003 B
Makefile
38 lines
1003 B
Makefile
# Created by: Janos Mohacsi
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opensaml2
|
|
PORTVERSION= 2.6.0
|
|
PORTREVISION= 5
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://shibboleth.net/downloads/c++-opensaml/${PORTVERSION}/
|
|
DISTNAME= opensaml-${PORTVERSION}
|
|
|
|
MAINTAINER= girgen@FreeBSD.org
|
|
COMMENT= Open source implementation of SAML2
|
|
|
|
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
|
|
|
|
BUILD_DEPENDS= boost-libs>=0:devel/boost-libs
|
|
|
|
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>
|