diff options
author | markd <markd@pkgsrc.org> | 2010-04-05 22:52:23 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2010-04-05 22:52:23 +0000 |
commit | aab80866f5f9b5b057bc223de1babad71ba82eda (patch) | |
tree | 94902ecf1d587d5c5476304c5ecea9c45fc306bb /graphics/ivtools/patches/patch-bg | |
parent | a983c33bf2be72ef6a60058790d2c1a05ee122e4 (diff) | |
download | pkgsrc-aab80866f5f9b5b057bc223de1babad71ba82eda.tar.gz |
Update to ivtools 1.2.8
leaf node. Adds DESTDIR support. Drop maintainership.
Nov. 21st, 2009 ivtools-1.2.8
- significant work on keeping up with gcc and libstdc++. A wrapper
for stdio.h was inadvertently getting pulled in by /usr/include
files, causing a lot of trouble. Now builds with gcc-4.4 on Ubuntu
9.10.
August 25th, 2009 ivtools-1.2.7
- series of memory leak checking commands
- added reference counting to OverlayView's (ComponentView's) referred from
AttributeValue's (#define RESOURCE_COMPVIEW)
- fixed attrname func.
- fixed stddev func.
- added BooleanType to NumFunc promotion method.
- fixed graphdraw copy/paste of graph fragments
- new SocketObj for use comterp
- fix behavior of symbol manipulating funcs, by using internal bquote.
- port to Ubuntu Heron
- applied (most of) patch to build on Fedora 10 contributed by John Heidemann
- balance of changes to support ipl-1.0.4
July 9th, 2008 ivtools-1.2.6
- Debian contributed patch for iostreams backward compatibility
- bug fix for dispatcher.c contributed by Damon Permezel
- add mute command to comterp
- balance of changes to support ipl-1.0.2
March 4th, 2008 ivtools-1.2.5
- overall evolution to support use by ipl-1.0.1 (see
http://sf.net/projects/ipl for further details)
Diffstat (limited to 'graphics/ivtools/patches/patch-bg')
-rw-r--r-- | graphics/ivtools/patches/patch-bg | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/graphics/ivtools/patches/patch-bg b/graphics/ivtools/patches/patch-bg new file mode 100644 index 00000000000..c14ae80b53a --- /dev/null +++ b/graphics/ivtools/patches/patch-bg @@ -0,0 +1,19 @@ +$NetBSD: patch-bg,v 1.1 2010/04/05 22:52:23 markd Exp $ + +--- config/InterViews/Imakefile.orig 2003-10-22 18:13:37.000000000 +0000 ++++ config/InterViews/Imakefile +@@ -8,11 +8,11 @@ IvmkcmTargets($(PACKAGE)) + + #if !InstallRelative + install:: +- MakeDir($(CONFIGDIR)/InterViews) +- $(INSTALL) -c $(INSTINCFLAGS) *.cf $(CONFIGDIR)/InterViews ++ MakeDir($(DESTDIR)$(CONFIGDIR)/InterViews) ++ $(INSTALL) -c $(INSTINCFLAGS) *.cf $(DESTDIR)$(CONFIGDIR)/InterViews + + uninstall:: +- (cd $(CONFIGDIR)/InterViews; $(RM) *.cf) ++ (cd $(DESTDIR)$(CONFIGDIR)/InterViews; $(RM) *.cf) + #endif + + |