From owner-svn-ports-head@FreeBSD.ORG Tue May 5 04:07:02 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52F5B2E7; Tue, 5 May 2015 04:07:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4162112E9; Tue, 5 May 2015 04:07:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t454722Z006731; Tue, 5 May 2015 04:07:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t454727b006730; Tue, 5 May 2015 04:07:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201505050407.t454727b006730@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 5 May 2015 04:07:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385443 - head/games/wxlauncher X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 May 2015 04:07:02 -0000 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 (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