git: 6522e04008b7 - 2022Q4 - audio/musicpd: Add WAVPACK to OPTIONS_DEFAULT
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 04 Dec 2022 12:21:15 UTC
The branch 2022Q4 has been updated by riggs: URL: https://cgit.FreeBSD.org/ports/commit/?id=6522e04008b7a90bdb02403933fb9af890a37c9d commit 6522e04008b7a90bdb02403933fb9af890a37c9d 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:55 +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 (cherry picked from commit 4abac5034ecac070898410b3391771a14e8e1806) --- 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}