Commit graph

1425 commits

Author SHA1 Message Date
drochner
f45d2126e2 update to 1.0.57
changes:
-allow executing expressions from the command line
-secure mode
-More intelligent parsing
-optimizations, fixes, documentation improvements
2005-01-21 15:28:36 +00:00
adam
ff69c1f99d Changes 1.53
- bug fix in handling of -pi (previous version changed constant pi)
- bug fix in division of integer vectors with negative coefficients
- for loop can now handle >= 2**32 iterations
- fixed bug which occurred in V 1.50 while parsing certain
  parenthized expressions
2005-01-21 09:50:20 +00:00
drochner
7442ce5a14 update to 1.4.2, and fix Python support 2005-01-20 21:35:07 +00:00
minskim
f2cd83b8dd Update mathomatic to 11.6d.
Changes:

Some more improvement to simplification.

Displayed floating point precision reduced to 12 digits.

Allow typing just "e#" or "pi" on the command line, to give the
values for each.

Changed simplify command to prefer (1/constant)^n instead of 1/(constant^n).
It produces more efficient code and solves a problem.

Improved "code integer" command by allowing integer powers.

Improved eliminate command by trying next equation if solve fails.

"list export" now produces 100% Maxima compatible equations.

Changed "SILENT" compile time define to also remove all debugging code.
2005-01-14 14:52:44 +00:00
adam
d1111b4565 Changes 4.8:
Core simplex method and interior-point method routines were
        re-implemented and now they use a new, "storage-by-rows" sparse
        matrix format (unlike previous versions where linked lists were
        used to represent sparse matrices). For details see ChangeLog.

        Also a minor bug was fixed in API routine lpx_read_cpxlp.
2005-01-14 11:31:00 +00:00
adam
5739500a9b Fixed installation problem - now all the modules should be installed correctly, and buildlinked against fftw (not fftw2) 2005-01-13 15:41:53 +00:00
adam
0a4c703516 Changes 1.6:
* Added a new wavelet directory, with 1-dimensional and 2-dimensional
  discrete wavelet transforms.
* Added support for LQ and P^T LQ decompositions.  To find the QR
  decomposition of large systems (M>>N) use the LQ decomposition,
  solving the transpose of the original system.  This allows more
  efficient memory access, and is useful for solving large least-squares
  problems.
* Fixed a bug in the SYRK and HERK blas functions gsl_blas_{s,d,c,z}syrk
  and gsl_blas_{c,z}herk which caused invalid memory access for non-square
  matrices.
* Fixed a bug in gsl_swap_vectors which caused it to return incorrect
  results when swapping vectors with different strides.
* Corrected the error estimate for gsl_cheb_eval_n_err to use
  evaluation order instead of the approximation order.
* Improved the reliability of the gsl_sf_gamma_inc family of
  functions.
* Equal abscissae are now handled gracefully in the cspline and
  periodic cspline interpolations.
* Removed potential cancellation error in calculation of uniform
  histogram ranges.
* Improved numerical stability of integration for akima and cspline
  interpolation.
* Differential equation solvers now handle error codes returned from
  user-defined functions.
* Improved error estimates in ode-initval solvers, and provide exact
  derivatives on output.  Added new semi-implicit ode-initval solver,
  gsl_odeiv_step_rk2simp.
* Added missing function definition for gsl_sf_psi_1.
* Fixed the function gsl_sf_expint_Ei_scaled to call
  gsl_sf_expint_Ei_scaled_e instead of gsl_sf_expint_Ei_e.
* Added cumulative distribution function for exponential power
  distribution.
* The functions gsl_cdf_beta_P and gsl_cdf_beta_Q now return
  consistent results of 0 or 1 for out of range values, x<0 and x>1,
  rather than 0 for left and right tails simultaneously.
* The Jacobi eigensolvers gsl_eigen_jacobi and gsl_eigen_jacobi_invert
  have new implementations from Golub and Van Loan.
* The standard output and standard error streams are now flushed by
  the default error handler before the program aborts, in order to
  ensure that error messages are properly displayed on some platforms.
2005-01-13 15:06:25 +00:00
jlam
3588ad8a2a Move buildlink3.mk files ahead of targets as per example Makefile. 2005-01-12 22:50:20 +00:00
jlam
0e0b73913a Fix up the comment to note that we still need to unwrap some files at
post-configure time, even after the switch from buildlink2 to buildlink3.
Also, use SUBST_CLASSES instead of the custom post-configure target,
and take advantage of the fact that the "unwrap" SUBST_CLASS already
does mostly the right thing.
2005-01-12 22:49:35 +00:00
jmmv
f4cdc711e1 Update to 4.4.22:
Overview of changes in gcalctool 4.4.22

* Fixed bug #163468. Pressing "(<Del>)" would cause gcalctool to crash.

Overview of changes in gcalctool 4.4.21

* Fixed bug #157277. Entering "(" followed by Clr using the mouse to
  click on the buttons, caused a bogus character to be displayed and
  the display wasn't cleared.
2005-01-12 21:51:59 +00:00
jlam
b6b853727d Nuke USE_FORTRAN and bring the f2c handling within the mk/compiler
framework.  The list of changes include:

  * Modify compiler.mk so that "c" is always prepended to USE_LANGUAGES,
    so we no longer need to say it in package Makefiles.  Packages
    should now append to USE_LANGUAGES instead of setting it.

  * Create mk/compiler/f2c.mk which implements another pseudo-compiler
    "f2c" that may be used with any C compiler backend, e.g.

	PKGSRC_COMPILER= f2c ccache gcc

  * Teach the various "real" compiler files, e.g., sunpro.mk, mipspro.mk,
    etc., to use f2c if the native Fortran compiler isn't present.

Packages that use Fortran should now simply include the line:

	USE_LANGUAGES+=	fortran

in the package Makefile.
2005-01-12 15:31:58 +00:00
jlam
0fb4dcc225 Ensure that f2c-main.c includes config.h so that F77_DUMMY_MAIN is
defined.  This fixes the build when using f2c-f77 as the Fortran
compiler.
2005-01-12 06:02:29 +00:00
minskim
9416a40c03 Update mathomatic to 11.6c.
Changes:
- Some more touch-ups to solve routine.
- Changed uf_repeat() to skip expanding if the expression would be too big.
  This allows Mathomatic to work with huge exponents.
- Turned on "preserve_roots" option by default.
- Improved sum and product commands.  Allow counting down.
- Improved solve routine and removed display of useless messages.
- Added a fix to the limit command.
- Moved "source.txt" into "README.txt".
- Added code to simplify (inf+a) to (inf) generally.
- Fixed minor bug in calculate command.
- Minor fixes to elim_k().
- Improved limit command.
- Made all recursive functions in the source code static.
  Most functions never used globally defined as static.
- Improvement in command argument parsing.
- Added extrema command.
- Improved output of roots command.
- Fixed minor bug caused by "preserve_roots" option.
- Made file "am.htm" valid HTML.
- Simplification improved.
2005-01-08 07:09:50 +00:00
wennmach
9688d77316 Add patch-ab (forgotten in the previous commit - thanks to
wiz for notifying me).
2005-01-03 15:38:05 +00:00
wennmach
8e7b4963b9 The `DZLAUX' routines were still missing from the library. 2005-01-03 15:33:55 +00:00
minskim
18ade915f9 Add missing dependencies (pkgconfig, libgnomecanvas) and bump
PKGREIVISION.
2005-01-01 16:37:55 +00:00
kristerw
508d6d88a6 Update xeukleides to 1.0.0 using patches provided by Torsten Sadowski
in PR pkg/28745.

Changes since 0.9.0 include:
* Bugs concerning `trace' command and `triangle' function fixed.
* Strings may now be enclosed in dollar signs ($).
* Variable names may now contain underscores (_) and single quotes (').
* New `strokes' command.
* New `label' command.
* Enhancement of `arg' function.
* Enhancement of `draw' command.
* New `dot' angle mark.
* Various new numerical functions: `min', `max', `clamp', `sign', `ceil',
  `floor', `round'.
* New ternary test operator, logical operators and comparison operators.
* Improvement of `interactive' command.
* Improvement of triangle and quadrilateral assignments.
* Minor bug fixes.
2004-12-31 13:13:32 +00:00
kristerw
df135dcd28 Update eukleides to 1.0.1 using patches provided by Torsten Sadowski
in PR pkg/28746.

Changes since 0.9.0 are unknown.
2004-12-31 12:36:44 +00:00
wiz
4199034f74 Add and enable p5-Math-Random. 2004-12-29 01:19:56 +00:00
wiz
8c5d81cf60 Initial import of p5-Math-Random-0.67 from pkgsrc-wip, packaged by imil.
This module generates a variety of random numbers. Capabilities of wide
interest include the generation of:
. uniform numbers between 0 and 1 (or user chosen boundaries)
. random integers between user specified bounds
. random permutations of a list (shuffle a deck of cards)
2004-12-29 01:19:13 +00:00
reed
e117eda090 Bump PKGREVISIONs due to libtiff update.
Some BUILDLINK_RECOMMENDED bumps done also.

(If I missed any, please let me know -- and let me know a good
way to automate this.)
2004-12-28 23:18:15 +00:00
wiz
6201b719d4 Remove ancient version of gnumeric, we have two newer versions
(in separate packages) in pkgsrc now.
2004-12-27 11:28:04 +00:00
minskim
0289f78858 Update mathomatic 11.6.
Changes:
  - Many minor improvements made, none of which are worth mentioning by
    themselves.
  - Fixed all message strings with a variable listed in them.
  - Added iteration option to calculate command.
  - Trimmed set command of fat.  Unnecessary messages removed.
  - Removed all occurrences of "usage_flag".
  - Usage info is now displayed everytime a command returns with error.
  - Allow parsing of hexadecimal constants.  Preceed hex numbers with
    "0x".
  - There may be parsing bugs.  Systems using older versions of the GNU
    libraries (specifically strtod(3)) will not allow hexadecimal input.
  - Added limit command.
  - Trapped 0^(negative number).  It previously produced junk.
  - Allow solve routine to produce infinity as an answer.
  - Some commenting and fixing done to solve routine.
2004-12-26 06:19:11 +00:00
wiz
42c628194b Update to 2.11.10.1. Changes since 2.11.10:
Fixed a bug reported by the sourceforge user: cedars where:

  ln(exp(6)) == 3         /* WRONG!!! */

incorrectly returned 1.  This bug was fixed by Ernest Bowen
The regression test was expanded to cover this issue.

Added minor improvements to hash regression testing of pi().

Fixed "help script" and the calc man page regarding the requirement
of -f to be the last -flag in shell script mode.  Further clarified
the meaning and placement of the -f flag.

Moved issues with chi.cal intfile.cal into a "mis-features" section
of the BUGS file.  See "help bugs" or the BUGS source file for details.

Added the bug about:

  calc 'read ellip; efactor(13*17*19)'

to the BUGS file.  See "help bugs" or the BUGS source file for details.
Anyone want to track down and fix this bug?
2004-12-26 01:33:40 +00:00
jmmv
c33d2074af Adjust dependencies after ocaml has been splitted into three different
packages: ocaml, ocaml-graphics and labltk.  Bump PKGREVISION.
2004-12-24 17:21:01 +00:00
wiz
50a0a49108 Add and enable gnumeric14. 2004-12-23 10:49:51 +00:00
drochner
074515746c add a pkg for the new gnumeric-1.4
We might replace the gnumeric-1.2.x pkg eventually. Can't do this now
because the Python plugin isn't built for some reason, so this would
be a regression. (Don't have time to fix this right now.)
2004-12-22 12:08:25 +00:00
wennmach
1b87c6169a Make liblapack contain routines for all types (real, double, complex16,
and complex). Due to an error in the previous patch-aa, liblapack only
contained the complex16 routines.
Bump PKGREVISION.
2004-12-22 10:17:28 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-20 11:30:55 +00:00
minskim
c684a9b166 Honor LIBOWN and LIBGRP. 2004-12-19 19:28:43 +00:00
minskim
920cb40daf This package uses intltool; include intltool/buildlink3.mk. 2004-12-17 22:09:51 +00:00
adam
6dd308ee57 Changes 2.1.64:
* Bug fixes
2004-12-05 11:17:54 +00:00
adam
eaa1293a52 Changes 2004.11.16:
* initial econometrics toolbox
* updated protein databank (extra/pdb) functions
* new functions: wavread wavwrite hann strfind randp sprandn conv2nan
* many bug fixes and improvements
2004-12-05 09:03:42 +00:00
wiz
9a846efb79 Note that guppi is no longer maintained (in a comment). 2004-12-04 18:19:49 +00:00
taca
05a0ff5ab1 Switch to use RUBY_DLEXT as suffix of extention library. 2004-12-04 17:20:46 +00:00
wiz
bdbed82c03 Bump BUILDLINK_DEPENDS because of change in guile dependency. 2004-12-04 16:23:08 +00:00
wiz
68322e60cf Convert to use guile-1.6. Bump PKGREVISION. 2004-12-04 16:22:39 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
wiz
0f06d106c7 Reset maintainer, mail could not be delivered. 2004-12-03 13:56:26 +00:00
wiz
a5aa32988c Update to 1.0.2:
* Fixed precedence of '-' (thanks to Torsten Landschoff)
* Added manpage (ditto)
2004-12-01 20:37:09 +00:00
minskim
91fc8e4b8e Update mathomatic to 11.5c.
Changes:
  - Added loading of $HOME/.mathomaticrc on startup.
    Set options go there.
  - Added undocumented switch "-t" which sets test mode.
    Only used with "make test".
  - Wrote and added "matho-pascal" program to primes directory.
  - Allow "=" in set command.
  - Improved uf_repeat() and modulus simplification.
2004-12-01 04:06:03 +00:00
wiz
4ce264687e Bump PKGREVISION for removal of db3 buildlink3.mk file from
GConf's buildlink3.mk file. Bump BUILDLINK_DEPENDS where appropriate.
2004-11-30 18:26:39 +00:00
adam
14325ea8b6 Changes 4.7:
Now GLPK supports free MPS format. Two new API routines
        lpx_read_freemps (to read problem data in free MPS format) and
        lpx_write_freemps (to write problem data in free MPS format)
        were added. This feature is also available in the solver glpsol
        via new command-line options --freemps and --wfreemps. For more
        details see the GLPK reference manual.

        API routines lpx_read_cpxlp and lpx_write_cpxlp for reading and
        writing problem data in CPLEX LP format were re-implemented to
        allow long symbolic names (up to 255 characters).

        The following three modules were temporarily removed from the
        GLPK distribution due to licensing problems: DELI (an interface
        module to Delphi), GLPKMEX (an interface module to Matlab), and
        JNI (an interface module to Java).
2004-11-30 15:58:39 +00:00
dmcmahill
1ee3e8905a Add dependency on lang/ocaml for those systems which ocamlopt is supported
on.

Addresses PR pkg/28410 by sutre at labri dot fr.  Some patches were supplied
in the PR, the PLIST fix is from me.
2004-11-29 22:05:08 +00:00
adam
a1782a0c8a Changes 1.1.9:
Algorithmic changes
* Input of numbers in bases 2, 4, 8, 16 and 32 is now done in linear bit
  complexity as opposed to O(N^2). Useful for all kinds of persistency.

Implementation changes
* Fixed several bugs in the integer input and output routines that could be
  blamed for random crashes in the following cases: output in base 32 for
  quite large numbers, input in base 2 for fixnums and input in base 3 for
  fixnums on a 64 bit target.

* Fixed crash when radix specifiers were used in input streams.
* Speed up on x86_64 and ia64 by adding some inline assembly.

Other changes
* Fixes for compilation on MacOS X and little endian Mips.
2004-11-29 08:47:29 +00:00
jlam
40377c791f Remove pre-buildlink and post-buildlink as part of getting pkgsrc ready
for pkgsrc-2004Q4.  The "buildlink" phase was removed for the last branch,
and this is the final cleanup.  "post-buildlink" is now "post-wrapper".
2004-11-28 19:19:51 +00:00
taca
eb48f11ef9 Oops, I forgot to commit these files. 2004-11-28 07:29:45 +00:00
taca
d5638b9488 Update ruby-gsl pacakge to 0.2.0 migrating to use new Ruby framework.
0.2.0: using GSL 1.5
       sorting vectors
       fixes in Vector and Linalg_complex
       check if complex_householder_hv is available
       check for Cygwin
       faster MonteCarlo implementation
       more and renamed constants (MKS -> MKSA, CGS -> CGSM)
       better (meaning more sensible) error handling
       fixed initialization bug in Spline
       more samples
2004-11-27 16:27:45 +00:00
taca
6c49a73a6a Update ruby-bitvector package to 0.1.7 migrating to use new Ruby framework.
Changes are seems to miscellaneous bug fixes.
2004-11-27 16:26:09 +00:00
taca
56fa41661b Update ruby-bigfloat package to 1.2.1 migrating to use new Ruby framework
and mark this only for ruby16.  ruby18 provide BigDecimal class as a
successor.

Changes are unknown.
2004-11-27 16:20:25 +00:00
gson
78ceb94a97 Add and enable p5-Math-FFT. 2004-11-27 12:53:15 +00:00
gson
98dcbd7f3c Initial import of p5-Math-FFT 0.25.
Math::FFT is a Perl module for calculating Fast Fourier Transforms.
2004-11-27 12:50:38 +00:00
adam
ec0da1b7c9 Changes 2.1.63:
* Bug fixes
2004-11-25 12:59:21 +00:00
adam
e2d3072c3e Changes 0.7.1:
* Only use unicode character if available in the used font
  Fixes plus sign not displayed correctly in keypad, and wide keypad
* Do not round exact integers not in exponential format.
  Fixes display of large numbers in non-decimal number bases * Fix crash on systems, such as amd64, where size_t is not long int
* Do not update plot data when not changed
* Rearrange plot dialog and make x variable separate for each plot
  function
* Generate vector function
* Fix some cases with nested trigonometric functions by adding
  option to set default angle unit to none, to allow angle unit in argument
* Try with assumptions set to unknown in solve function if not successful
* Be more picky in comparisons with units
* Fix comparison of unit with unknown
* Fix 0.5!
2004-11-25 10:03:30 +00:00
minskim
6f781c94ba Update mathomatic to 11.5b.
Changes:
  - Made HTML mode ("mathomatic -h") not use readline.
  - Added "set true_modulus" option.
  - Improved output of roots command.
  - Code cleanup.
2004-11-24 14:52:28 +00:00
markd
01d963cba0 Make bulk build happy by fixing up the rpath. Not actually an issue in
normal operation as the binary is always called from a wrapper script
that sets LD_LIBRARY_PATH.
2004-11-24 10:14:10 +00:00
dmcmahill
af30f79287 substitute in the complete path to the C and C++ compilers to the mkoctfile
script.  This is needed if you want to use mkoctfile once the package is
installed.  For example, on NetBSD-1.6* systems, it is important to point
to the gcc3 package tools instead of the base system compilers.
2004-11-24 00:54:10 +00:00
wiz
37497fcead USE_LANGUAGES= c++ 2004-11-22 21:02:33 +00:00
markd
fd677b6048 Find new location of libR.so. Bump PKGREVISION.
Fixes PR pkg/28371
2004-11-21 05:31:03 +00:00
jmmv
835250351d Bump PKGREVISION due to security fixes in libxml (dependency adjusted to
1.8.17nb3).
2004-11-20 22:10:22 +00:00
adam
d13c61d1c5 Added qalculate 0.7.0 2004-11-19 12:32:18 +00:00
adam
4b17cb150f Qalculate! is a modern multi-purpose desktop calculator for GNU/Linux.
It is small and simple to use but with much power and versatility underneath.
Features include customizable functions, units, arbitrary precision, plotting,
and a graphical interface (GTK+) that uses a one-line fault-tolerant expression
entry (although it supports optional traditional buttons).
2004-11-19 12:30:07 +00:00
markd
c44de9fe40 Update R to 2.0.1
Changes 2.0.1:
This is a maintenance version mainly to fix a number of minor bugs and
issues. Some rather nasty bugs were Windows-specific.

Changes 2.0.0:
Many things have changed since 1.0. The R language has acquired namespaces,
exception handling constructs, formal methods and classes, much improved
garbage collection, generalized I/O via connection objects, and
considerable improvements in the graphics area. The user workspace has been
reorganized, and so has the set of packages that ship with R. Several
"recommended packages" deemed indispensable in a statistical system are
bundled. In addition, there has been a large number of more specific new
functions, tweaks, and bugfixes.
2004-11-18 12:31:29 +00:00
jlam
43ac8c39e1 Replace USE_GCC_SHLIB with "USE_LANGUAGE=c c++" (the latter implies the
former) for applications that are known to require C++.
2004-11-13 22:04:52 +00:00
jlam
5e5ac5cef9 USE_BUILDLINK3 is a yes/no variable. 2004-11-13 21:28:27 +00:00
kristerw
5d987fb870 Include mk/pthread.buildlink3.mk to make this pkg build on NetBSD 1.6. 2004-11-13 13:18:07 +00:00
minskim
334ea52c17 Update mathomatic to 11.5.
Changes:
  - Using "memmove()" instead of deprecated "bcopy()".
  - Added "tests/tutor.in", which is an incomplete Mathomatic tutor.
  - Many improvements to scripts in the tests directory.
  - Removed "calculate factor" option.
  - Code cleanup.
  - Added more modulus simplification.
  - Simplify ((a%n)*integer+b)%n to (a*integer+b)%n generally and completely.
  - real^complex and complex^complex are now approximated.
2004-11-10 16:47:20 +00:00
wiz
d380d08140 Depend on gtl0 instead of gtl; gtl will be updated in a minute.
Bump PKGREVISION.
2004-11-02 20:34:03 +00:00
jdolecek
d3c56462a3 adjust for rename of most php4-* packages to php-* 2004-10-31 21:46:40 +00:00
jdolecek
ec3c63fd71 remove php4-* extension packages, replaced by php-* packages, which support
PHP5 too
2004-10-31 21:20:08 +00:00
jdolecek
52c1980501 new PHP extension module framework, which makes it possible to build
individual PHP extension packages with either PHP 4.x or PHP 5.x

convert existing php4-* packages to this framework and import as php-*
2004-10-31 19:30:29 +00:00
minskim
a9901600ba Update mathomatic to 11.4d.
Changes:
  - Removed obsolete short variable name code and bumped up "MAX_VARS" to 500.
  - Fixed problem with conflicting names and code for "cpow()" and "cexp()".
    Renamed to "complex_pow()" and "complex_exp()".
2004-10-30 15:07:01 +00:00
dmcmahill
cd83c9333a Update to octave-forge-2004.09.09. The most notable change is that this
version now works with octave-current-2.1.59 which is what's currently
in pkgsrc.  Other than than, many minor bug fixes.
2004-10-30 06:56:04 +00:00
minskim
384ddcd4ea Update mathomatic to 11.4c.
Changes:
  - Code cleanup.  Polynomial division routine is now very easy to use.
  - Renamed "WINDOWS" define to "CYGWIN".
  - Added "set preserve_roots" option.
  - Added modulus solving.
2004-10-20 02:07:56 +00:00
tv
dc99bb80f2 Update linkage to libltdl (via guile{,14}), which is now its own package.
Unfortunately, guile{,14}/buildlink3.mk directly includes it, and I don't
know which dependencies actually need libltdl, so it was a recursive bump.
Hopefully this recursive inclusion can be ripped out of
guile{,14}/buildlink3.mk at some point and bubble down to dependencies that
actually use libltdl, avoiding this headache in the future....
2004-10-15 14:50:05 +00:00
minskim
27283744d3 Update mathomatic to 11.4b.
Changes:
  - Added "code integer" command, which outputs working C code with integer
   variables.
  - Changed makefile to use libncurses instead of libcurses.
  - Added more simplification rules for modulus.
2004-10-14 13:43:26 +00:00
jmmv
56c988d63f Update to 4.4.20: some fixes and updated translations. 2004-10-12 18:39:44 +00:00
jlam
17c3aafac1 * Make PKGSRC_TOPDIR a private variable by renaming it to _PKGSRC_TOPDIR,
as it's only used internally by bsd.prefs.mk.

* Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR.
  Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile
  than the old method of stripping off the last two components of
  ${.CURDIR}.  PKGSRCDIR may now be used after bsd.prefs.mk is defined.

* Change all references to _PKGSRCDIR to PKGSRCDIR.
2004-10-07 02:01:37 +00:00
minskim
bc51244960 Update mathomatic to 11.4.
Changes:
Changed sum and product commands to not create another equation if the
result is a constant.  If the result is a constant, it is just displayed.

Mathomatic now approximates -1^(2^.5) and the like.

Added modulus (%) operator.

Added simplification of univariate modulus expressions.

Changed univariate modulus simplification to multivariate, integer only
simplification.
2004-10-04 21:32:28 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
wiz
0c4c6417e2 This seems to need perl for building; add USE_PERL5=build.
Noted by bulk build.
2004-09-30 12:52:36 +00:00
wiz
4c8ff4a7f1 Update to 4.1:
v4.1
  COSMETIC/USABILITY IMPROVEMENTS
  - The File->Description dialog now updates automatically if you leave it open
    while loading a new pattern file. Also, any previous description dialog is
    closed when you open a new one.
  - GtkLife now issues a warning dialog if it appears the application was not
    propery installed (i.e., "make" without "make install").
  - GtkLife now issues a warning dialog if the configured pattern collection
    is not found.

  BUG FIXES
  - Fixed a bug that prevents the start/stop button from changing color when
    Gtk+ has debugging enabled (thanks to James Gregory for reporting).
  - Fixed stair-stepping effect when drawing diagonal lines.

  MISCELLANEOUS
  - Better ChangeLog :-)

v4.0
  NEW FUNCTIONALITY
  - The world size has been bumped up to 1 million x 1 million.
  - Added View->Find Active Cells, to locate a live (and preferably active)
    region and center on it.
  - gtklife has a new default file format, GLF, which is similar to RLE.
  - gtklife can now handle multiple file formats: Life 1.05 (the original
    format), Life 1.06, RLE, XLife, and GLF. File type is auto-detected when
    loading. Information on file formats was added to the "File Handling"
    section of the documentation, and a page was added giving detailed
    information on the GLF format.
  - You can now set a per-session pattern directory
    (File->Change Pattern Collection) as well as a default pattern directory
    (Preferences/File/Default Pattern Collection).
  - Sidebar patterns can now be bundled into sub-directories. Directories will
    be displayed with trailing slashes. Click on a directory name to display
    its contents in a clickable list beneath the sidebar.
  - You can now specify a pattern collection directory on the command line
    (previously only individual patterns could be loaded via command line).
  - The pattern description has been made unbounded in length and width. An
    error will occur if you attempt to save a pattern with a too-large
    description to a LIF or RLE pattern file.

  COSMETIC/USABILITY IMPROVEMENTS
  - Mouse wheel over the description text box now scrolls the description
    (previously you had to hover the mouse over the scrollbar).
  - The color picker in Preferences now uses the contents (if any) of the
    corresponding text entry as its starting color.
  - Recent files in the File menu now display full path as a tooltip.
  - Sidebar scrollbar is now only displayed when needed.

  PATTERN COLLECTION CHANGES
  - A new pattern collection, JSLife by Jason Summers, is now available as an
    option. The sidebar can be set to display the original LifeP, JSLife, or
    a custom collection of your own.
  - Patterns were reorganized into a hierarchical format.
  - Patterns were renamed to be more human-readable.
  - Patterns were converted to GLF for speed of loading.
  - Pattern descriptions were reformatted.
  - Paul Rendell's Turing Machine pattern was added to the LifeP collection.
  - Added a longer description to the Unit Cell pattern.
  - Now that we have a command to locate active cells, re-centered the Jaws
    pattern.
  - Note: Due to a minor change in the config file, any custom pattern
    directory that you have chosen previously will be reset.

  DOCUMENTATION IMPROVEMENTS
  - Fixed broken link to the Scientific American article in help.

  MISCELLANEOUS
  - The install process now deletes any existing patterns bundle before copying
    over the new patterns.
  - Added new nifty program icons based on the "pulsar".
2004-09-30 09:38:24 +00:00
minskim
01cfe1c349 Update mathomatic to 11.3f.
Changes since 11.3c:

Improved eliminate command error handling.

Added "eliminate all" command.

Code cleanup.

Man pages for the prime number tools were contributed
by David Moreno Garza.  Many thanks.

Renamed the Mathomatic directory in the source tarball to
"mathomatic-`cat VERSION`".

Added several comments to the source code.

Renamed prime number tools to "matho-*".

Improvement to full simplification.

Tried something new with uf_simp() that fixed a problem with Mathomatic
solve complicating expressions.

Minor bugfix to eliminate command.
2004-09-25 00:40:53 +00:00
adam
2d487b369e Changes 2.1.59:
* bug-fixes and clean-ups
2004-09-23 13:03:41 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
jmmv
8f4872c5ac Update to 4.4.18: This version corresponds to GNOME 2.8.0.
* Generated tarball distribution for GNOME 2.8 (Final).
2004-09-21 17:10:26 +00:00
wiz
f0774ebc31 Update to 2.11.10, and drop maintainership.
This release adds changes to better support compiling under cygwin,
improved custom function support, including the addition of the
pmodm127 example and config("compile_custom") and config("allow_custom")
calls, and a missing display help file. It fixes configuration
state hashing, document typos, calc -d (to disable printing of the
leading ~), and some compilation warnings reported under OS X.
2004-09-21 00:10:01 +00:00
dmcmahill
ce00bd76c1 fix botched patch and distinfo. Should fix bulk build lossage. 2004-09-14 22:20:16 +00:00
dmcmahill
548db0991b - add missing UNWRAP_FILES to clean up some buildlink references in some
installed files.

- libtoolize a few more lines which seem to have been missed in the original
libtoolization.

- enable loading of shared objects which lets the various .oct files installed
by octave-forge actually work instead of just the .m files.
2004-09-11 21:47:43 +00:00
wiz
0b2948aa97 Add libmatheval (hi drochner!) 2004-09-05 18:42:15 +00:00
dmcmahill
8fa98ae5e9 Turn off the "fixed" module for now as it won't compile with the toolchain
in NetBSD-current.  It may not be too hard for a c++ programmer to fix.
Should address recently noted bulk build failures.
2004-09-03 11:58:48 +00:00
jlam
ca70938428 Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,
which are the full option names used to set rpath directives for the
linker and the compiler, respectively.  In places were we are invoking
the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is
inserted in case the flag is a word, e.g. -rpath.  The default values
of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the
compiler that you use.  They may be overridden on a ${OPSYS}-specific
basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG,
respectively.  Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-08-27 06:29:06 +00:00
drochner
da5578aca5 import libmatheval-1.1.1, a
Library for evaluating mathematical expressions
2004-08-24 12:36:29 +00:00
drochner
aa4c6d9aa5 update to 23.3
changes:
Bug fixes and addition of weakreferences (weakref module)
2004-08-24 11:29:33 +00:00
dmcmahill
6b2aee0f00 add and enable octave-forge 2004-08-14 13:30:38 +00:00
dmcmahill
6319d51339 import octave-forge-2004.07.07
The octave-forge project contains functions for Octave which are not in
the main distribution.  While the main Octave distribution is
conservative about accepting new functions and changes, octave-forge is
very open.  As a result, be prepared for some lower quality code and
more rapidly changing interfaces to the functions in octave-forge.
2004-08-14 13:29:54 +00:00
dmcmahill
da372e20b8 LTCONFIG_OVERRIDE is no longer needed 2004-08-14 01:34:50 +00:00
dmcmahill
9081266196 add octave.mk that can be used by other pkgs to find some paths used by octave 2004-08-14 01:31:56 +00:00
recht
16152f8438 Add/use buildlink3.mk files. 2004-08-13 08:57:14 +00:00
dmcmahill
9e92dbac8f add bl3 file 2004-08-13 00:58:34 +00:00
dmcmahill
d08d2dee55 USE_LANGUAGES= c c++ fortran
and also add GCC_REQ=3.0 as this doesn't build correctly with my 2.95.3
on NetBSD/alpha.
2004-08-13 00:53:27 +00:00
dmcmahill
78f8558b71 add bl3 file 2004-08-13 00:51:10 +00:00
drochner
2c5700ad96 update to 1.5
notable changes besides bugfixes are:
** Multifit routines now handle iterations where |f| is already
minimised to zero, without division by zero.
** Numerical derivatives should now be calculated using the
gsl_deriv_forward, gsl_deriv_central and gsl_deriv_backward functions,
which accept a step-size argument in addition to the position x.  The
original gsl_diff functions (without the step-size) are deprecated.
** The tridiagonal matrix solvers gsl_linalg_solve_symm_tridiag,
gsl_linalg_solve_tridiag, gsl_linalg_solve_symm_cyc_tridiag,
gsl_linalg_solve_cyc_tridiag now use the GSL_ERROR macro to report
errors, instead of simply returning an error code.  The arguments to
these functions must now use exact lengths with no additional
elements.  For cyclic systems all vectors must be of length N, for
tridiagonal systems the offdiagonal elements must be of length N-1.
** The singular value decomposition routines gsl_linalg_SV_decomp and
gsl_linalg_SV_decomp_mod now handle the SVD of a column vector (N=1,
arbitrary M), which can occur in linear fitting.
** Added Stefan-Boltzmann constant and Thomson cross section to
physical constants
2004-08-06 19:29:49 +00:00
agc
8e2b7867ea Make this package gcc-3.3 friendly 2004-08-04 20:44:34 +00:00
minskim
2933f80830 Update mathomatic to 11.3c.
Changes:

"factor number" command now accepts more than one integer.

Added file "mathomatic.ico".

Added temporary fix for 64 bit longs.

Added file "VERSION" which contains the version number of Mathomatic.
"makefile" modified.

Renamed "lgpl.txt" to "LICENSE.txt".

"make install" now installs all HTML files in "/usr/local/doc/mathomatic".

Added compile-time define "TIMEOUT_SECONDS".
Useful for limiting the amount of time Mathomatic can run as a CGI.
2004-08-04 19:59:59 +00:00
minskim
44a8f13886 Enable pkgviews installation. 2004-07-30 13:57:25 +00:00
wiz
e1319e6660 Add and enable ltm. 2004-07-30 13:50:07 +00:00
wiz
2e1e1dd290 Initial import of ltm-0.30:
LibTomMath provides highly optimized and portable routines for a
vast majority of integer based number theoretic applications
(including public key cryptography). LibTomMath is not a cryptographic
toolkit itself but it can be used to write one [Used in LibTomCrypt
for RSA, DH and ECC public key routines].
2004-07-30 13:49:40 +00:00
minskim
9642bfa73d Update mathomatic to 11.3b.
Changes:
Proper exit after error reading files on the command line.

Added code to preserve roots of integers, if the result is irrational.

Fixed "calculate >filename".

Made "+/-2^.5" work as expected.

Code cleanup.

Full simplify added for every loop of taylor command.

Removed "replace temp" option, so that the "temp" variable can be renamed.
2004-07-26 17:37:02 +00:00
drochner
5373381b76 +gtklife,mapm 2004-07-22 17:37:23 +00:00
drochner
9373f64fde import mapm-4.9.2, another Arbitrary Precision Math library
(pretty complete, what I'm missing is just better rounding and
conversion support)
2004-07-22 17:33:28 +00:00
drochner
488afb4633 add gtklife-3.0, like xlife, just nicer and with a pattern library 2004-07-22 17:20:23 +00:00
drochner
8563856e16 USE_BUILDLINK3, to make it build even if ncurses is installed 2004-07-22 17:11:35 +00:00
recht
4150812b27 add python as category
ok'd a while back at pkgsrcCon by agc and wiz
2004-07-22 09:15:59 +00:00
wiz
8eec0a51e6 unused. 2004-07-19 13:48:09 +00:00
wiz
8e3dbfa74b Update to latest available tarball, use DIST_SUBDIR.
Changes unknown.
2004-07-19 13:47:51 +00:00
dmcmahill
04b5aa0a34 repair distinfo after getting rid of DIST_SUBDIR. Reported in PR 26334
by Robert Elz.
2004-07-15 14:39:05 +00:00
dmcmahill
9d3ebd2e9e update to scilab-3.0
Main Changes Scilab 2.7 -> 3.0
                     ==============================
NEW FUNCTIONALITIES
===================
- continue instruction added
- [a(i,j),b(..),..]=foo(..) syntax is now handled
- arpack algorithms for sparse matrix eigenvalues/eigenvectors computation added
- Levenberg-Marquardt algorithm of Minpack used to define function lsqrsolve
- New graphics mode improved
- beta and legendre function added (thanks to B Pincon)
- Scicos has been extended to handle non causal systems description (supported by RNTL)
- Matlab to Scilab translator has been re-written, and extended to current Matlab syntax.

OTHERS IMPROVEMENTS
===================
- Better discontinuities handling in Scicos
- More efficient number parsing (thanks to B Pincon)
- More efficient 3D Zoom (thanks to E Segre)
- Improved scipad, shortcuts, language handling, colorization, bug fixes.. (thanks to E Segre)
- for loop variable is no more removed at the end of the loops
- figure sizes are now taken into account in Postscript export
- Windows GUI improved
- Graphic windows refresh improved under Windows
- Scilab has been adapated to IA64 architecture
- Helvetica (Arial on Windows) fonts added (corresponding font identifiers are
  from 6 to 9) (thanks to B Pincon)
- N dimensionnal matrices efficiency improved (thanks to B Pincon)
- logical expressions shortcuts handled in if
- cd, ls, clc, clf, tohome functions added
- functions with no argument can be called without () if called as a command
2004-07-15 04:00:46 +00:00
minskim
576a23327d Update mathomatic to 11.3.
Changes:
Substantial change/improvement to simplify command.

Added some more code to fix floating point inaccuracies.

Improved solving.  y=(x+1/x)^3 solves both ways, now.

Full simplify after every loop in derivative command added.

Move derivative and taylor commands to "diff.c".

Added "-m" option to Mathomatic (memory size multiplier).
It sets the size of equation spaces at run time.
2004-07-13 21:12:23 +00:00
kristerw
6d60eb0957 Fix multi-line strings, to make this build when using gcc3. 2004-07-10 18:52:27 +00:00
recht
f9cf005428 Adapt to numarray 1.0 API change. 2004-07-09 15:51:44 +00:00
recht
86865c78c3 update to 1.0
important changes:

- Ports of Numeric functions

A bunch of Numeric functions were ported to numarray in the new
libnumeric module.  To get these import from numarray.numeric.  Most
notable among these are put, putmask, take, argmin, and argmax.  Also
added were sort, argsort, concatenate, repeat and resize.  These are
independent ports/implementations in C done for the purpose of best
Numeric compatibility and small array performance.  The numarray
versions, which handle additional cases, still exist and are the
default in numarray proper.

- Faster matrix multiply

The setup for numarray's matrix multiply was moved into C-code.  This
makes it faster for small matrices.

- bug fixes

For a complete list of changes see:
http://sourceforge.net/project/shownotes.php?release_id=250453
2004-07-09 15:50:25 +00:00
wiz
62144ff6ab Annotate a comment:
# XXX: following comment still true for buildlink3?
# R does ugly things in the configure to get the default list of arguments
# for linking Fortran, which exposes the buildlink2 tricks so clean up
# afterwards
2004-07-06 22:56:32 +00:00
drochner
16443f4dc7 recognize "netbsd" as OS version 2004-07-05 10:54:16 +00:00
minskim
bbbefe1a97 Update mathomatic to 11.2e.
Changes:
  Renamed the Mathomatic executable to "mathomatic".

  Add inverse Laplace transform.  Usage: laplace inverse x

  Fixed bug in solving for zero, which occurred when there were no
  variables in the divisor.

  Some improvement in solve routine.
2004-07-04 16:38:47 +00:00
jmmv
1d320a27db Update to 1.2.13:
Andreas:
	http://bugzilla.gnome.org/show_bug.cgi?id=142219
	* Handle borders in latex export correctly (broken in 1.2.12 only)
	http://bugzilla.gnome.org/show_bug.cgi?id=142219
	* Handle borders in latex export correctly
	http://bugzilla.gnome.org/show_bug.cgi?id=143577
	* fix grid printing

Emmanuel Pacaud:
	http://bugzilla.gnome.org/show_bug.cgi?id=142212
	* In a line graph, don't use '0' if Y value is missing.

Jody:
	http://bugzilla.gnome.org/show_bug.cgi?id=141940
	* Fix MS XL crash when there are too many strings
	* xls import gradient backgrounds in chart elements
	* Restore the font selector to chart editors
	* Support series with no entry in a legend
	http://bugzilla.gnome.org/show_bug.cgi?id=142267
	* Fix drawing selection below hidden merged cells
	http://bugzilla.gnome.org/show_bug.cgi?id=103054
	* Fix xls named expression and addin import/export
	http://bugzilla.gnome.org/show_bug.cgi?id=142474
	* Use first rather than last conditional value fmt as catch-all
	* Enable implicit iteration for operators
	http://bugzilla.gnome.org/show_bug.cgi?id=143577
	* Re-enable gridline printing

Morten:
	* Fix image-inside-xls problem.
	* Improve error handling in xbase plugin.
	* Fix parser problem with single empty arg after expression.
2004-07-03 17:12:11 +00:00
drochner
c3e50eb28d don't enable gnumeric support, and bump PKGREVISION
This only worked with gnumeric-1.0.x, and depends on gnome1 structures.
gnumeric is at 1.2.x now, uses gnome2 and comes with an own plotting
package.
Should fix PR pkg/26009 by MLH.
2004-07-02 15:18:06 +00:00
wiz
59a0f9e221 Update to 2.11.9.3:
This release fixes a bug related to post incrementing, some regression failures related to compiling under cygwin, and a number of gcc compiler warnings.
2004-06-29 23:57:06 +00:00
minskim
ac24d7b58c Update mathomatic to 11.2d.
Changes:

Slight improvement to integrate and laplace commands.
Integrate/laplace x on (a+x)/(b+c) works now.

Added more examples to the documentation (am.htm).

2 to 10 times speedup for simplify command by fixing polynomial factoring.
2004-06-28 13:58:25 +00:00
recht
9afcba6b62 update to fpconst-0.7.0
The primary purpose of this release is to correct problems on big-endian
64 bit platforms. It also introduces some test code to verify that the
functions and constants work properly.
2004-06-27 22:59:48 +00:00
minskim
399b1911ba Update mathomatic to 11.2c.
Changes since 11.2:

Doubled the default amount of memory consumption to 11 megabytes.
This allows equations twice as large.

Fixed bug factoring infinity.

Slight improvement to "integrate" command.

Trap window resize signal and set number of screen columns and rows.

Code cleanup.

Fixed factoring of constants in factor command.

Added "laplace" command.

Allow "#" as a comment, as long as it is not immediately followed by
a number.

Enabled shelling out for all versions with the "!" command.

Improvement and speedup for poly_gcd() and poly2_gcd().

Slight improvement in polynomial factoring made by deleting 1 line of code.

Use getopt(3) to parse command line options.

Made "-c" and "-h" options work together.  If both are specified,
work in HTML mono mode.
2004-06-26 21:23:43 +00:00
markd
7e64f2db56 Update R to 1.9.1
CHANGES IN R VERSION 1.9.1


NEW FEATURES

    o   as.Date() now has a method for "POSIXlt" objects.

    o   mean() has a method for "difftime" objects and so summary()
        works for such objects.

    o   legend() has a new argument 'pt.cex'.

    o   plot.ts() has more arguments, particularly 'yax.flip'.

    o   heatmap() has a new 'keep.dendro' argument.

    o   The default barplot method now handles vectors and 1-d arrays
        (e.g., obtained by table()) the same, and uses grey instead of
        heat color palettes in these cases.  (Also fixes PR#6776.)

    o   nls() now looks for variables and functions in its formula in
        the environment of the formula before the search path, in the
        same way lm() etc look for variables in their formulae.


DEPRECATED & DEFUNCT

    o   Support for non-IEEE-754 arithmetic (which has been untested
        for some time) will be removed in the next full release.

    o   Direct use of R INSTALL|REMOVE|BATCH|COMPILE|SHLIB is
        deprecated: use R CMD instead.

    o   The gnome/GNOME graphics device is deprecated and will be
        removed in the next full release.

Plus Bug Fixes.
2004-06-24 11:09:05 +00:00
minskim
9f0cdb37e1 Enable pkgviews installation. 2004-06-20 20:23:29 +00:00
jmmv
a837fd61cc Include scrollkeeper's omf.mk so that help files are registered properly.
Bump PKGREVISION to 1.
2004-06-07 09:23:19 +00:00
jmmv
d8bc3af902 Use .tar.bz2 distfile; more than 3MB smaller. 2004-06-07 08:57:24 +00:00
schmonz
384af75e68 Packages no longer need to clean up *.subst.sav leftovers. 2004-06-06 04:29:17 +00:00
rh
d4f392c55d Add a buildlink3.mk file 2004-06-05 22:19:53 +00:00
rh
589ca2d34e Add and enable mpfr 2004-06-05 22:12:33 +00:00
rh
d344d8f280 Initial import of mpfr-2.0.3, a library for multiple-precision
floating-point computations
2004-06-05 22:11:38 +00:00
minskim
228ad5d1fc Update mathomatic to 11.2.
Changes since 11.1c:

Moved notification of polynomial factoring success to debug level 1 or higher.

Removed "NO_COMPLEX_ROOTS" compile-time define option.
I am thinking of making this a run-time option.

Increased security of "SECURE" compile-time define.
Absolutely no file operations are allowed or linked in.

Added check for terminal with isatty().
This allows better piping into Mathomatic.

Split up change-log ("changes.txt" and "changes_old.txt").

Changed "x!" to mean gamma(x+1) for Laplace transforms.

Fixed parsing of things like "2e#", which failed before,
thinking it was scientific notation.

Wrote "primes/twin.c", to find twin primes.

Added "help usage" command.

Allow output of "help" command to be redirected to a file.

Fixed parsing of variable names (like "pig", which didn't work right).

Added "integrate" command.

Fixed "derivative" command.

Code cleanup.

Fixed "taylor" command.
2004-06-04 03:38:29 +00:00
jschauma
78f1dc8bf9 This package already depends on ncurses, so let's just use the ncurses
library instead of termcap, which allows compilation under Linux (or other
OS that don't have libtermcap in the base system).
2004-06-02 21:08:33 +00:00
kristerw
8752a405bb Remove obsolete package, per discussion on tech-pkg. 2004-06-01 21:43:29 +00:00
minskim
101b04ee11 Enable pkgviews installation. Patches provided by Joachim Kuebart on
tech-pkg@.
2004-05-31 16:47:47 +00:00
kristerw
c49d6fa1a7 Do not explicitly force use of lang/egcs for SunOS; the buildlink
infrastructure handles compiler issues aoutomagically.
2004-05-31 16:43:45 +00:00
minskim
d7a9926b50 Create "lib" in the depot to install libraries into the correct place.
Pointed out by Joachim Kuebart on tech-pkg@.
2004-05-30 15:29:34 +00:00
drochner
c7133c6ae9 update to 1.2.12
The step from 1.0.12 to 1.2.12 is too large to mention all changes.
pkgsrc issues:
-use gnome2
-add python support (python23 provides a shared lib)
-XXX I've enabled libgda/gnomedb, this seems to be completelely
 non-functional to me, but perhaps it is just my setup...
2004-05-24 18:13:19 +00:00
danw
6e8f676783 malloc.h fixes for darwin, plus a handful of other small fixes for
problems found after fixing malloc problems
2004-05-23 23:28:29 +00:00
minskim
37bad97606 Update mathomatic to 11.1c.
Changes:
  Perfected factoring of constants in final stage of simplify command.
2004-05-20 21:27:24 +00:00
uebayasi
6f8c4e2d4b Enable pkgviews installation. 2004-05-18 11:27:29 +00:00
seb
00cc0486ea Garbage collect BUILDLINK_PKGBASE.<pkg> from buildlink3: it is not anymore
used since revision 1.139 of mk/buildlink3/bsd.buildlink3.mk.
2004-05-17 21:32:33 +00:00