Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Apr 2013 15:36:19 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r316521 - head/graphics/graphviz
Message-ID:  <201304251536.r3PFaJKa018270@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dinoex
Date: Thu Apr 25 15:36:19 2013
New Revision: 316521
URL: http://svnweb.freebsd.org/changeset/ports/316521

Log:
  - support to build without XPM even if it is installed
  PR:		177477
  Submitted by:	Jimmy Olgeni

Modified:
  head/graphics/graphviz/Makefile

Modified: head/graphics/graphviz/Makefile
==============================================================================
--- head/graphics/graphviz/Makefile	Thu Apr 25 15:24:22 2013	(r316520)
+++ head/graphics/graphviz/Makefile	Thu Apr 25 15:36:19 2013	(r316521)
@@ -141,11 +141,13 @@ CONFIGURE_ARGS+=	--with-iconvincludedir=
 CONFIGURE_ARGS+=	--without-libiconv-prefix
 .endif
 
-.if ${PORT_OPTIONS:MXPM} || exists(${LOCALBASE}/lib/libXpm.so)
+.if ${PORT_OPTIONS:MXPM}
+CONFIGURE_ARGS+=	--with-x
 USE_XORG+=		xaw xpm xmu xt sm ice xext x11 xau xdmcp xp
 MAN1+=			dotty.1 lefty.1 lneato.1
 PLIST_SUB+=		WITH_XPM=""
 .else
+CONFIGURE_ARGS+=	--without-x
 PLIST_SUB+=		WITH_XPM="@comment "
 .endif
 



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