Date: Fri, 27 Aug 2021 18:43:38 GMT From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 69307666c81e - main - graphics/glew: restore GLU for now after 8532b6f5d078 Message-ID: <202108271843.17RIhcLk041942@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=69307666c81eab8e37a872fdc0481c4d3e250311 commit 69307666c81eab8e37a872fdc0481c4d3e250311 Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2021-08-27 18:19:09 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2021-08-27 18:42:11 +0000 graphics/glew: restore GLU for now after 8532b6f5d078 While glew itself builds with -DGLEW_NO_GLU it's neither passed via pkg-config to consumers nor visible outside of pkg-config. $ pkg install glew pkgconf $ pkg-config --cflags glew Package glu was not found in the pkg-config search path. Perhaps you should add the directory containing `glu.pc' to the PKG_CONFIG_PATH environment variable Package 'glu', required by 'glew', not found PR: 257626 (for tracking) Reported by: madpilot --- graphics/glew/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/glew/Makefile b/graphics/glew/Makefile index c367b5043ba4..a89a917fe3cf 100644 --- a/graphics/glew/Makefile +++ b/graphics/glew/Makefile @@ -2,7 +2,7 @@ PORTNAME= glew PORTVERSION= 2.2.0 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= graphics MASTER_SITES= SF @@ -14,7 +14,7 @@ LICENSE_COMB= dual USES= gmake gl tar:tgz xorg USE_XORG?= x11 -USE_GL?= gl +USE_GL?= gl glu USE_LDCONFIG= yes MAKE_ENV= GLEW_DEST=${PREFIX} GLEW_PREFIX=${PREFIX}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108271843.17RIhcLk041942>