Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jan 2010 07:44:20 -0600 (CST)
From:      Stephen Montgomery-Smith <stephen@missouri.edu>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/142779: Small error in gmsh port
Message-ID:  <201001131344.o0DDiKOK011275@cauchy.math.missouri.edu>
Resent-Message-ID: <201001131350.o0DDo2YD058537@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         142779
>Category:       ports
>Synopsis:       Small error in gmsh port
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan 13 13:50:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Stephen Montgomery-Smith
>Release:        FreeBSD 7.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD cauchy 7.2-STABLE FreeBSD 7.2-STABLE #0: Sat Jan 9 19:36:19 CST 2010 stephen@cauchy:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:

The port is meant to pull in taucs as a dependency in its default mode.  The option WITHOUT_TAUCS is misprogrammed in Makefile.

>How-To-Repeat:
	
>Fix:

diff -ur /usr/ports/cad/gmsh/Makefile gmsh/Makefile
--- /usr/ports/cad/gmsh/Makefile	2010-01-13 07:23:58.000000000 -0600
+++ gmsh/Makefile	2010-01-13 07:39:08.000000000 -0600
@@ -79,7 +79,7 @@
 PLIST_SUB+=	METIS="@comment "
 .endif
 
-.if defined(WITH_TAUCS)
+.if !defined(WITHOUT_TAUCS)
 LIB_DEPENDS+=	taucs.1:${PORTSDIR}/math/taucs
 CMAKE_ARGS+=	-DENABLE_TAUCS=ON
 .else


>Release-Note:
>Audit-Trail:
>Unformatted:



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