Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Jan 2019 14:41:59 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r490139 - in branches/2019Q1/audio/musicpd: . files
Message-ID:  <201901131441.x0DEfxg8028163@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Sun Jan 13 14:41:59 2019
New Revision: 490139
URL: https://svnweb.freebsd.org/changeset/ports/490139

Log:
  MFH: r490137
  
  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
  
  Approved by:	ports-secteam (riggs)

Added:
  branches/2019Q1/audio/musicpd/files/patch-src_zeroconf_meson.build
     - copied unchanged from r490137, head/audio/musicpd/files/patch-src_zeroconf_meson.build
Modified:
  branches/2019Q1/audio/musicpd/Makefile
  branches/2019Q1/audio/musicpd/distinfo
Directory Properties:
  branches/2019Q1/   (props changed)

Modified: branches/2019Q1/audio/musicpd/Makefile
==============================================================================
--- branches/2019Q1/audio/musicpd/Makefile	Sun Jan 13 14:41:13 2019	(r490138)
+++ branches/2019Q1/audio/musicpd/Makefile	Sun Jan 13 14:41:59 2019	(r490139)
@@ -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: branches/2019Q1/audio/musicpd/distinfo
==============================================================================
--- branches/2019Q1/audio/musicpd/distinfo	Sun Jan 13 14:41:13 2019	(r490138)
+++ branches/2019Q1/audio/musicpd/distinfo	Sun Jan 13 14:41:59 2019	(r490139)
@@ -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

Copied: branches/2019Q1/audio/musicpd/files/patch-src_zeroconf_meson.build (from r490137, head/audio/musicpd/files/patch-src_zeroconf_meson.build)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2019Q1/audio/musicpd/files/patch-src_zeroconf_meson.build	Sun Jan 13 14:41:59 2019	(r490139, copy of r490137, head/audio/musicpd/files/patch-src_zeroconf_meson.build)
@@ -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?201901131441.x0DEfxg8028163>