Created attachment 253598 [details] git diff file gobang.diff
Created attachment 253634 [details] games/Makefile and games/gobang diff The portlint has been finished.
Please don't submit compressed files as diffs. Send an uncompressed diff as a single file and set the "patch" flag when submitting it. I recommend making a git commit with your changes and using "git-format-patch" to generate the patch. I'll edit your port to obey ${CC}, ${CFLAGS}, etc when building the port. For future updates, check if you can ship a manpage with the game. Game manpages go into section 6 of the manual.
Hi. I'm very sorry. Do you still need me to resubmit the diffs? I will add the manual of the game in the next update.
No need to resubmit anything. I've fixed all the issues I mentioned. But do check if you can add a manpage in a future update, that would be great!
Thank you very much for your help. I will add the manual page of the game in the next update.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=312e909f61fa1f7533af565e4f6f09b5f6240510 commit 312e909f61fa1f7533af565e4f6f09b5f6240510 Author: Qiang Guo <guoqiang_cn@126.com> AuthorDate: 2024-09-20 14:42:09 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-09-25 06:28:03 +0000 games/gobang: console-based Gobang game This is a console-based Gobang (Five in a Row) game program. It provides a 15x15 board, supports player vs AI gameplay with different difficulty levels for the AI. The game implements an AI decision-making system based on the minimax algorithm, featuring core game logic such as board evaluation and win/loss determination. The program offers a user-friendly command-line interface for easy operation and game viewing, aiming to provide players with an entertaining and challenging Gobang game experience. - Two-player mode - Standard 15x15 game board - Alternating black and white stone placement - Automatic win/loss determination WWW: https://github.com/bigdragonsoft/gobang PR: 281527 Event: EuroBSDcon 2024 games/Makefile | 1 + games/gobang/Makefile (new) | 25 +++++++++++++++++++++++++ games/gobang/distinfo (new) | 3 +++ games/gobang/pkg-descr (new) | 13 +++++++++++++ 4 files changed, 42 insertions(+)
Thank you for your contribution.