> List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-ports-all@freebsd.org Sender: owner-dev-commits-ports-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mandree X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 7d4019218eacedb5237cb3a916438550444e677a Auto-Submitted: auto-generated Date: Tue, 06 Jan 2026 15:36:33 +0000 Message-Id: <695d2c01.23bb3.5c0cda49@gitrepo.freebsd.org> The branch main has been updated by mandree: URL: https://cgit.FreeBSD.org/ports/commit/?id=7d4019218eacedb5237cb3a916438550444e677a commit 7d4019218eacedb5237cb3a916438550444e677a Author: Chris Hutchinson AuthorDate: 2026-01-05 20:15:59 +0000 Commit: Matthias Andree CommitDate: 2026-01-06 14:23:27 +0000 audio/aqualung: unbreak avcodec_close errors PR: 289058 --- audio/aqualung/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/audio/aqualung/Makefile b/audio/aqualung/Makefile index 9e3b41038eaa..be46e66b5ee1 100644 --- a/audio/aqualung/Makefile +++ b/audio/aqualung/Makefile @@ -1,14 +1,12 @@ PORTNAME= aqualung DISTVERSION= 1.2 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= audio MAINTAINER= portmaster@BSDforge.com COMMENT= Music player with rich features WWW= https://aqualung.jeremyevans.net/ -BROKEN= Does not build with ffmpeg > 6 - PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ PATCHFILES+= a991c13d0df734a5d0fea7db6b181176858f3e58.patch:-p1 # Support newer audio/mac PATCHFILES+= d2c88317b6042a05c236faf3c09f600337c6379e.patch:-p1 # Support newer audio/mac @@ -71,5 +69,8 @@ post-patch: # Remove unused duplicate global symbols (-fno-common) @${REINPLACE_CMD} -E '/^g?char command/d' \ ${WRKSRC}/src/gui_main.c +# avcodec_close deprecated in ffmpeg 4 + @${REINPLACE_CMD} -e 's/avcodec_close/avcodec_free_context/g' \ + ${WRKSRC}/src/decoder/dec_lavc.c .include