Date: Tue, 23 Jan 2024 09:43:15 GMT From: Alex Kozlov <ak@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: d680efafeac2 - main - emulators/dgen-sdl: Move manual pages to share/man Message-ID: <202401230943.40N9hFlm061048@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by ak: URL: https://cgit.FreeBSD.org/ports/commit/?id=d680efafeac23070432f79b06ea407b80f949c49 commit d680efafeac23070432f79b06ea407b80f949c49 Author: Alex Kozlov <ak@FreeBSD.org> AuthorDate: 2024-01-23 09:30:02 +0000 Commit: Alex Kozlov <ak@FreeBSD.org> CommitDate: 2024-01-23 09:35:46 +0000 emulators/dgen-sdl: Move manual pages to share/man - Remove USES=libarchive as all supported OS versions now have libarchive library so number > 6 - Remove support for handwritten asm functions, there is no visible performance difference for non-embedded cpus from last 20+ years - Move manual pages to share/man --- emulators/dgen-sdl/Makefile | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/emulators/dgen-sdl/Makefile b/emulators/dgen-sdl/Makefile index b445594d5466..d9892cb426e9 100644 --- a/emulators/dgen-sdl/Makefile +++ b/emulators/dgen-sdl/Makefile @@ -1,6 +1,6 @@ PORTNAME= dgen-sdl PORTVERSION= 1.33 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= emulators MASTER_SITES= SF/dgen/dgen/${PORTVERSION} @@ -10,27 +10,14 @@ WWW= https://dgen.sourceforge.net/ USE_SDL= sdl USE_GL= glu -USES= gl gmake libarchive sdl +USES= gl gmake sdl GNU_CONFIGURE= yes +GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share PLIST_FILES= bin/dgen \ bin/dgen_tobin \ - man/man1/dgen.1.gz \ - man/man1/dgen_tobin.1.gz \ - man/man5/dgenrc.5.gz + share/man/man1/dgen.1.gz \ + share/man/man1/dgen_tobin.1.gz \ + share/man/man5/dgenrc.5.gz -.include <bsd.port.pre.mk> - -.if ${ARCH} == i386 -BUILD_DEPENDS+= nasm:devel/nasm -.else -CONFIGURE_ARGS+= --disable-asm -.endif - -post-patch: - @${REINPLACE_CMD} -e '/@NASM@/s/--//' \ - ${WRKSRC}/Makefile.in \ - ${WRKSRC}/mz80/Makefile.in \ - ${WRKSRC}/star/Makefile.in - -.include <bsd.port.post.mk> +.include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401230943.40N9hFlm061048>