svn commit: r316521 - head/graphics/graphviz

Dirk Meyer dinoex at FreeBSD.org
Thu Apr 25 15:36:20 UTC 2013


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
 


More information about the svn-ports-head mailing list