svn commit: r374674 - head/games/bsdgames

Adam Weinberger adamw at FreeBSD.org
Sat Dec 13 18:54:03 UTC 2014


Author: adamw
Date: Sat Dec 13 18:54:02 2014
New Revision: 374674
URL: https://svnweb.freebsd.org/changeset/ports/374674
QAT: https://qat.redports.org/buildarchive/r374674/

Log:
  Since r367027, the setgid games have been installed as setgid root
  instead of setgid root. The port redefines BINGRP when necessary,
  but since BINGRP was being passed in MAKE_ARGS, it overrode those
  redefinitions. Passing BINGRP in MAKE_ENV instead should allow
  uidfix to still work, while making sure that the games are installed
  with the correct group.
  
  Submitted by:	Glen Foster
  MFH:		2014Q4

Modified:
  head/games/bsdgames/Makefile

Modified: head/games/bsdgames/Makefile
==============================================================================
--- head/games/bsdgames/Makefile	Sat Dec 13 18:49:26 2014	(r374673)
+++ head/games/bsdgames/Makefile	Sat Dec 13 18:54:02 2014	(r374674)
@@ -3,7 +3,7 @@
 
 PORTNAME=	bsdgames
 PORTVERSION=	3.8.2
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	1
 CATEGORIES=	games
 # Fetched from git://git.dragonflybsd.org/dragonfly.git, v${PORTVERSION}, /games
@@ -18,8 +18,7 @@ LICENSE=	BSD3CLAUSE
 CONFLICTS=	hangman-[0-9]*
 
 USES=		uidfix tar:xz
-MAKE_ENV+=	NO_WERROR=1
-MAKE_ARGS=	BINGRP=${BINGRP}
+MAKE_ENV+=	NO_WERROR=1 BINGRP=${BINGRP}
 
 # contain /usr/share/games
 SHAREPATH_FILES=atc/atc.6 \


More information about the svn-ports-head mailing list