Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 May 2015 04:07:02 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385443 - head/games/wxlauncher
Message-ID:  <201505050407.t454727b006730@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Tue May  5 04:07:01 2015
New Revision: 385443
URL: https://svnweb.freebsd.org/changeset/ports/385443

Log:
  games/wxlauncher: add DEBUG option and put verbose logging behind it
  
  DEBUG=off (default) now shows splash screen on startup due to being on
  the same #if NDEBUG bandwagon used to turn off verbose logging.
  
  GitHub:		wxLauncher/wxlauncher#117
  PR:		199919
  Submitted by:	lightside <lightside@gmx.com> (maintainer)

Modified:
  head/games/wxlauncher/Makefile   (contents, props changed)

Modified: head/games/wxlauncher/Makefile
==============================================================================
--- head/games/wxlauncher/Makefile	Tue May  5 03:32:03 2015	(r385442)
+++ head/games/wxlauncher/Makefile	Tue May  5 04:07:01 2015	(r385443)
@@ -3,7 +3,7 @@
 
 PORTNAME=	wxlauncher
 PORTVERSION=	0.9.6
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	games
 DISTNAME=	${PORTNAME}-${DISTVERSIONFULL}
 
@@ -35,8 +35,9 @@ DESKTOP_ENTRIES="wxLauncher" "${COMMENT}
 		"${PORTNAME}" "${PORTNAME}" \
 		"Game;" false
 
-OPTIONS_DEFINE=	DOCS JOYSTICK WX3
+OPTIONS_DEFINE=	DEBUG DOCS JOYSTICK WX3
 OPTIONS_DEFAULT=	JOYSTICK WX3
+DEBUG_CXXFLAGS_OFF=	-DNDEBUG
 JOYSTICK_DESC=	Build with joystick support
 JOYSTICK_CMAKE_ON=	-DUSE_JOYSTICK:BOOL=ON
 JOYSTICK_CMAKE_OFF=	-DUSE_JOYSTICK:BOOL=OFF



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505050407.t454727b006730>