diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2023-02-15 09:51:10 +0000 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2023-02-19 11:01:40 +0000 |
commit | f94341404968f402b97d3274ea5a22f98e8aba10 (patch) | |
tree | 7a7b9c1c9fed5e6f7f4a57b834396846799154a5 | |
parent | 8f82410463b7b82080a72f12531d2b6a3ae7eab2 (diff) | |
download | ports-f94341404968f402b97d3274ea5a22f98e8aba10.tar.gz ports-f94341404968f402b97d3274ea5a22f98e8aba10.zip |
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
-rw-r--r-- | games/kanatest/Makefile | 6 |
1 files 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 |