git: 4abac5034eca - main - audio/musicpd: Add WAVPACK to OPTIONS_DEFAULT

From: Thomas Zander <riggs_at_FreeBSD.org>
Date: Sun, 04 Dec 2022 12:20:05 UTC
The branch main has been updated by riggs:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4abac5034ecac070898410b3391771a14e8e1806

commit 4abac5034ecac070898410b3391771a14e8e1806
Author:     Thomas Zander <riggs@FreeBSD.org>
AuthorDate: 2022-12-04 11:49:05 +0000
Commit:     Thomas Zander <riggs@FreeBSD.org>
CommitDate: 2022-12-04 12:20:02 +0000

    audio/musicpd: Add WAVPACK to OPTIONS_DEFAULT
    
    Rationale:
    If wavpack files containing DSD content are played via ffmpeg, they are
    first converted to PCM in libavcodec (i.e. resampled and filtered), then
    again to the native resolution of the oss output.
    Using libwavpack directly allows mpd to leverages its native support for
    DSD content, avoiding multiple resampling and / or filtering steps.
    
    MFH:            2022Q4
---
 audio/musicpd/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile
index 9192f04e7760..926121ebe7cd 100644
--- a/audio/musicpd/Makefile
+++ b/audio/musicpd/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	musicpd
 PORTVERSION=	0.23.11
+PORTREVISION=	1
 CATEGORIES=	audio
 MASTER_SITES=	https://www.musicpd.org/download/mpd/${PORTVERSION:R}/
 DISTNAME=	mpd-${PORTVERSION}
@@ -78,7 +79,8 @@ YAJL_DESC=	JSON support via libyajl
 ZZIP_DESC=	Support for zzip archives
 
 OPTIONS_DEFAULT=CURL FFMPEG FLAC ID3TAG LAME MANPAGES OPUS \
-		PLAYLISTS PROXYDB SNDFILE VORBIS VORBISENC
+		PLAYLISTS PROXYDB SNDFILE VORBIS VORBISENC \
+		WAVPACK
 
 MANPAGES_MESON_ENABLED=	documentation
 MANPAGES_BUILD_DEPENDS=	${LOCALBASE}/bin/sphinx-build:textproc/py-sphinx@${PY_FLAVOR}