311e3b182f
- adjust ports depending on neon, bump PORTREVISION Changelog: Fix memory leak with GnuTLS (Werner Baumann, Patrick Ohly). Fix possible crash after DNS lookup errors on Windows (Olivier Goffart). Don't fail if the SSL cert changes between connections with OpenSSL, behaviour now matches that with GnuTLS. Fix PKCS#11 support under OpenSSL with TLS 1.2. Fix static linking with pkg-config file (Alan H) PR: 195786 Differential Revision: https://reviews.freebsd.org/D1319 Submitted by: ohauer Reviewed by: portmgr (bapt, mat) Approved by: portmgr, lev (implicit)
28 lines
676 B
Makefile
28 lines
676 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libmusicbrainz
|
|
PORTVERSION= 3.0.3
|
|
PORTREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/ \
|
|
http://ftp.osuosl.org/pub/musicbrainz/
|
|
PKGNAMESUFFIX= 3
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= MusicBrainz client library for audio metadata lookup
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= libdiscid.so:${PORTSDIR}/audio/libdiscid \
|
|
libneon.so:${PORTSDIR}/www/neon
|
|
|
|
USES= cmake
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/pkgconfig/s|$${LIB_INSTALL_DIR}|libdata|' \
|
|
-e '/CppUnit/d' ${WRKSRC}/CMakeLists.txt
|
|
${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/cmake/modules/*.cmake
|
|
|
|
.include <bsd.port.mk>
|