pkgsrc/graphics/ivtools/patches/patch-bg
markd b68e301ec1 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)
2010-04-05 22:52:23 +00:00

19 lines
576 B
Text

$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