git: f94341404968 - main - games/kanatest: fix ports compliance
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 19 Feb 2023 11:02:27 UTC
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=f94341404968f402b97d3274ea5a22f98e8aba10 commit f94341404968f402b97d3274ea5a22f98e8aba10 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2023-02-15 09:51:10 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2023-02-19 11:01:40 +0000 games/kanatest: fix ports compliance - change += into = where appropriate While the Porter's Handbook wants us to place japanese as the first category, Poudriere wants games to be the first category. Given that an unhappy Poudriere leads to a broken port, this was not changed. Reported by: eduardo Approved by: portmgr (blanket) Approved by: eduardo (mentor) Differential Revision: https://reviews.freebsd.org/D38632 --- games/kanatest/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games/kanatest/Makefile b/games/kanatest/Makefile index 0775ad30e53c..d3750e51236c 100644 --- a/games/kanatest/Makefile +++ b/games/kanatest/Makefile @@ -10,12 +10,12 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING FETCH_DEPENDS= git:devel/git -LIB_DEPENDS+= libharfbuzz.so:print/harfbuzz +LIB_DEPENDS= libharfbuzz.so:print/harfbuzz USES= gettext gmake gnome pkgconfig tar:xz -USE_GNOME+= atk cairo gdkpixbuf2 glib20 gtk30 libxml2 pango +USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 libxml2 pango GNU_CONFIGURE= yes -MAKE_ENV+= LIBINTL="-lintl" +MAKE_ENV= LIBINTL="-lintl" OPTIONS_DEFINE= NLS OPTIONS_SUB= yes