diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-08-06 15:26:30 +0200 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-08-06 16:09:30 +0200 |
commit | 759649a5b05de312726573133b1a37959b1b615e (patch) | |
tree | c9948de968fed874c807765378ec26e6aa59b108 /games/foobillard | |
parent | games/duel: prepare for freetype2 update (diff) |
games/foobillard: prepare for freetype2 update
- freetype2 will no longer ship freetype-config (which was a pkg-config
wrapper) in the near future -- use pkg-config to gather the required
flags.
PR: 251512
Diffstat (limited to 'games/foobillard')
-rw-r--r-- | games/foobillard/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/foobillard/Makefile b/games/foobillard/Makefile index 34c201482c86..d9db4ff5baa2 100644 --- a/games/foobillard/Makefile +++ b/games/foobillard/Makefile @@ -21,9 +21,9 @@ NVIDIA_BUMPREF_DESC= NVidia extensions .include <bsd.port.options.mk> -FREETYPE_CONFIG?= ${LOCALBASE}/bin/freetype-config +FREETYPE_CONFIG?= pkg-config freetype2 -USES= gmake xorg +USES= gmake pkgconfig xorg GNU_CONFIGURE= yes USE_XORG= xaw ice |