git: a19f517290b2 - main - multimedia/gst123: Fix build on 13
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 18 Jan 2025 16:19:07 UTC
The branch main has been updated by vvd: URL: https://cgit.FreeBSD.org/ports/commit/?id=a19f517290b2ef1d12fd65ad8af38bfed1c99c46 commit a19f517290b2ef1d12fd65ad8af38bfed1c99c46 Author: mew14930xvi <mew14930xvi@inbox.lv> AuthorDate: 2025-01-18 16:14:24 +0000 Commit: Vladimir Druzenko <vvd@FreeBSD.org> CommitDate: 2025-01-18 16:18:56 +0000 multimedia/gst123: Fix build on 13 Can't find ncurses during configure stage: checking for ncurses >= 5... no checking for ncurses6-config... false checking for ncurses5-config... (cached) false checking for ncurses-config... (cached) false configure: error: Neither pkgconfig(ncurses) nor ncurses-config was found. ===> Script "configure" failed unexpectedly. PR: 284122 Fixes: 716c8f511a06 (Update 0.3.3 → 0.4.1 and remove DEPRECATED) --- multimedia/gst123/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/multimedia/gst123/Makefile b/multimedia/gst123/Makefile index 590cd49ce568..f3b9ade6dbd3 100644 --- a/multimedia/gst123/Makefile +++ b/multimedia/gst123/Makefile @@ -19,8 +19,15 @@ GNU_CONFIGURE= yes PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz +.include <bsd.port.pre.mk> + +.if ${OPSYS}_${OSREL:R} == FreeBSD_13 +CONFIGURE_ENV= NCURSES_CFLAGS=-I${NCURSESINC} NCURSES_LIBS=-L${NCURSESLIB} +LDFLAGS+= ${TINFO_LIB} +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 -.include <bsd.port.mk> +.include <bsd.port.post.mk>