summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-07-26 07:38:42 +0000
committerwiz <wiz@pkgsrc.org>2022-07-26 07:38:42 +0000
commite7ae50a4b12fc3aeabb2d8e6a242e359bbee1e81 (patch)
tree805b5ca5f03fc711adbb92edf9a9fa2d8c8568d4
parent32d68ae1cf3c0449a2af7239bbbb5e273eabd823 (diff)
downloadpkgsrc-e7ae50a4b12fc3aeabb2d8e6a242e359bbee1e81.tar.gz
musicpd: switch to ffmpeg4 until ffmpeg5 5.1 is supported.
Bump PKGREVISION.
-rw-r--r--audio/musicpd/Makefile4
-rw-r--r--audio/musicpd/options.mk7
2 files changed, 7 insertions, 4 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile
index 48ce44e9af7..0bff6e05d34 100644
--- a/audio/musicpd/Makefile
+++ b/audio/musicpd/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.272 2022/07/25 01:01:52 tnn Exp $
+# $NetBSD: Makefile,v 1.273 2022/07/26 07:38:42 wiz Exp $
DISTNAME= mpd-0.23.8
PKGNAME= ${DISTNAME:S/mpd/musicpd/}
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= audio
MASTER_SITES= https://www.musicpd.org/download/mpd/${PKGVERSION_NOREV:R}/
EXTRACT_SUFX= .tar.xz
diff --git a/audio/musicpd/options.mk b/audio/musicpd/options.mk
index 28bed634037..1bb3e7025d4 100644
--- a/audio/musicpd/options.mk
+++ b/audio/musicpd/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.42 2022/07/12 21:20:40 triaxx Exp $
+# $NetBSD: options.mk,v 1.43 2022/07/26 07:38:42 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.musicpd
@@ -83,7 +83,10 @@ MESON_ARGS+= -Dfaad=disabled
.endif
.if !empty(PKG_OPTIONS:Mffmpeg)
-. include "../../multimedia/ffmpeg5/buildlink3.mk"
+# needs 5.1 support
+# https://github.com/MusicPlayerDaemon/MPD/issues/1582
+#. include "../../multimedia/ffmpeg5/buildlink3.mk"
+. include "../../multimedia/ffmpeg4/buildlink3.mk"
.else
MESON_ARGS+= -Dffmpeg=disabled
.endif