diff options
author | jhale <jhale@FreeBSD.org> | 2015-06-15 01:55:49 +0800 |
---|---|---|
committer | jhale <jhale@FreeBSD.org> | 2015-06-15 01:55:49 +0800 |
commit | b6dc0a9f4e3fe57d44a13c002ffafc047080016d (patch) | |
tree | 8d4e96be04abf3742154982610e7a5447b4e2f3d /audio/libmusicbrainz5/Makefile | |
parent | 14f3683ed7197c093765a29ac529daa9ea2b6a77 (diff) | |
download | freebsd-ports-gnome-b6dc0a9f4e3fe57d44a13c002ffafc047080016d.tar.gz freebsd-ports-gnome-b6dc0a9f4e3fe57d44a13c002ffafc047080016d.tar.zst freebsd-ports-gnome-b6dc0a9f4e3fe57d44a13c002ffafc047080016d.zip |
- Update audio/libmusicbrainz5 to 5.1.0
- Fix a crash in audio/sound-juicer caused by libmusicbrainz5 (fix added
upstream, but not in this release) [1]
- Bump PORTREVISION on dependent ports
PR: 196959 [1]
Submitted by: Pete Johanson <peter@peterjohanson.com> [1]
Diffstat (limited to 'audio/libmusicbrainz5/Makefile')
-rw-r--r-- | audio/libmusicbrainz5/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/audio/libmusicbrainz5/Makefile b/audio/libmusicbrainz5/Makefile index 0b86fd185351..69f7d86fe445 100644 --- a/audio/libmusicbrainz5/Makefile +++ b/audio/libmusicbrainz5/Makefile @@ -1,10 +1,8 @@ # $FreeBSD$ PORTNAME= libmusicbrainz -PORTVERSION= 5.0.1 -PORTREVISION= 1 +PORTVERSION= 5.1.0 CATEGORIES= audio -MASTER_SITES= https://cloud.github.com/downloads/metabrainz/${PORTNAME}/ PKGNAMESUFFIX= 5 MAINTAINER= jhale@FreeBSD.org @@ -15,12 +13,18 @@ LICENSE= LGPL21 LIB_DEPENDS= libneon.so:${PORTSDIR}/www/neon USES= cmake +USE_GNOME= libxml2 USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= metabrainz +GH_TAGNAME= release-${PORTVERSION} + post-patch: ${REINPLACE_CMD} -e '/pkgconfig/s|$${LIB_INSTALL_DIR}|libdata|' \ ${WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/cmake/modules/*.cmake + ${RM} -f ${WRKSRC}/cmake/modules/FindLibXml2.cmake .include <bsd.port.mk> |