From owner-svn-ports-all@FreeBSD.ORG Tue Oct 16 06:21:15 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAF23688; Tue, 16 Oct 2012 06:21:15 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D252A8FC0C; Tue, 16 Oct 2012 06:21:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9G6LFUE065813; Tue, 16 Oct 2012 06:21:15 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9G6LFhw065811; Tue, 16 Oct 2012 06:21:15 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210160621.q9G6LFhw065811@svn.freebsd.org> From: Jason Helfman Date: Tue, 16 Oct 2012 06:21:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305950 - head/games/xgalaga X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 06:21:16 -0000 Author: jgh Date: Tue Oct 16 06:21:15 2012 New Revision: 305950 URL: http://svn.freebsd.org/changeset/ports/305950 Log: - adopt optionsNG - trim header while here PR: 172739 Submitted by: maintainer, turutani@scphys.kyoto-u.ac.jp Feature safe: yes Modified: head/games/xgalaga/Makefile Modified: head/games/xgalaga/Makefile ============================================================================== --- head/games/xgalaga/Makefile Tue Oct 16 05:38:25 2012 (r305949) +++ head/games/xgalaga/Makefile Tue Oct 16 06:21:15 2012 (r305950) @@ -1,9 +1,6 @@ -# New ports collection makefile for: xgalaga -# Date created: 27 August 1995 -# Whom: asami +# Created by: asami # # $FreeBSD$ -# PORTNAME= xgalaga PORTVERSION= 2.1.1.0 @@ -23,11 +20,12 @@ CONFIGURE_ARGS= --prefix=${LOCALBASE}/li --mandir=${LOCALBASE}/man \ --exec_prefix=${LOCALBASE}/bin -OPTIONS= SOUND "Sound support" on +OPTIONS_DEFINE= SOUND +OPTIONS_DEFAULT= SOUND -.include +.include -.if defined(WITHOUT_SOUND) || defined(NOSOUND) +.if empty(PORT_OPTIONS:MSOUND) CONFIGURE_ARGS+= --without-sound PLIST_SUB= SOUND="@comment " .else @@ -37,4 +35,4 @@ PLIST_SUB= SOUND="" post-install: @${STRIP_CMD} ${PREFIX}/bin/xgalaga -.include +.include