mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
ff60ec0369
PR: 224282 Submitted by: Greg V <greg@unrelenting.technology> Approved by: maintainer timeout
74 lines
2.2 KiB
Makefile
74 lines
2.2 KiB
Makefile
# Created by: Jim Geovedi <jim@corebsd.or.id>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xmlsec1
|
|
PORTVERSION= 1.2.25
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.aleksey.com/xmlsec/download/ \
|
|
ftp://ftp.aleksey.com/pub/xmlsec/releases/ \
|
|
ftp://ftp.xmlsoft.org/xmlsec/releases/ \
|
|
ftp://ftp.rpmfind.net/pub/XML/xmlsec/releases/
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= XML Security Library
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/Copyright
|
|
|
|
LIB_DEPENDS= libgcrypt.so:security/libgcrypt \
|
|
libgpg-error.so:security/libgpg-error \
|
|
libltdl.so:devel/libltdl
|
|
|
|
USES= libtool localbase pathfix pkgconfig ssl gmake
|
|
USE_GNOME= libxml2 libxslt
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-openssl="${OPENSSLBASE}" \
|
|
--with-gcrypt="${LOCALBASE}" \
|
|
--enable-soap \
|
|
--disable-docs-build
|
|
MAKE_ENV= ABS_BUILDDIR=${WRKSRC} TMPFOLDER=${WRKSRC}
|
|
INSTALL_TARGET= install-strip
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= GNUTLS NSS
|
|
OPTIONS_DEFAULT= NSS
|
|
OPTIONS_SUB= yes
|
|
|
|
GNUTLS_DESC= Enable GNUTLS support
|
|
GNUTLS_CONFIGURE_ON= --with-gnutls="${LOCALBASE}"
|
|
GNUTLS_CONFIGURE_OFF= --without-gnutls
|
|
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
|
|
NSS_DESC= Enable Mozilla's NSS support
|
|
NSS_CONFIGURE_ON= --with-nss="${LOCALBASE}" \
|
|
--with-nspr="${LOCALBASE}"
|
|
NSS_CONFIGURE_OFF= --without-nss \
|
|
--without-nspr
|
|
NSS_LIB_DEPENDS= libnss3.so:security/nss \
|
|
libnspr4.so:devel/nspr \
|
|
libplds4.so:devel/nspr \
|
|
libplc4.so:devel/nspr
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/mozilla-nss/nss/' \
|
|
-e 's/mozilla-nspr/nspr/' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's/(CP) -ru/(CP) -r/' \
|
|
-e 's/(CP) -u/(CP)/' \
|
|
${WRKSRC}/docs/Makefile.am ${WRKSRC}/docs/Makefile.in \
|
|
${WRKSRC}/docs/api/Makefile.am ${WRKSRC}/docs/api/Makefile.in \
|
|
${WRKSRC}/man/Makefile.am ${WRKSRC}/man/Makefile.in
|
|
|
|
post-patch-GNUTLS-on:
|
|
# Don't rely on broken autodetection
|
|
@${REINPLACE_CMD} -e '/^GNUTLS_FOUND/s/no/yes/' \
|
|
-e '/^GNUTLS_LIBS=/s,"","-L${LOCALBASE}/lib -lgnutls",' \
|
|
${WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
post-patch-NSS-on:
|
|
# Makeing the xmlsec1 executable multi-threaded to let load -lnss,
|
|
# when needed.
|
|
@${REINPLACE_CMD} -e 's,^\(xmlsec1_LDADD = \)\\$$,\1 -L${LOCALBASE}/lib -lpthread\\,' \
|
|
${WRKSRC}/apps/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|