Date: Mon, 22 Jan 2024 12:26:42 GMT From: Muhammad Moinur Rahman <bofh@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: fa4d742a747f - main - graphics/xli: Sanitize MANPREFIX Message-ID: <202401221226.40MCQgj0098110@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=fa4d742a747fcc59fca3d10f0e1111d04a2f3f7d commit fa4d742a747fcc59fca3d10f0e1111d04a2f3f7d Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2024-01-22 11:49:35 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2024-01-22 12:26:18 +0000 graphics/xli: Sanitize MANPREFIX Approved by: portmgr (blanket) --- graphics/xli/Makefile | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/graphics/xli/Makefile b/graphics/xli/Makefile index 457b0ec6e4c1..4bb8fa17c071 100644 --- a/graphics/xli/Makefile +++ b/graphics/xli/Makefile @@ -1,6 +1,6 @@ PORTNAME= xli PORTVERSION= 1.17.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= graphics MASTER_SITES= DEBIAN DISTNAME= xli_${PORTVERSION}+${XLI_SNAPVER:C/-//g}.orig @@ -17,15 +17,19 @@ USE_XORG= xi WRKSRC= ${WRKDIR}/xli-${XLI_SNAPVER} PLIST_FILES= bin/xli bin/xlito bin/xview bin/xsetbg \ - lib/X11/app-defaults/Xli man/man1/xli.1.gz \ - man/man1/xlito.1.gz man/man1/xview.1.gz man/man1/xsetbg.1.gz + lib/X11/app-defaults/Xli share/man/man1/xli.1.gz \ + share/man/man1/xlito.1.gz share/man/man1/xview.1.gz share/man/man1/xsetbg.1.gz XLI_SNAPVER= 2006-11-10 post-install: - ${RLN} ${STAGEDIR}${MANPREFIX}/man/man1/xli.1.gz \ - ${STAGEDIR}${MANPREFIX}/man/man1/xview.1.gz - ${RLN} ${STAGEDIR}${MANPREFIX}/man/man1/xli.1.gz \ - ${STAGEDIR}${MANPREFIX}/man/man1/xsetbg.1.gz + ${MV} ${STAGEDIR}${PREFIX}/man/man1/xli.1.gz \ + ${STAGEDIR}${PREFIX}/share/man/man1/xli.1.gz + ${MV} ${STAGEDIR}${PREFIX}/man/man1/xlito.1.gz \ + ${STAGEDIR}${PREFIX}/share/man/man1/xlito.1.gz + ${RLN} ${STAGEDIR}${PREFIX}/share/man/man1/xli.1.gz \ + ${STAGEDIR}${PREFIX}/share/man/man1/xview.1.gz + ${RLN} ${STAGEDIR}${PREFIX}/share/man/man1/xli.1.gz \ + ${STAGEDIR}${PREFIX}/share/man/man1/xsetbg.1.gz .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401221226.40MCQgj0098110>