Date: Sun, 13 Jan 2019 14:19:24 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490137 - in head/audio/musicpd: . files Message-ID: <201901131419.x0DEJOR6013703@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: riggs Date: Sun Jan 13 14:19:24 2019 New Revision: 490137 URL: https://svnweb.freebsd.org/changeset/ports/490137 Log: Update to upstream version 0.21.4 Details: - Bugfix release, see upstream changelog: https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.21.4/NEWS - Fix build with openal and lld MFH: 2019Q1 Added: head/audio/musicpd/files/patch-src_zeroconf_meson.build (contents, props changed) Modified: head/audio/musicpd/Makefile head/audio/musicpd/distinfo Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Sun Jan 13 14:04:15 2019 (r490136) +++ head/audio/musicpd/Makefile Sun Jan 13 14:19:24 2019 (r490137) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= musicpd -PORTVERSION= 0.21.3 -PORTREVISION= 3 +PORTVERSION= 0.21.4 CATEGORIES= audio ipv6 MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} @@ -141,7 +140,6 @@ JACK_MESON_ON= -Djack=enabled JACK_LIB_DEPENDS= libjack.so:audio/jack OPENAL_MESON_ON= -Dopenal=enabled OPENAL_USES= openal -OPENAL_VARS= LLD_UNSAFE=yes # cf. PR 226980 PULSEAUDIO_MESON_ON= -Dpulse=enabled PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio SHOUTCAST_MESON_ON= -Dshout=enabled Modified: head/audio/musicpd/distinfo ============================================================================== --- head/audio/musicpd/distinfo Sun Jan 13 14:04:15 2019 (r490136) +++ head/audio/musicpd/distinfo Sun Jan 13 14:19:24 2019 (r490137) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542528753 -SHA256 (mpd-0.21.3.tar.xz) = 6cf60e644870c6063a008d833a6c876272b7679a400b83012ed209c15ce06e2a -SIZE (mpd-0.21.3.tar.xz) = 664992 +TIMESTAMP = 1547301787 +SHA256 (mpd-0.21.4.tar.xz) = 247112eabf1b818a4052db7f0f5917ab00831ebc60a1ec3bf1154da4dc16a5c7 +SIZE (mpd-0.21.4.tar.xz) = 663648 Added: head/audio/musicpd/files/patch-src_zeroconf_meson.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/musicpd/files/patch-src_zeroconf_meson.build Sun Jan 13 14:19:24 2019 (r490137) @@ -0,0 +1,20 @@ +--- src/zeroconf/meson.build.orig 2019-01-04 18:22:21 UTC ++++ src/zeroconf/meson.build +@@ -30,10 +30,14 @@ if zeroconf_option == 'bonjour' + if not compiler.has_header('dns_sd.h') + error('dns_sd.h not found') + endif +- +- bonjour_dep = declare_dependency(link_args: ['-framework', 'dnssd']) ++ ++ if is_darwin ++ bonjour_dep = declare_dependency(link_args: ['-framework', 'dnssd']) ++ else ++ bonjour_dep = declare_dependency(link_args: ['-ldns_sd']) ++ endif + conf.set('HAVE_BONJOUR', true) +- ++ + zeroconf = static_library( + 'zeroconf_bonjour', + 'ZeroconfGlue.cxx',
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901131419.x0DEJOR6013703>