4fb1cfb1cd
- svn move Templates/Licenses/AL2 Templates/Licenses/APACHE20 - add APACHE10 and APACHE11 to Mk/bsd.licenses.db.mk - add entry in UPDATING - bulk change all ports AL2 => APACHE20 - math/openfst/pkg-plist: remove share/licenses/openfst-1.3.4 PR: ports/184785 Submitted by: ohauer Reviewed by: tabthorpe Approved by: portmgr (tabthorpe@)
39 lines
831 B
Makefile
39 lines
831 B
Makefile
# Created by: Tony Maher
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xml-security-c
|
|
PORTVERSION= 1.7.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_APACHE}
|
|
MASTER_SITE_SUBDIR=santuario/c-library
|
|
PKGNAMEPREFIX= apache-
|
|
|
|
MAINTAINER= girgen@FreeBSD.org
|
|
COMMENT= Apache XML security libraries - C++ version
|
|
|
|
LICENSE= APACHE20
|
|
|
|
OPTIONS_DEFINE= XERCES_3
|
|
OPTIONS_DEFAULT= XERCES_3
|
|
|
|
XERCES_3_DESC= With Xerces vesion 3.x (shibboleth2 requires)
|
|
|
|
USE_OPENSSL= yes
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MXERCES_3}
|
|
LIB_DEPENDS+= xerces-c.3:${PORTSDIR}/textproc/xerces-c3
|
|
.else
|
|
LIB_DEPENDS+= xerces-c.27:${PORTSDIR}/textproc/xerces-c2
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-xerces=${LOCALBASE}
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE}
|
|
|
|
.include <bsd.port.mk>
|