mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
cba03c03e1
Changes: - src/sexp.c (do_vsexp_sscan): Return error for invalid args. - cipher/md.c (_gcry_md_info): Fix a segv in case of calling with wrong parameters. - cipher/primegen.c (_gcry_generate_elg_prime): Change to return an error code, possible NULL deref in call to prime generator. - cipher/dsa.c (generate): Take care of new return code. - cipher/elgamal.c (generate): Change to return an error code. Take care of _gcry_generate_elg_prime return code. - ecc: Support the non-standard 0x40 compression flag for EdDSA. - mpi: Extend the internal mpi_get_buffer. - mpi: Fix regression for powerpc-apple-darwin detection. - Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in - Fix building for the x32 target without asm modules in mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI. - Fix ARM assembly when building __PIC__ - mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit. * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear allocated but not used bits before resizing. * tests/t-mpi-bits.c (set_bit_with_resize): New. - Use internal malloc function in fips.c. * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/. - pubkey: Re-map all deprecated RSA algo numbers. - cipher: Fix possible NULL dereference in cipher/md.c for being NULL. - Fix ARMv6 detection when CFLAGS modify target CPU architecture. PR: 193264 Approved by: cpm@fbsd.es (maintainer)
78 lines
2.4 KiB
Makefile
78 lines
2.4 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/trunk/devel/libsoup/Makefile 20035 2014-11-03 08:16:10Z kwm $
|
|
|
|
PORTNAME= libsoup
|
|
PORTVERSION= 2.48.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= SOAP (Simple Object Access Protocol) implementation in C
|
|
|
|
BUILD_DEPENDS= glib-networking>=2.29.18:${PORTSDIR}/net/glib-networking
|
|
LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt
|
|
RUN_DEPENDS= glib-networking>=2.29.18:${PORTSDIR}/net/glib-networking
|
|
|
|
USES= tar:xz
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
USES+= gettext gmake libtool pathfix pkgconfig \
|
|
python:3:build tar:xz
|
|
USE_GNOME= glib20 intltool introspection:build \
|
|
libxml2 referencehack
|
|
USE_SQLITE= 3
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-more-warnings
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
LIBVERSION= 1.7.0
|
|
PLIST_SUB= VERSION="2.4" LIBVERSION=${LIBVERSION}
|
|
|
|
.if defined(SOUP_SLAVE)
|
|
USE_SQLITE= yes
|
|
LIB_DEPENDS+= libsoup-2.4.so:${PORTSDIR}/devel/libsoup \
|
|
libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring
|
|
CONFIGURE_ARGS+=--with-gnome
|
|
.else
|
|
CONFIGURE_ARGS+=--without-gnome
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|env python|env ${PYTHON_VERSION}|g' \
|
|
${WRKSRC}/libsoup/tld-parser.py
|
|
|
|
.if defined(SOUP_SLAVE)
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/gir-1.0/
|
|
${INSTALL_DATA} ${WRKSRC}/libsoup/SoupGNOME-2.4.gir ${STAGEDIR}${PREFIX}/share/gir-1.0/
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/girepository-1.0/
|
|
${INSTALL_DATA} ${WRKSRC}/libsoup/SoupGNOME-2.4.typelib ${STAGEDIR}${PREFIX}/lib/girepository-1.0/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/libsoup/.libs/libsoup-gnome-2.4.so ${STAGEDIR}${PREFIX}/lib/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/libsoup/.libs/libsoup-gnome-2.4.so.1 ${STAGEDIR}${PREFIX}/lib/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/libsoup/.libs/libsoup-gnome-2.4.so.${LIBVERSION} ${STAGEDIR}${PREFIX}/lib/
|
|
cd ${WRKSRC}/libsoup && DESTDIR=${STAGEDIR} ${GMAKE} install-libsoupgnomeincludeHEADERS
|
|
.endif
|
|
|
|
post-install:
|
|
.if defined(SOUP_SLAVE)
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig
|
|
${INSTALL_DATA} ${WRKSRC}/libsoup-gnome-2.4.pc \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig/
|
|
.else
|
|
${INSTALL_DATA} ${WRKSRC}/libsoup/soup-connection.h \
|
|
${STAGEDIR}${PREFIX}/include/libsoup-2.4/libsoup/soup-connection.h
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.endif
|