From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 26 17:00:38 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F57616A404 for ; Fri, 26 Jan 2007 17:00:38 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E2F8A13C484 for ; Fri, 26 Jan 2007 17:00:37 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l0QH0bYW050831 for ; Fri, 26 Jan 2007 17:00:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l0QH0biN050830; Fri, 26 Jan 2007 17:00:37 GMT (envelope-from gnats) Resent-Date: Fri, 26 Jan 2007 17:00:37 GMT Resent-Message-Id: <200701261700.l0QH0biN050830@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B17616A405 for ; Fri, 26 Jan 2007 16:51:23 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 47ECC13C481 for ; Fri, 26 Jan 2007 16:51:21 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from clamav by cp65.agava.net with drweb-scanned (Exim 4.44 (FreeBSD)) id 1HAUII-000ITz-Pu for FreeBSD-gnats-submit@freebsd.org; Fri, 26 Jan 2007 19:51:18 +0300 Received: from [213.148.29.33] (helo=nexii.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.44 (FreeBSD)) id 1HAUIH-000IT8-Kw for FreeBSD-gnats-submit@freebsd.org; Fri, 26 Jan 2007 19:51:18 +0300 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id A08CA1703D for ; Fri, 26 Jan 2007 19:52:16 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 2ECBA4098; Fri, 26 Jan 2007 19:52:40 +0300 (MSK) Message-Id: <20070126165240.2ECBA4098@hades.panopticon> Date: Fri, 26 Jan 2007 19:52:40 +0300 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/108378: [PATCH] games/foobillard: add OPTIONS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jan 2007 17:00:38 -0000 >Number: 108378 >Category: ports >Synopsis: [PATCH] games/foobillard: add OPTIONS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 26 17:00:36 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 6.1-RELEASE-p12 i386 >Organization: >Environment: System: FreeBSD hades.panopticon 6.1-RELEASE-p12 FreeBSD 6.1-RELEASE-p12 #0: Tue Jan 16 23:12:21 MSK 2007 amdmi3@hades.panopticon:/usr/obj/usr/src/sys/HADES i386 >Description: Add OPTIONS support for games/foobillard. >How-To-Repeat: >Fix: --- foobillard.patch begins here --- diff -ruN foobillard.orig/Makefile foobillard/Makefile --- foobillard.orig/Makefile Fri Jan 26 19:46:09 2007 +++ foobillard/Makefile Fri Jan 26 19:49:21 2007 @@ -17,6 +17,9 @@ LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ freetype.9:${PORTSDIR}/print/freetype2 +OPTIONS= SDL "Use SDL instead of glut" off \ + NVIDIA_BUMPREF "Enable NVidia extensions" off + .include FREETYPE_CONFIG?= ${LOCALBASE}/bin/freetype-config @@ -42,20 +45,6 @@ .endif MAN6= foobillard.6 - -pre-everything:: -.if !defined(WITH_SDL) || !defined(WITH_NVIDIA_BUMPREF) - @${ECHO_MSG} "You may specify the following on the command line:" - @${ECHO_MSG} "" -.endif - -.if !defined(WITH_SDL) - @${ECHO_MSG} "WITH_SDL=yes to use SDL-lib instead of glut" -.endif - -.if !defined(WITH_NVIDIA_BUMPREF) - @${ECHO_MSG} "WITH_NVIDIA_BUMPREF=yes to enable NV-extensions" -.endif post-patch: @${REINPLACE_CMD} -e 's|%%FREETYPE_CONFIG%%|${FREETYPE_CONFIG}|g' \ --- foobillard.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: