1
0
mirror of https://git.freebsd.org/ports.git synced 2026-06-02 11:08:52 +00:00

games/qwfwd: Improve port - no functional changes

- Add "--no-same-owner --no-same-permissions" to EXTRACT_AFTER_ARGS.
- Use ${PORTNAME} instead of qwfwd in USERS and GROUPS.
This commit is contained in:
Vladimir Druzenko
2025-09-30 16:03:57 +03:00
parent f43d27e420
commit 643d06737c
+5 -4
View File
@@ -17,11 +17,12 @@ USE_RC_SUBR= ${PORTNAME}
EXTRACT_AFTER_ARGS= --exclude .git* \
--exclude */.git* \
--exclude build_cmake.sh \
--exclude tools*
--exclude tools* \
--no-same-owner --no-same-permissions
SUB_LIST= QWUSER=${USERS}
USERS= qwfwd
GROUPS= qwfwd
USERS= ${PORTNAME}
GROUPS= ${PORTNAME}
PORTDOCS= README.md
OPTIONS_DEFINE= DOCS
@@ -34,6 +35,6 @@ do-install:
do-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>