0ca3e77ceb
Thanks to the scilab folks at INRIA for helping us get rid of 9 more patches! From the CHANGES file: Main Changes Scilab 2.5 -> 2.6 ============================== NEW FUNCTIONALITIES =================== Automatic graphic rescaling when combining 2D plots, axis handling Isometric 3D plots. Thanks to Enrico Segre 3D plots shading. Thanks to Stephane MOTTELET Error messages handling Grep function added Modeless message box added Profiling of functions execution added Real time simulation in Scicos. Thanks to Anders Blomdell Scicos diagram linearization and fixed point computation OTHERS IMPROVEMENTS =================== A more professional licence Input/Output improved (carriage return at the end of the file are not required anymore, OS independent ascii file input, handling of opened files ) More complete mexlib for MatlabV mex interface. Many bug corrected in integer types manipulation API improved, many examples given A better window management under KDE A better plugin interface (help, demos,...) and new Scilab functions for building and loading interfaces. Interactive demos for ODE and DAE solving added Scicos' GUI improved, customizable keyboard shortcuts added Default list, tlist and mlist display can be overloaded It is now possible to draw dashed lines in color. Background now work with postscript driver. Easiest argument passing to plot2d, plot3d,... GIF driver bugs fixed. INCOMPATIBLITY ============== help and scicos palettes handling have changed. Fraclab toolbox has been moved to the contributions part and is no more included in the package The Communication Toolbox (geci) is now obsolete. It will be removed in next release. Use PVM instead.
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
$NetBSD: patch-aa,v 1.6 2001/04/08 16:25:28 dmcmahill Exp $
|
|
|
|
fix install target.
|
|
|
|
--- Makefile.in.orig Mon Mar 26 02:59:13 2001
|
|
+++ Makefile.in Thu Mar 29 07:54:47 2001
|
|
@@ -1,4 +1,9 @@
|
|
SHELL = /bin/sh
|
|
|
|
+prefix=@prefix@
|
|
+exec_prefix=@exec_prefix@
|
|
+bindir=@bindir@
|
|
+
|
|
+
|
|
binary:
|
|
@if test -f .binary; then \
|
|
@@ -151,19 +156,15 @@
|
|
|
|
install:
|
|
- @if test `pwd` != ${LIBPREFIX}/$(SCIBASE); then \
|
|
- touch .binary; \
|
|
- strip $(SCIDIR)/bin/scilex; \
|
|
- (cd tests; make distclean); \
|
|
- (cd examples; make distclean); \
|
|
- (cd .. ; tar cf - $(BINDISTFILES) | (cd ${LIBPREFIX}; tar xf -)); \
|
|
- (cd ${LIBPREFIX}/$(SCIBASE); make); \
|
|
- $(RM) .binary; \
|
|
- fi
|
|
- $(RM) /usr/bin/scilab
|
|
- ln -fs ${LIBPREFIX}/$(SCIBASE)/bin/scilab /usr/bin/scilab
|
|
- $(RM) /usr/bin/intersci
|
|
- ln -fs ${LIBPREFIX}/$(SCIBASE)/bin/intersci /usr/bin/intersci
|
|
- $(RM) /usr/bin/intersci-n
|
|
- ln -fs ${LIBPREFIX}/$(SCIBASE)/bin/intersci-n /usr/bin/intersci-n
|
|
+ touch .binary
|
|
+ strip $(SCIDIR)/bin/scilex
|
|
+ cd tests && $(MAKE) distclean
|
|
+ cd examples && $(MAKE) distclean
|
|
+ cd .. && tar cf - $(BINDISTFILES) | (cd ${prefix}; tar xf -)
|
|
+ cd ${prefix}/$(SCIBASE) && $(MAKE)
|
|
+ $(RM) .binary
|
|
+ for f in ${prefix}/${SCIBASE}/bin/* ; \
|
|
+ do \
|
|
+ ln -fs $$f ${bindir}/`basename $$f` ; \
|
|
+ done
|
|
|
|
uninstall:
|