diff options
author | marino <marino> | 2011-12-18 17:12:48 +0000 |
---|---|---|
committer | marino <marino> | 2011-12-18 17:12:48 +0000 |
commit | a9c48fecd608d2658fa20e51a193b11e8b9a18cf (patch) | |
tree | 0108bd0baf22e052626719f8c095191a5658e375 /math | |
parent | 9741aaf31c6865943db81519eced4df1ce633447 (diff) | |
download | pkgsrc-a9c48fecd608d2658fa20e51a193b11e8b9a18cf.tar.gz |
math/mcsim: Make sure package doesn't try to use tex and friends
Although mcsim.dvi, mcsim.html, and mcsim.texinfo aren't on the PLIST, the
package tries to build them anyway, at least on DragonFly. This modifies
the documentation makefile to prevent this. DragonFly doesn't have dvips
and thus the package was failing to build.
Diffstat (limited to 'math')
-rw-r--r-- | math/mcsim/distinfo | 3 | ||||
-rw-r--r-- | math/mcsim/patches/patch-doc_Makefile.in | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/math/mcsim/distinfo b/math/mcsim/distinfo index 305b7e5bef8..8a24bbb1a58 100644 --- a/math/mcsim/distinfo +++ b/math/mcsim/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.4 2011/05/09 20:59:10 asau Exp $ +$NetBSD: distinfo,v 1.5 2011/12/18 17:12:48 marino Exp $ SHA1 (mcsim-5.4.0.tar.gz) = 63a9b9fd22869f49bb92dbbf5e90e8320571b8a1 RMD160 (mcsim-5.4.0.tar.gz) = 7294cdac918fef2e0e52b4e0c226492af7423fd2 Size (mcsim-5.4.0.tar.gz) = 1840057 bytes SHA1 (patch-Makefile.in) = 9d4e0a8b716d41a6e9c046909bc69ec8ff2a9749 +SHA1 (patch-doc_Makefile.in) = 34c1c8668e8e52f6831edb468e7086ae9d83974e diff --git a/math/mcsim/patches/patch-doc_Makefile.in b/math/mcsim/patches/patch-doc_Makefile.in new file mode 100644 index 00000000000..f7ef2486959 --- /dev/null +++ b/math/mcsim/patches/patch-doc_Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-doc_Makefile.in,v 1.1 2011/12/18 17:12:48 marino Exp $ + +--- doc/Makefile.in.orig 2011-01-29 15:52:31.000000000 +0000 ++++ doc/Makefile.in +@@ -207,7 +207,7 @@ dist_mydoc_DATA = mcsim.pdf mcsim.ps + all: all-am + + .SUFFIXES: +-.SUFFIXES: .dvi .html .info .pdf .ps .texinfo ++.SUFFIXES: .info .pdf .ps + $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ |