diff options
author | dholland <dholland> | 2013-10-30 06:22:04 +0000 |
---|---|---|
committer | dholland <dholland> | 2013-10-30 06:22:04 +0000 |
commit | d3da4e4aae77144da60277142c1b4b3633e36730 (patch) | |
tree | 1edca9996908c5915adaa905d4bf671a4a8f6d45 | |
parent | 05bd533dc842cb3347e88b492508c808db3ab917 (diff) | |
download | pkgsrc-d3da4e4aae77144da60277142c1b4b3633e36730.tar.gz |
Does not build with lua51. It isn't clear to me if this is a serious
problem or a makefile glitch, as libtool is involved and everything is
very opaque as a result.
Also, use REPLACE_LUA.
-rw-r--r-- | graphics/graphviz/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index 5cf21125ee7..87069f18ddd 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.130 2013/10/10 14:42:14 ryoon Exp $ +# $NetBSD: Makefile,v 1.131 2013/10/30 06:22:04 dholland Exp $ DISTNAME= graphviz-2.34.0 PKGREVISION= 1 @@ -43,10 +43,11 @@ PKGCONFIG_OVERRIDE+= lib/pathplan/libpathplan.pc.in PKGCONFIG_OVERRIDE+= lib/xdot/libxdot.pc.in XAW_TYPE= standard -REPLACE_INTERPRETER+= lua -REPLACE.lua.old= .*lua -REPLACE.lua.new= ${PREFIX}/bin/lua -REPLACE_FILES.lua= tclpkg/gv/demo/modgraph.lua +# With lua51 there's a PLIST divergence and it isn't obvious whether +# it's serious or not, or what causes it. +LUA_VERSIONS_INCOMPATIBLE= 51 + +REPLACE_LUA+= tclpkg/gv/demo/modgraph.lua REPLACE_INTERPRETER+= tclsh REPLACE.tclsh.old= .*tclsh @@ -76,6 +77,8 @@ post-install: .include "options.mk" +.include "../../lang/lua/application.mk" + .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/libltdl/buildlink3.mk" |