Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Oct 2018 19:00:22 +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: r482239 - in branches/2018Q4/audio/musicpd: . files
Message-ID:  <201810161900.w9GJ0MNw073844@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Tue Oct 16 19:00:22 2018
New Revision: 482239
URL: https://svnweb.freebsd.org/changeset/ports/482239

Log:
  MFH: r482042 r482238
  
  Enable VORBISENC by default for httpd streaming with the default package
  
  Additionally:
  - Bump PORTREVISION
  - Pet portlint
  
  Reported by:	bapt
  
  Fix SIGABRT in IsFileNotFound (e.g. when creating an empty database)
  
  While on it:
  - Add USES=gnome due to complaint in check-sanity
  
  PR:		232030
  Reported by:	korsani@free.fr
  
  Approved by:	ports-secteam (riggs)

Added:
  branches/2018Q4/audio/musicpd/files/patch-src_input_Error.hxx
     - copied unchanged from r482238, head/audio/musicpd/files/patch-src_input_Error.hxx
Modified:
  branches/2018Q4/audio/musicpd/Makefile
Directory Properties:
  branches/2018Q4/   (props changed)

Modified: branches/2018Q4/audio/musicpd/Makefile
==============================================================================
--- branches/2018Q4/audio/musicpd/Makefile	Tue Oct 16 18:47:59 2018	(r482238)
+++ branches/2018Q4/audio/musicpd/Makefile	Tue Oct 16 19:00:22 2018	(r482239)
@@ -2,7 +2,7 @@
 
 PORTNAME=	musicpd
 PORTVERSION=	0.20.21
-PORTREVISION=	1
+PORTREVISION=	3
 CATEGORIES=	audio ipv6
 MASTER_SITES=	http://www.musicpd.org/download/mpd/${PORTVERSION:R}/
 DISTNAME=	mpd-${PORTVERSION}
@@ -13,10 +13,13 @@ COMMENT=	Remote-controllable music daemon
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+BROKEN_powerpc64=	Does not build on powerpc64
+
 LIB_DEPENDS=	libboost_iostreams.so:devel/boost-libs \
 		libicudata.so:devel/icu
 
-USES=		compiler:c++14-lang gmake pkgconfig tar:xz
+USES=		compiler:c++14-lang gmake gnome pkgconfig tar:xz
+
 GNU_CONFIGURE=	yes
 USE_GNOME=	glib20
 
@@ -29,8 +32,6 @@ LDFLAGS+=	-L${LOCALBASE}/lib -L${LOCALBASE}/lib/sidpla
 #Workaround (transient?) link error with libwrap
 CONFIGURE_ARGS+=--disable-libwrap
 
-BROKEN_powerpc64=	Does not build on powerpc64
-
 PORTDOCS=	AUTHORS README.md NEWS
 
 SUB_FILES=	pkg-message
@@ -68,7 +69,8 @@ VORBISENC_DESC=	Ogg Vorbis encoder
 WILDMIDI_DESC=	WildMIDI support (MIDI files)
 YAJL_DESC=	SoundCloud support via libyajl
 
-OPTIONS_DEFAULT=HTTPD ID3TAG MAD OSS FLAC VORBIS WAV FFMPEG SNDFILE CURL
+OPTIONS_DEFAULT=HTTPD ID3TAG MAD OSS FLAC VORBIS WAV FFMPEG SNDFILE \
+		CURL VORBISENC
 
 AAC_CONFIGURE_ENABLE=aac
 AAC_LIB_DEPENDS=libfaad.so:audio/faad

Copied: branches/2018Q4/audio/musicpd/files/patch-src_input_Error.hxx (from r482238, head/audio/musicpd/files/patch-src_input_Error.hxx)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q4/audio/musicpd/files/patch-src_input_Error.hxx	Tue Oct 16 19:00:22 2018	(r482239, copy of r482238, head/audio/musicpd/files/patch-src_input_Error.hxx)
@@ -0,0 +1,10 @@
+--- src/input/Error.hxx.orig	2018-07-06 17:17:27 UTC
++++ src/input/Error.hxx
+@@ -30,7 +30,6 @@
+  * exist?  This function attempts to recognize exceptions thrown by
+  * various input plugins.
+  */
+-gcc_pure
+ bool
+ IsFileNotFound(std::exception_ptr e);
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810161900.w9GJ0MNw073844>