1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/security/lasso/Makefile
Muhammad Moinur Rahman 8bb7615cb8
security/lasso: Fix build with new xmlsec1
The newest update to xmlsec1 broke this port as it used a deprecated
functin of xmlsec1.

PR:		277033
Reported by:	dweimer@dweimer.net
2024-02-13 23:16:53 +01:00

51 lines
1.3 KiB
Makefile

PORTNAME= lasso
PORTVERSION= 2.8.2
CATEGORIES= security
MASTER_SITES= https://dev.entrouvert.org/releases/lasso/
MAINTAINER= bofh@FreeBSD.org
COMMENT= Free Liberty Alliance Implementation
WWW= https://lasso.entrouvert.org/
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
LIB_DEPENDS= libltdl.so:devel/libltdl \
libxmlsec1-openssl.so:security/xmlsec1
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= cpe gmake gnome libtool pathfix pkgconfig python ssl
CPE_VENDOR= entrouvert
USE_GNOME= glib20 libxml2 libxslt
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-java \
--disable-php5 \
--with-zlib
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= DOCS PERL PYTHON
OPTIONS_SUB= yes
PERL_USES= perl5
PERL_CONFIGURE_ENABLE= perl
PYTHON_CONFIGURE_ENABLE= python
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=int-conversion
.endif
post-patch:
@${REINPLACE_CMD} -E 's,(xmlsec1-openssl >= 1\.2\.6) openssl,\1,' \
${CONFIGURE_WRKSRC}/configure
# Fix build with new xmlsec1 as this function was deprecated
@${REINPLACE_CMD} -e 's|BAD_CAST XMLSEC_CRYPTO|BAD_CAST xmlSecGetDefaultCrypto()|g' \
${WRKSRC}/lasso/lasso.c
.include <bsd.port.mk>