Bug 175885 - [patch] graphics/mesa-demos: fix typo in makefile
Summary: [patch] graphics/mesa-demos: fix typo in makefile
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-x11 (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-06 14:00 UTC by vsjcfm
Modified: 2013-02-06 18:50 UTC (History)
0 users

See Also:


Attachments
file.txt (422 bytes, text/plain)
2013-02-06 14:00 UTC, vsjcfm
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description vsjcfm 2013-02-06 14:00:00 UTC
OPTIONS_DEFINE contains NVIDIA_GL, but there is no NVIDIA_GL_DESC.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-02-06 14:00:12 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-x11

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-02-06 18:45:18 UTC
Author: zeising
Date: Wed Feb  6 18:45:10 2013
New Revision: 311789
URL: http://svnweb.freebsd.org/changeset/ports/311789

Log:
  Fix NVIDIA_GL option description and rename option to NVIDIA.
  
  PR:		ports/175885
  Submitted by:	Sayetsky Anton <vsjcfm@gmail.com>

Modified:
  head/graphics/mesa-demos/Makefile

Modified: head/graphics/mesa-demos/Makefile
==============================================================================
--- head/graphics/mesa-demos/Makefile	Wed Feb  6 18:32:58 2013	(r311788)
+++ head/graphics/mesa-demos/Makefile	Wed Feb  6 18:45:10 2013	(r311789)
@@ -29,8 +29,8 @@ WRKSRC=		${WRKDIR}/Mesa-${PORTVERSION}/
 
 DATADIR=	${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}
 
-OPTIONS_DEFINE=	NVIDIA_GL XCB
-NVIDIA_DESC=	Use NVIDIA's libraries
+OPTIONS_DEFINE=	NVIDIA XCB
+NVIDIA_DESC=	Use NVIDIA's OpenGL libraries
 XCB_DESC=	Use XCB for GLX
 
 .include <bsd.port.options.mk>
@@ -77,7 +77,7 @@ do-install:
 
 .include <bsd.port.pre.mk>
 
-.if ${PORT_OPTIONS:MNVIDIA_GL}
+.if ${PORT_OPTIONS:MNVIDIA}
 CFLAGS+=	-DWITH_NVIDIA_GL=1
 .endif
 
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Niclas Zeising freebsd_committer freebsd_triage 2013-02-06 18:45:48 UTC
State Changed
From-To: open->closed

A slightly different version of the patch was committed.  Thanks for the 
report!