Commit graph

1395 commits

Author SHA1 Message Date
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
minskim
03bc3b279e Update mathomatic to 11.1b.
Changes since 11.1:
Added Java code generation (usage: "code java").

Added "list export" option, to display equations in exportable format.
They can be cut-and-pasted to another math program with this option.

Added a blank line after every equation listed with the "list" and
"code" commands.  Looks better.

Made "MAX_VAR_LEN" completely flexible (can be set to any value; set to 80).

Improved factoring of polynomials with repeated factors by trying to
differentiate with respect to every variable.
2004-05-14 15:01:31 +00:00
xtraeme
c39fb4635a Sort. 2004-05-13 04:13:27 +00:00
danw
9275687410 s/malloc.h/stdlib.h/ for darwin/freebsd 2004-05-11 15:11:30 +00:00
minskim
76ac2ced9d Update mathomatic to 11.1.
Changes:
- Fixed "makefile" to be completely portable.
  No longer requires GNU make.
- Simplified some code.
- Converted token_type.kind to enum type for better type checking.
- Removed all "unsigned" variables and type casts.
- Simplified "simplify" command code.  Some speed up.
- Moved "*.in" and "fix*" to directory "tests".
- Implemented long variable names (up to 40 characters).
2004-05-10 16:47:15 +00:00
wiz
7deec283de Unused. 2004-05-10 09:31:03 +00:00
snj
34b620cc2c Provide a buildlink3.mk. 2004-05-09 00:44:17 +00:00
markd
6ae7673bf6 R assumes it can append to the DESCRIPTION files of each R package while
building even though it uses INSTALL_DATA on them so set SHAREMODE=644
rather than have to patch an ever increasing number of files.
Idea from Julio M. Merino Vidal.
2004-05-07 22:47:26 +00:00
minskim
8b704d72e0 Honor LIBOWN and LIBGRP. 2004-05-04 20:20:50 +00:00
minskim
f3bddedf0d Update mathomatic to 11.0f.
Changes:
  - Removed calc() fraction code for accuracy because of fraction slack
    that was implemented in version 10.9c.
  - Solve increase power function wasn't working with odd number roots.
    Fixed.  Appears to be another gcc optimizer bug.
  - Improved simplify command.
  - Tweaked factor_constants().
  - Some changes to "makefile" for "readline" support.
    "GNU make" or "gmake" required now.
  - Fixed solving of "x^(1/99)=x".
  - Fixed readline bug.
2004-05-04 17:20:48 +00:00
snj
b253bd6794 Convert to buildlink3. 2004-05-03 20:49:33 +00:00
wiz
6afb688fec Unused. 2004-05-03 16:10:07 +00:00
wiz
424d638ebb rmdir -fr does not make sense; remove the -fr. 2004-05-03 16:03:24 +00:00
wiz
f66acac209 Convert to buildlink3. 2004-05-03 15:58:55 +00:00
minskim
bc18191842 Update mathomatic to 11.0e.
Changes:
 - Changed unfactoring to improve simplification (again).  This was a
   bug fix (first one in a long time).
 - Restored "epsilon" to original value in version 10.9b.  Required
   for factoring large polynomials.
 - Changed factor_times() to preserve divides.  This improved the
   "unfactor" command.
 - Added polynomial factoring to the very beginning of "simplify"
   command.  This is necessary in case you "unfactor" a complicated
   equation, then "simplify".
2004-04-28 04:28:57 +00:00
snj
dd82c3374a Convert to buildlink3. 2004-04-27 21:26:08 +00:00
markd
01318928ff Update R to 1.9.0 and buildlink3ify
USER-VISIBLE CHANGES

    o   Underscore '_' is now allowed in syntactically valid names, and
        make.names() no longer changes underscores.  Very old code
        that makes use of underscore for assignment may now give
        confusing error messages.

    o   Package 'base' has been split into packages 'base', 'graphics',
        'stats' and 'utils'.  All four are loaded in a default
        installation, but the separation allows a 'lean and mean'
        version of R to be used for tasks such as building indices.

        Packages ctest, eda, modreg, mva, nls, stepfun and ts have been
        merged into stats, and lqs has been returned to MASS.  In all
        cases a stub has been left that will issue a warning and ensure
        that the appropriate new home is loaded.  All the time series
        datasets have been moved to package stats.  Sweave has been
        moved to utils.

        Package mle has been moved to stats4 which will become the
        central place for statistical S4 classes and methods
        distributed with base R.  Package mle remains as a stub.

        Users may notice that code in .Rprofile is run with only the
        new base loaded and so functions may now not be found.  For
        example, ps.options(horizontal = TRUE) should be preceded by
        library(graphics) or called as graphics::ps.options or,
        better, set as a hook -- see ?setHook.

    o   There has been a concerted effort to speed up the startup of
        an R session: it now takes about 2/3rds of the time of 1.8.1.

    o   A warning is issued at startup in a UTF-8 locale, as currently R
        only supports single-byte encodings.

plus many new features and bug fixes.
2004-04-27 11:24:31 +00:00
wiz
64ed0e0a86 Convert to bl3. 2004-04-27 00:59:36 +00:00
wiz
fa60c4cab8 Unused. 2004-04-27 00:44:37 +00:00
snj
ec9140696e Add a buildlink3.mk. 2004-04-27 00:35:46 +00:00
snj
3fee8130ef Convert to buildlink3. 2004-04-25 23:38:43 +00:00
snj
174bf3edcd Convert to buildlink3. Impossible to test this, since it's been broken
for months.
2004-04-25 21:39:05 +00:00
snj
8e10678c94 Convert to buildlink3. 2004-04-25 21:38:03 +00:00
snj
07eca366e1 Convert to buildlink3. 2004-04-25 04:00:19 +00:00
snj
16fa6427b0 Convert to buildlink3. 2004-04-25 03:47:44 +00:00
snj
cb78daa501 Convert to buildlink3. 2004-04-25 03:44:58 +00:00
snj
b69fc79ca2 This does not need buildlink2. 2004-04-25 02:14:27 +00:00
snj
13fd073f79 Convert to buildlink3. 2004-04-25 02:14:11 +00:00
snj
e9e8b75d6c This does not need buildlink2. 2004-04-25 02:13:56 +00:00
snj
de092f2e87 This does not need buildlink2. 2004-04-25 02:13:36 +00:00
wiz
e49da93445 Unused. 2004-04-25 01:31:37 +00:00
snj
a8b8f34d9a No longer used. 2004-04-25 01:31:31 +00:00
xtraeme
ca289509fd bl3ify 2004-04-25 00:20:38 +00:00
jlam
e8132b3fbf Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
wiz
35bc4b8404 Convert to bl3, and fix PLIST on NetBSD-2*. 2004-04-24 21:01:28 +00:00
minskim
addd63a8ff Update mathomatic to 11.0d.
Changes:
  - Removed some simplification optimizations in favor of correctness
    and simpler code.  Minor slowdown.
  - Doubled "MAX_COMPARE_TERMS".
  - Simplify order poly_div then smart_div reversed.
  - Kludge for size checking in poly_div removed.
  - Broke "am.in".  Edited.
  - Added "simplify poly" option to do poly_div first.
2004-04-24 15:44:19 +00:00
snj
fad79df5ee Convert to buildlink3. 2004-04-24 04:47:04 +00:00
snj
7409e4bfbf Convert to buildlink3. 2004-04-24 03:59:20 +00:00
minskim
48267d7159 The author confirmed that the problem caused by gcc optimization was
fixed.  Return to default optimization level.

Bump PKGREVISION.
2004-04-22 23:45:54 +00:00
drochner
824997c0c0 +pytables 2004-04-22 15:26:13 +00:00
drochner
ffbf375478 import pytables-0.8, a data manipulation package (frontend to HDF5) 2004-04-22 15:17:08 +00:00
drochner
97e5756142 add one 2004-04-22 15:14:59 +00:00
minskim
169d579959 Update mathomatic to 11.0c.
Changes:
  - Fixed HTML mode "screen_rows" and "screen_columns" to be unlimited.
  - Allow square brackets ([]) as parentheses and optimized parser.
  - Simplification was improved.
2004-04-21 21:26:25 +00:00
drochner
a8ca786b4c +py-numarray 2004-04-21 20:48:55 +00:00
drochner
a720ec32ed import the numarray-0.9 Python extension - a reimplemantation of
py-Numeric
2004-04-21 20:46:54 +00:00
jdolecek
13f2532a2e Update PHP4 package and all PHP4 modules to version 4.3.6.
Changes are bug-fixes mostly, but also synchronizes bundled GD
with GD 2.0.22 and updates PCRE to version 4.5. Several NetBSD
patches were integrated too, so future pkgsrc updates would
be even more smooth.

Full list of changes since PHP 4.3.4 is available at:
	http://www.php.net/ChangeLog-4.php#4.3.6
	http://www.php.net/ChangeLog-4.php#4.3.5
2004-04-20 19:19:23 +00:00
minskim
b1ed76d29f Bump PKGREVISION due to distfile changes (this package has
DIST_SUBDIR=${PKGNAME}).  The author made functional changes without
bumping the version number. :(

This closes PR pkg/25258.
2004-04-20 17:18:50 +00:00
wiz
737cbf17a9 Convert to bl3. 2004-04-18 19:30:52 +00:00
snj
0cb4c47f8b Convert to buildlink3. 2004-04-18 17:51:40 +00:00
minskim
920fbcee7c Update mathomatic to 11.0b.
Changes since 10.9b:
  - Removed more MS-DOS specific code; functionality improved.
  - Implemented what I call "fraction slack".  This perfects float to
    fraction conversion, and now Mathomatic doesn't rely on perfect
    floating point routines.  "-O" option added to CFLAGS in file
    "makefile" (we can do this now).
  - Changed modf() to fmod() where possible.
  - Accuracy increased one more digit by reducing the "epsilon" variable.
  - Cleaned up "makefile".
  - Took a step towards internationalization with gettext(3) by
    calling _() for all English strings.  Everything ported except for
    the "help" command.
  - Commented out some unfactoring code that wasn't helpful and took out
    the "pause" command from "all.in" for easier testing.
  - Rearranged "simplify" command to simplify better.
  - Removed some more unfactoring code and made simplification much
    better.  Go figure.  Perfection has been achieved.
  - Added "unfactor fully" option.
  - Added "make test" to fully test Mathomatic after compilation.
  - Removed masking of 8th bit in all Mathomatic input.
  - Updated primes program with a nice user interface.
2004-04-17 17:08:37 +00:00
jmmv
c8cb1c5b0d Drop the disctinction of xdg and xdg-x11 from USE_DIRS POV. We can choose
which one is required in an automatic way by checking USE_X11BASE.  This
simplifies things and avoids possible problems in the future due to confusion.
2004-04-14 19:30:22 +00:00
jmmv
bedae6c90c Make use of the new USE_DIRS variable, instead of directly depending on the
*-dirs packages.
2004-04-14 16:15:20 +00:00
snj
aaf81e5a74 Convert to buildlink3. 2004-04-14 00:59:25 +00:00
snj
616d329c3f Convert to buildlink3. 2004-04-14 00:00:19 +00:00
snj
a1ef2152a7 Convert to buildlink3. 2004-04-13 23:32:17 +00:00
snj
e2398dc517 Convert to buildlink3. 2004-04-13 23:19:24 +00:00
snj
871ce6b998 Convert to buildlink3. 2004-04-13 21:47:22 +00:00
snj
8fcfe9215b Convert to buildlink3. 2004-04-12 04:14:23 +00:00
snj
df2caf8e2e Convert to buildlink3. 2004-04-12 03:58:36 +00:00
snj
213a5c7e75 No longer used. 2004-04-11 21:07:55 +00:00
snj
344962001d Convert to buildlink3. 2004-04-11 09:13:00 +00:00
snj
c0e7afe231 Convert to buildlink3. 2004-04-11 09:02:04 +00:00
snj
5e91a6e98c Convert to buildlink3 and fix a typo in DESCR. 2004-04-11 08:58:39 +00:00
snj
b43475aa66 No longer used. 2004-04-11 04:40:24 +00:00
snj
942bf0cc54 Convert to buildlink3. 2004-04-11 04:38:48 +00:00
reed
1f222d6648 Use buildlink3 instead of 2. 2004-04-09 07:04:40 +00:00
jmmv
e0360e4f3b Update to 4.3.51:
* Version for GNOME 2.6 (FINAL) call for tarballs. Includes:
  - new locales for pa, en_GB, bg and ga.
  - localized online user documentation from the Sun translation team.
    for de, es, fr, it, ja, ko, sv, zh_CN, zh_HK and zh_TW.
2004-04-01 18:56:25 +00:00
minskim
e835cf9192 Add and enable mathomatic. 2004-03-31 18:15:36 +00:00
minskim
4fe29920ec Import mathomatic-10.9b from pkgsrc-wip.
Packaged by Bruce J.A. Nourish, and slightly modified by me.

Mathomatic is an automatic algebraic manipulator that is self-testing
and strictly follows the rules of algebra.

Mathomatic is an interpreter that can:
  - Solve, simplify, and compare algebraic equations.
  - Combine simultaneous equations.
  - Perform basic calculus operations.
  - Generate the sensitivity formula for one or more variables in an
    equation.
  - Act like a double precision floating point programmable calculator.
  - Perform complex number and polynomial arithmetic.
  - Compute the Greatest Common Divisor of numbers or polynomials.
  - Generate "C" code from equations.
2004-03-31 18:14:08 +00:00
reed
0b307b1482 This build uses msgfmt.
I noticed because:
 /usr/bin/msgfmt -o zh_TW.mo zh_TW.po
 zh_TW.po:2642: illegal control sequence
(But that is not fixed yet.)
2004-03-31 16:18:53 +00:00
jwise
eec580656a Fix build against newest X11. for some obscure reason, src/modules/x11/dataentry.c
explicitly unset NeedFunctionPrototypes, which can no longer safely be done in recent
X11 sources (as _Xconst is only defined if this is set, yet is used everywhere).
2004-03-30 16:49:32 +00:00
adam
39189f3e47 Changes 2.1.57:
* bug fix release
2004-03-29 16:20:16 +00:00
jlam
426cc1ce72 Add a BUILDLINK_PKGBASE.<pkg> definition where it's not equal to <pkg>,
e.g. "BUILDLINK_PKGBASE.gtk?= gtk+".  This is mandated by the example
buildlink[23].mk files in bsd.buildlink[23].mk.
2004-03-29 05:05:32 +00:00
dmcmahill
e39a0abc67 make this work again after the tcl/tk package thread enabling 2004-03-28 17:26:21 +00:00
wiz
a661ce60c0 PKGREVISION bump after openssl-security-fix-update to 0.9.6m.
Buildlink files: RECOMMENDED version changed to current version.
2004-03-26 02:27:34 +00:00
jlam
326169077a USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined. 2004-03-23 04:40:59 +00:00
jlam
cdc3f61df1 Fix the installation of udunits using perl58 by including module.mk
(to note that this package installs a Perl module).  While I'm here,
bl3ify the package.
2004-03-22 17:29:02 +00:00
wiz
6f1192c682 Scalars in perl are preceded by a `$'.
perl-5.8.3 correctly complains if it is not so.
Fix patch-ab so that this package builds with perl-5.8.3 too.
2004-03-22 12:01:07 +00:00
dmcmahill
1b507b5380 use Tk-8.4 instead of 8.3. 2004-03-19 01:26:58 +00:00
jlam
7db11b582a Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly
by moving the inclusion of buildlink3.mk files outside of the protected
region.  This bug would be seen by users that have set PREFER_PKGSRC
or PREFER_NATIVE to non-default values.

BUILDLINK_PACKAGES should be ordered so that for any package in the
list, that package doesn't depend on any packages to the left of it
in the list.  This ordering property is used to check for builtin
packages in the correct order.  The problem was that including a
buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed
from BUILDLINK_PACKAGES and appended to the end.  However, since the
inclusion of any other buildlink3.mk files within that buildlink3.mk
was in a region that was protected against multiple inclusion, those
dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-18 09:12:08 +00:00
dmcmahill
8e11aef009 add a build dependency on perl5 so the documentation will get built.
Fixes recent packaging problems noted in the bulk builds.
2004-03-18 01:35:49 +00:00
jlam
59bdf89739 If the ${PKGBASE} of a package doesn't match the token passed to
BUILDLINK_PACKAGES, then set BUILDLINK_PKGBASE.<pkg> explicitly so that
we can map from <pkg> to BUILDLINK_PKGBASE.<pkg>.
2004-03-16 18:23:26 +00:00
taca
d428fd9d93 Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
dmcmahill
ea84f94474 update to yacas-1.0.56 and bl3ify.
Many, many, many additions, bug fixes, and improvements since the last
packaged version.  Too many to even summarize here.  Please refer to the
change log in the distfile or on the homepage.
2004-03-12 01:15:45 +00:00
markd
1e542beb23 Switch to using tk8.4
bump PKGREVISION
2004-03-11 21:04:47 +00:00
minskim
5b36c68be3 Update grace to 5.1.14. It will close PR pkg/24749.
Changes sinec 5.1.12:
 *  [ES] use multiplication sign in formulae of regression report
 *  [ES] allow for DL modules to define functions of 4 and 5 parameters
 *  [ES] fixed compilation under FreeBSD-5.1 and OS/X
 *  [ES] on 64-bit platforms, when specific compiler/optimization
         combinations were used, some dialogs could crash randomly
 *  [ES] on 64-bit platforms, when specific compiler/optimization
         combinations were used, X run-time warnings could be issued
         about unrecognized XKeySym's
 *  [ES] set filling defaulted to even-odd filling rule in the X11
         driver
 *  [ES] fixed potential memory corruption
 *  [ES] fixed page size sync in the free mode
 *  [TO] fixed a race condition in the grace_np library
 *  [ES] enabled annotated values for HILO sets
 *  [ES] added IMIN(x) and IMAX(x) functions returning index of minimal or
    maximal value of array x
 *  [ES] updates for T1lib-5.0 API
 *  [WB] documented commands for calculating running properties
 *  [MD] enabled font kerning in the MIF driver
 *  [ES] Grace might fail starting in the GUI mode when a certain
         sequence of command line arguments was passed
2004-03-11 20:03:12 +00:00
jmmv
794d0f8706 Update to 4.3.50:
* One more slight adjustment to the fix for bug 135064
  (http://bugzilla.gnome.org/show_bug.cgi?id=135064)
  Entering numbers that start with the numeric point character ('.")
  are now visibly displayed.

* Adjustment to the fix for bug 135064
  (http://bugzilla.gnome.org/show_bug.cgi?id=135064)
  Fix to remove a potential spurious initial thousands separator
  character after a change sign operation.
2004-03-11 16:41:28 +00:00
dmcmahill
1a61d55e3d add bl3 file 2004-03-11 13:45:57 +00:00
dmcmahill
bb50bd9d82 bl3ify 2004-03-10 23:41:44 +00:00
wiz
526430a3ad Update to 2.11.9.2:
Fixed calc man page examples to move -f to the end of the line.
    Thanks goes to Michael Somos <somos at grail dot cba dot csuohio
    dot edu> for pointing this out.

    Linux and gcc now compiled with -Wall -W -Wno-comment.

    Fixed a post increment that was reported by R. Trinler <trinler at
    web dot de> and fixed by Ernest Bowen <ernie at turing dot une dot
    edu dot au>.

    Fixed pi.cal to not depend on the buggy pre-2.11.9 post increment
    behavior.

    Added config("cygwin") to determine if calc was compiled under Cygwin.
    The config("cygwin") is a read-only configuration value that is 1
    when calc was compiled under Cygwin and 0 otherwise.  Regression
    tests 949 and 950 are skipped when config("cygwin") is true.

    The Makefile variable HAVE_NO_IMPLICIT is empty by default so that
    the Makefile will test if the compiler has a -Wno-implicit flag.

    Added HAVE_UNUSED Makefile variable.  If HAVE_UNUSED is empty,
    then the Makefile will run the have_unused program to determine
    if the unused attribute is supported.  If HAVE_UNUSED is set to
    -DHAVE_NO_UNUSED, then the unused attribute will not be used.

    The Makefile builds have_unused.h which defines, if the unused
    attribute is supported:

	#define HAVE_UNUSED /* yes */
	#define UNUSED __attribute__((unused)) /* yes */

    or defines, if the unused is not supported (or if the Makefile
    variable is HAVE_UNUSED= -DHAVE_NO_UNUSED):

	#undef HAVE_UNUSED /* no */
	#define UNUSED /* no */

    Fixed numerous warnings about comparison between signed and unsigned
    value warnings and unused parameter warnings in version.c, zrand.c,
    string.c, shs1.c, shs.c, qtrans.c, qmath.c, qfunc.c, md5.c, matfunc.c,
    hist.c, file.c, const.c, blkcpy.c, seed.c, opcodes.c, func.c, qio.c,
    zrandom.c, custom/c_argv.c, custom/c_devnull.c, custom/c_help.c,
    custom/c_sysinfo.c, addop.c and calc.c.

    Fixed some typos in this file.

    By default, compile with -O3 -g3.  The Makefile comments on how some
    distributions might need to use -O2 -g or -O -g.
2004-03-10 18:17:11 +00:00
seb
a643343c47 Remove info files entries from PLIST. 2004-03-08 22:12:38 +00:00
seb
778f7ad37b Bl3ify and use gmp from devel/gmp not the supplied and older one. This
fix build with gcc3. Note that the somewhat aging gmp autoconf test
had been removed wholesale.

Bump PKGREVISION.
2004-03-08 21:13:55 +00:00
minskim
2827f5b2d8 Enable tk84 and replace x11/tk with x11/tk83. Packages compatible
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-08 20:27:13 +00:00
seb
e6b8d346e0 Remove info files entries from PLIST. 2004-03-08 19:46:56 +00:00
jmmv
ae5a97419f Handle some shared directories by depending on (or updating dependancies to
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs.
Bump PKGREVISION.
2004-03-08 19:40:36 +00:00
seb
a8e47947f0 Remove info files entries from PLIST. 2004-03-08 19:36:22 +00:00
seb
5bb64028be Remove info files entries from PLIST. 2004-03-08 08:25:00 +00:00
kristerw
d4f1dc3d43 Correct path to files to install. 2004-03-08 00:44:50 +00:00
kristerw
1dda53a009 Correct a bug in the patch that made the makefile think that c++
files has .gcc as suffix instead of .cc.
2004-03-08 00:10:52 +00:00
seb
2b6ee6c46c Remove info files entries from PLIST. 2004-03-07 22:44:00 +00:00
seb
11d560ebd1 Remove info files entries from PLIST. 2004-03-07 22:38:10 +00:00
seb
d15567544c Remove info files entries from PLIST. 2004-03-07 22:19:51 +00:00
seb
362e8def30 Remove info files entries from PLIST. 2004-03-07 21:57:21 +00:00
seb
bd61aaa3aa Remove info files entries from PLIST. 2004-03-07 21:46:31 +00:00
jmmv
d44aa584ab Bump PKGREVISION due to a fix in scrollkeeper's handling of its documentation
database.
2004-03-07 12:09:20 +00:00
jlam
430351a890 Conform to template in revision 1.101 of bsd.buildlink3.mk. 2004-03-06 23:46:06 +00:00
jlam
9ff0e10340 Reorder location and setting of BUILDLINK_PACKAGES to match template
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-03-05 19:25:06 +00:00
adam
d16f5d524d Errare humanum est = pkgconfig buildlink added 2004-03-05 15:25:08 +00:00
adam
9f1868e97a Added cln - Class Library for Numbers 2004-03-05 14:47:38 +00:00
adam
1699fb8d82 CLN - Class Library for Numbers is a C++ library providing the following
features:
* Rich set of number classes
* Elementary, logical, transcendental functions
* C++ as implementation language brings efficiency, type safety,
  and algebraic syntax
* Memory efficiency
* Speed efficiency
* Interoperability
2004-03-05 14:46:23 +00:00
markd
ed34a1ec1f USE_LANGUAGES= c fortran 2004-03-01 11:42:13 +00:00
snj
b989a2bccc Include math.h earlier on to fix a build problem on FreeBSD.
Trivial fix from FreeBSD through Michal Pasternak in PR pkg/23846.
2004-03-01 00:43:13 +00:00
jmmv
c1a5917430 Update to 4.3.48:
* Fixed bug 135064. Changing the sign of a large number (when "Show
  Thousands Separator" is on and this is not the C locale), no longer
  corrupts the display.

  My special thanks to Miloslav Trmac for fixing this problem in a
  really elegant manner. This is an important change to the way that
  numbers are displayed.

  The fix involved resetting all the internal calculations in gcalctool
  to be done in the C locale, and then localized (radix character and
  thousands separator), just before the number is displayed.

  I'd appreciate it if everybody could give this a good thrashing in as
  many locales as possible to make sure that it's fully working.

* Fixed bug 135328. Added Shift-slash as a recognized alternate for the
  divide operation (needed by the be-latin1 keyboard layout).
2004-02-27 17:26:30 +00:00
minskim
405ba20a06 Update gcalctool to 4.3.46.
Changes since 4.3.44:
  * Fixed bug 134540. gcalctool now correctly handles the digits
    0123456789 which are shifted about the accented characters on a
    French keyboard.
  * Fixed bug 134484. Doing "3 x! x! x!" no longer causes gcalctool to
    lock up.
2004-02-26 17:14:35 +00:00
adam
16f78b177b Changes 2.1.55:
* Generally bug-fixes and enhancement (it's hard to find out by reading NEWS and ChangeLog)
* Uses BUILDLINK3
2004-02-26 16:47:35 +00:00
adam
404e1dd223 From now on use buildlink3.mk 2004-02-26 15:26:05 +00:00
heinz
2cd1b3f491 Update to 2.010501 (in line with math/pari 2.1.5)
Changes since 2.001804:

Too many to list here, see file "Changes".
2004-02-22 22:04:54 +00:00
heinz
290a189378 Changed patch for "Configure" in order to accept LDFLAGS from the pkgsrc
build environment. This made the package build with xpkgwedge.
Bump revision to 2.
HOMEPAGE and MASTERSITES have changed.
2004-02-22 02:19:50 +00:00
minskim
79870154de Do not use PYPKGPREFIX in buildlink3.mk except in BUILDLINK_DEPENDS.*. 2004-02-20 03:12:22 +00:00
wiz
36222b3d79 Convert to buildlink3. 2004-02-19 11:11:31 +00:00
minskim
2f58d4e752 Fix a version-specific string in comments. 2004-02-18 16:04:50 +00:00
minskim
a845dd52ec bl3ify 2004-02-18 16:02:01 +00:00
jlam
efa1ab70ba Include "../../mk/compiler.mk" to get the value of CC_VERSION before
testing it.
2004-02-18 13:33:40 +00:00
minskim
794d908509 bl3ify and enable pkgviews installation. 2004-02-17 04:22:55 +00:00
jmmv
ec819359a2 Update to 4.3.44.
Overview of changes in gcalctool 4.3.44
* Fixed bug 133764.
  - "Gradients" was still appearing when in Scientific mode (instead of
    "Gradians".
  - In the x^2 button, the 2 should not be italicized.
  - In the x^2 and x^y buttons, the x should be italicized.
  - The View Thousands Separator menu item should not remain active during
    an error condition.

Overview of changes in gcalctool 4.3.43
* Fixed bug 133590. The About box now lists the documenters of gcalctool.

Overview of changes in gcalctool 4.3.42
* Fixed bug 132582. Adjusted the gcalctool titlebar to use a hyphen
  (rather than square brackets) to show what mode the user is currently
  using.

Overview of changes in gcalctool 4.3.41
* Fixed bug 132570. Adjusted UI to use spacing to delineate groups rather
  than frames (per the HIG).

Overview of changes in gcalctool 4.3.40
* Fixed bug 131571. User defined constants are now read/written out (as
  gconf resources) with no thousands separator and with a radix of ".".

Overview of changes in gcalctool 4.3.39
* Fixed bug 131594. The "Insert ASCII View..." menu item and the
  "Insert" button no longer use the GTK_STOCK_CONVERT stock icon
  (as per the HIG).
2004-02-16 23:44:14 +00:00
jmmv
ab17dd00b3 PKGCONFIG_OVERRIDE is relative to WRKSRC. 2004-02-14 18:26:26 +00:00
jlam
ec993afa1a LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.
2004-02-14 17:21:32 +00:00
grant
52f1b46a37 remove unneeded CONFIG_{GUESS,SUB}_OVERRIDE, as bsd.pkg.mk does this
automatically now.
2004-02-14 00:54:44 +00:00
kristerw
384a5979d7 Fix a multi-line string to make the package compile when using gcc3.3. 2004-02-13 22:36:40 +00:00
recht
4352954d5f Fix build by including mpi-ch's buildlink2.mk rather than just depending
on it.
2004-02-12 16:53:50 +00:00
sekiya
e7df9eff5c Yet another mipseb config.guess/config.sub override. 2004-02-12 14:20:27 +00:00
xtraeme
db78f9575f Forgot to add buildlink3 file... 2004-02-11 08:32:14 +00:00
xtraeme
66d5af6338 bl3ify 2004-02-11 08:31:37 +00:00
xtraeme
224715f0c2 bl3ify 2004-02-11 04:58:15 +00:00
jmmv
bad3afef71 Bump PKGREVISION due to gnome-vfs2 update (fam readded as a dependancy). 2004-02-09 18:47:36 +00:00
jlam
d420fe7358 CC_VERSION is "gcc-2.8.1" for egcs. Also fix up a few nits: not all
compilers understand "-O" to optimize, and if we only care about gcc, then
wrap the block in an ifdef that is triggered only if we're using gcc.
2004-02-09 03:26:39 +00:00
kristerw
bee6e474e8 Fix a case where gcc3.3 is too clever for autoconf.
configure tries to determine if -lm is needed by compiling

   int main() {
   (void)sin(0.0);
   ; return 0; }

and see if linking fails.  But gcc3.3 optimizes that to just "return 0;"
2004-02-02 03:19:25 +00:00
jlam
3ac2d4b8aa In the new compiler selection framework, GCC_REQD is appended to, not
overridden.
2004-02-01 01:43:28 +00:00
heinz
18a916d5e6 Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248 2004-01-27 00:53:10 +00:00
kristerw
aeaa2c263a Use GCC_REQD instead of USE_PKGSRC_GCC when overriding the compiler
for arm, so that we don't need to install the gcc package(s) on
machines that already have a working compiler in their /usr/bin.
2004-01-25 15:21:35 +00:00
grant
f1ab3f4ed4 replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 13:51:13 +00:00
kristerw
6792f6a5fe Update udunits to version 1.12.1.
Changes since version 1.11.7:

1.12.1  2003-12-01
  Corrected omission of file "lib/udunits.inc.in" from
  distribution.

  Ported to Mac OSX (I hope).

1.12.0  2003-08-29
  Corrected definition of "apothecary_pound".

  Corrected documentation of "common_year" in the units
  database.

  Modified the syntax of a couple of statements in
  file "src/utlib.c" to accomodate the, apparently,
  non-conforming C/SX C compiler on NEC SX-4 SUPER-UX
  systems, which can't dereference a pointer returned by a
  function.

  Added "mi" to database as alias for "mile".

  Corrected documentation on origin-shift in unit
  specifications.

  Ported to systems with sizeof(double) <
  sizeof(DOUBLE PRECISION).

  Added determination of Fortran type equivalent to C pointer
  to configuration script.

  Added utIsInit() and utisopen() to the API.

  Corrected Hertz symbol: changed from "hz" to "Hz".

  Corrected reference to udunits(3) library in udunitsperl(1)
  manual-page.

  Added support for Absoft Fortran.
2004-01-24 02:01:53 +00:00
jmmv
a58dd81611 Bump PKGREVISION due to xmlcatmgr update to 2.0beta1. I know; this is a PITA.
This shouldn't be needed if we had non-recursive dependancies *sigh*.
2004-01-23 21:50:42 +00:00
adam
416b8c793b Changes: hard to determine, looks like mostly bug-fixes 2004-01-23 13:26:20 +00:00
agc
3ad1bdbf06 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
recht
b8b920c469 sync with py-Scientific 2.4.5 update 2004-01-18 23:58:36 +00:00
recht
16c52e6e70 update to 2.4.5
2.4.3 --> 2.4.4:
----------------
Bug fixes:
NetCDF error messages should now be correct. No more "unknown errors"!

2.4 --> 2.4.1:
--------------
Bug fixes:
- Scientific.MPI did not contain the _C_API object needed by C extension
  modules that call MPI.
- The arguments to the receiveString method are now optional, as documented.

2.3.3 --> 2.4:
--------------
Bug fixes:
- Memory function calculation in Scientific.Signals.Models
  returned a wrong value for the first point.
- Some indexing problems in Scientific.IO.NetCDF were fixed;
  none of them caused wrong results, just unjustified exceptions.

2.3.2 --> 2.3.3:
----------------
Bug fixes:
- The method divide() assumed the wrong coefficient order.
New features:
- Module Scientific.Signals.Models
- Class Scientific.Statistics.Histogram.WeightedHistogram

2.3.1 --> 2.3.2:
----------------
Incompatible changes:
- Specification of routines in Scientific.BSP changed.

2.2 --> 2.3.1
-------------
New features:
- New modules Scientific.BSP and Scientific.BSP.IO
2004-01-18 23:57:50 +00:00
xtraeme
54e3349c40 Update to 4.3.38 from Min Sik Kim in PR pkg/24101.
Changes since 4.3.35:

* Fixed bug 131059. Fix to allow the thousands separator to be used
  correctly with the creation of the initial constant values in the
  Russian locale.
* Fixed bug 130078. Changed the y^x button label to x^y (really x
  superscript y). Adjusted the tooltip message to "Raise displayed
  value to the power of y".
* Fixed bug 130282 again. Needed to remove the "|| tsep[0] == '\0'" check
  from the get_tsep() routine in order to get the thousands separator to
  correctly work in all locales. Note that there is no thousands separator
  now for the C locale.
2004-01-16 02:46:01 +00:00
xtraeme
7c1a1969d7 Update to 4.3.35, provided by Min Sik Kim in PR pkg/24011.
Changes sinec 4.2.83:

    o Many bug fixes.
    o Further work on enhancement request 125873. As the user is typing
      in input, the display will now show the thousands separator
      (if checked).
    o On a Solaris keyboard, Shift-"^" is
      GDK_asciicircum/GDK_SHIFT_MASK. This keyval/state pair needed to
      be added to the Xor recognized mappings.
    o gcalctool can now optionally show the thousands seperator
      character for fixed point numbers displayed in the decimal
      base. Same for numbers stored in the memory registers. There is
      a new "Show Thousands Separator" menu entry in the View menu to
      set this.
    o Online help updated.
    o Updated the gcalctool man pages.
    o Install "gnome-calculator" symlink as reqested by Glynn Foster.
2004-01-14 02:27:17 +00:00
jmmv
904e515ddb Adjust dependancies to only depend on required libraries, not the whole
gnome-core package.  This lets gnucash be installed alongside GNOME2 again.
Bump PKGREVISION to 8.
2004-01-06 18:52:33 +00:00
markd
56811f2ffc Reintroduce reordering tests for termcap vs termlib vs ncurses and
make dependency on libbz2 explicit

Fixes build on Solaris 8.
2004-01-05 12:20:57 +00:00
reed
6d9af8d68d Bump package revisions for tiff update.
Tiff is backward compatible, but was broken on amd64 platform
so this makes sure new tiff is used.
2004-01-03 18:49:33 +00:00
cjep
ac2e42766e Update of math/gap to 4.3 bug fix 5.
Pkgsrc fixes:
 1) Install trans directory.

Official bug fixes since bug fix 4:

 1) A wrong return format for `IsomorphicSubgroups' applied to cyclic groups.
 2) A wrong `true' result of `IsSubset' for certain algebras.
 3) Segmentation faults and other strange behaviour when assigning
    finite field elements of different characteristics into compressed vectors
 4) A bug in the subgroup conjugation test for permutation groups that are
    not subgroups.
 5) A missing method for `BaseOrthogonalSpaceMat'.
 6) A missing `Set' call in the construction of the global variable
    `AUTOLOAD_PACKAGES'.
 7) A wrong display string of the numerator in rational functions returned
    by `MolienSeries' (in the case that the constant term of this numerator
    is zero).
 8) A strange behaviour of `Intersection' for the case that a strictly
    sorted list is the unique entry of the list that is given as the
    argument; in this situation, this entry itself was returned instead of
    a shallow copy.
 9) An error in the basis of a product space of algebras.
10) Possibly wrong result of `Centre' for pc groups.
11) Possibly wrong result of `DirectSumDecomposition' for matrix Lie algebras.
12) An error in `LieNormalizer', `LieCentralizer' for zero subspaces.
13) An error in the computation of matrices of adjoint modules.
14) A strange error message when constructing the simple Lie algebra of type
    B1.
15) An error in `ModuleByRestriction'.
16) An error in `IrrBaumClausen' for the trivial group.
17) An error with vector space bases of row spaces over fields which
    neither are prime fields nor contain all entries of the vectors.
18) An error with `IsMonomial', when it uses the function
    `TestMonomialFromLattice' (i.e., in hard cases, likely for characters of
    nonsolvable groups).

Errors 1, 3, 5, 6, 9, 12, 13, 14 and 16 may cause GAP to stop with an error
message, errors 2, 4, 7, 10, 17, and 18 may cause wrong results.
2004-01-01 18:49:22 +00:00
cjep
22e82ddeec Fix the PLIST for this package. 2004-01-01 18:43:27 +00:00
cjep
c843a6ae2a Add trailing / to HOMEPAGEs 2003-12-30 17:27:31 +00:00
jmmv
a51d1c36df Bump PKGREVISION due to gnome-vfs2 update (fam removed as dependancy).
( We really need non-recursive dependancies... *sigh* )
2003-12-28 23:37:05 +00:00
jmmv
eeee7fac9f Adjust dependancies and bump PKGREVISION due to:
- teTeX 1.0.x packages have been moved to teTeX1* directories.
- teTeX 2.0.x packages have been moved to teTeX* directories and their base
  name has been changed to teTeX (instead of teTeX2).
2003-12-24 13:02:00 +00:00
recht
1168adb855 + py-fpconst 2003-12-24 10:58:47 +00:00
recht
89efd73213 initial import of py-fpconst-0.6.0
This python module implements constants and functions for working with IEEE754
double-precision special values. It provides constants for Not-a-Number (NaN),
Positive Infinity (Inf), and Negative Infinity (-Inf), as well as functions to
test for these values.

The code is implemented in pure python by taking advantage of the 'struct'
standard module. Care has been taken to generate proper results on both
big-endian and little-endian machines. Some efficiency could be gained by
translating the core routines into C.
2003-12-24 10:56:27 +00:00
jmmv
2b07fc26d8 s/@netbsd.org/@NetBSD.org/ in MAINTAINER. 2003-12-24 09:53:47 +00:00
sketch
839613806e Use compiler.mk logic, fixing systems with a non-GCC compiler. 2003-12-23 10:37:56 +00:00
markd
bb2bebcee3 Fix building when non-root.
Closes PR pkg/23760
2003-12-19 11:43:19 +00:00
dmcmahill
7e14d158fc Make sure that the link to libtool in the scilab installation directory
points to the installed libtool instead of to the buildlink2 directory.
Should fix PR23759.
2003-12-19 04:37:23 +00:00
sketch
90e5b02158 Remove hacks for Solaris which worked around a bug in mk/bsd.prefs.mk
before -r1.130.  They are now preventing this package from installing.

Bump PKGREVISION.
2003-12-18 14:44:17 +00:00
wiz
391b5798e6 Bump PKGREVISION for atk library major bump. 2003-12-13 00:45:21 +00:00
agc
66505db0b2 Mark this package as BROKEN - it relies on the API from an older version of
superlu, and will require much massaging to make it work with the current
superlu package.
2003-12-11 22:17:46 +00:00
adam
e40351ac88 Now uses libtool and builds shared libraries 2003-12-04 15:10:48 +00:00
adam
56b97808af CHANGES IN RPy 0.3.1
--------------------
Fixed bugs

o There was several memory leaks due to bad management of Python
  refcounts.

o There was wrong synchronization of the thread running the R event
  loop and the calls to the R interpreter.

o There was a bug with signal handling which caused segfault when
  'Ctrl-C' were pressed.

o The R event loop shouldn't be run in non-interactive sessions.

o The i/o Python callbacks were wrong synchronized with the R event
  loop thread.

New features

o Added a rpy_version symbol.
2003-12-04 13:50:33 +00:00
adam
4af341792b Now uses shared blas library from math/blas 2003-12-04 13:42:37 +00:00
adam
a3a2faac47 buildlink fix 2003-12-04 11:26:42 +00:00
adam
da57ef51ed Changes 2.1.52:
* Emacs fixes
* The ++ and -- operators now work for indexed matrices
* The built-in variable argv is now a list of strings instead of a string vec.
* The new built-in variable `crash_dumps_octave_core' controls
  whether Octave writes user variables to the file `octave-core'
  when it crashes or is killed by a signal.
* Loops of the form `for i = STRING ... endfor' are now allowed.
* It is now possible to set the iteration limit for lsode using
  lsode_options ("step limit", N).
* New functions
* The save command now accepts the option -append to save the
  variables at the end of the file, leaving the existing contents.
* New command-line option --no-history (also available using the
  single character option -H) inhibits saving command history.
* The built-in variable `PWD' has been removed.
* New operators.
* New built-in data types.
* Commas in global statements are no longer special.
* It is now possible to declare static variables that retain their
  values across function calls.
More --> See "NEWS"
2003-12-04 11:15:37 +00:00
adam
a1c667f6e6 Now uses libtool and makes shared libraries 2003-12-04 10:32:30 +00:00
adam
01c0f79127 Now uses libtool and makes shared libraries 2003-12-04 09:13:58 +00:00
kristerw
f6d8743f8c Change MAINTAINER to "tech-pkg" instead of the previous "packages". 2003-12-03 22:14:45 +00:00
markd
6ea261acc7 Update R to 1.8.1.
Changes since 1.6.2

Many new features.
Language changes.
Additional standard package 'mle'.
Some old features deprecated or defunct.
Many many bug fixes.

Update to 1.8.0 from Ray Brownrigg in private communication, cleaned up
and updated to 1.8.1 by me.
2003-12-03 12:05:18 +00:00
jdolecek
3ae31411e0 update patches so that this is in sync with what got committed
into PHP CVS tree; the patches will be disposed on next PHP update

PKGREVISION not bumped, the package works exactly same as before
2003-12-01 14:23:51 +00:00
adam
4e61db0c78 Homepage added 2003-11-19 16:16:47 +00:00
sommerfeld
e6580404a6 Fix build of const.o on -current by adding #ifdef INFINITY 2003-11-19 00:00:01 +00:00
kristerw
66981f6e4f The distifile has been regenerated (but its contents are identical).
Add DIST_SUBDIR and regen distinfo.
2003-11-15 14:17:01 +00:00
kristerw
4384d20071 The distifile has been regenerated (but its contents is identical).
Add DIST_SUBDIR and regen distinfo.
2003-11-15 14:09:30 +00:00
salo
f35979c642 PKGREVISION++ due to devel/popt update. 2003-11-12 01:31:47 +00:00
wiz
bfd506f825 Update to 3.0 since the 2.0 tarball has changed.
Changes:
* Version 3.0, 10-15-03
   - add "options" and "stat" argument for the driver routines
     DGSSV/DGSSVX. This interface is more user-friendly and flexible.
   - add more examples in EXAMPLE/
   - add a "symmetric mode" with better performance when the matrix is
     symmetric, or diagonal dominant, or positive definite, or nearly so.
Also, make 'test' target do something.
2003-11-11 11:53:56 +00:00
grant
ce4f7a838c simplify last a little. 2003-11-10 04:25:08 +00:00
jschauma
25076b3660 Unfortunately, octave will not build with gcc>=3.0 (and we really do not
want to patch all this), so bail out if we detect a gcc-3 compiler.
Suggest octave-current instead.  Closes my own PR pkg/21874.

While here, allow dependecy on either ghostscript or ghostscript-nox11.
2003-11-10 01:04:05 +00:00
fredb
e58d4e544b Make this build with gcc-3.3.2. 2003-11-09 04:20:18 +00:00
jdolecek
0d0ea1f24e Update PHP to 4.3.4
From release announcemenet:

After a lengthy QA process, PHP 4.3.4 is finally out!
This is a medium size maintenance release, with a fair number of bug fixes.
All users are encouraged to upgrade to 4.3.4.

Bugfix release

PHP 4.3.4 contains, among others, following important fixes, additions
and improvements:
* Fixed disk_total_space() and disk_free_space() under FreeBSD.
* Fixed FastCGI support on Win32.
* Fixed FastCGI being unable to bind to a specific IP.
* Fixed several bugs in mail() implementation on win32.
* Fixed crashes in a number of functions.
* Fixed compile failure on MacOSX 10.3 Panther.
* Over 60 various bug fixes!

For full list of changes in PHP 4.3.4, see ChangeLog:
	http://www.php.net/ChangeLog-4.php#4.3.4
2003-11-08 06:58:10 +00:00
gavan
d50b33ce66 Set USE_GCC_SHLIB. Fixes linking on Solaris. 2003-11-07 14:59:42 +00:00
dmcmahill
2ba8ae4450 obey CFLAGS, FFLAGS, and LDFLAGS on Solaris. Especially the LDFLAGS
lets the linker work right.  No change on non-Solaris systems.
2003-11-01 12:26:21 +00:00
reed
8b19d46a06 add bc 2003-09-30 00:02:24 +00:00
reed
10e0c982c9 bc 1.06 - Arbitrary precision calculator language 2003-09-29 23:57:38 +00:00
kristerw
dd72a18d7b Permit teTeX2 as well as teTeX for BUILD_DEPENDS. 2003-09-28 17:54:14 +00:00
jlam
a9f08159c4 Back out last change related to moving ncurses/buildlink2.mk to
curses.buildlink2.mk.  This was wrong because we _really_ do want to
express that we want _n_curses when we include the buildlink2.mk file.

We should have a better way to say that the NetBSD curses doesn't
quite work well enough.  In fact, it's far better to depend on ncurses
by default, and exceptionally note when it's okay to use NetBSD curses
for specific packages.  We will look into this again in the future.
2003-09-28 09:13:55 +00:00
grant
7a71199b50 move ncurses/buildlink2.mk to mk/curses.buildlink2.mk, as it provides
support for base system curses/ncurses as well as ncurses itself.

suggested by wiz.
2003-09-27 17:07:34 +00:00
dent
49d8831342 Update HOMEPAGE and/or MASTER_SITES 2003-09-19 23:08:22 +00:00
wiz
5a91e81df6 Use .CURDIR instead of PKGDIR variable (for pkglint). 2003-09-19 12:22:44 +00:00
grant
40614d0b3c get rid of USE_GCC2/3 in pkg Makefiles, and set GCC_REQD or
USE_PKGSRC_GCC as appropriate, as this is handled by compiler.mk now.
2003-09-17 19:39:58 +00:00
dmcmahill
46a780efa0 make this file cause a DEPENDS not a BUILD_DEPENDS as it installs a
shared library which is most definitely needed at run time.
2003-09-15 10:25:36 +00:00
dmcmahill
2413ace3e6 add and enable ruby-gsl 2003-09-15 00:19:17 +00:00
dmcmahill
126241da2b import ruby-gsl-0.1.9
This is a port of the GNU Scientific Library to the Ruby programming language.

Things from GSL you can use in ruby-gsl:
- some error handling (ch. 3 in the GSL documentation)
- basic mathematical functions (ch. 4)
- complex numbers (ch. 5)
- functions for polynomial evaluation/roots (ch. 6)
- most "special functions" (ch. 7)
- vectors and matrices (ch. 8)
- permutations (ch. 9)
- combinations (ch. 10)
- BLAS support (ch. 12)
- linear algebra (ch. 13)
- eigensystems (ch. 14)
- numerical integration (ch. 16)
- random number generation (ch. 17)
- quasi-random sequences (ch. 18)
- most random number distributions (ch. 19)
- most statistical functions (ch. 20)
- histograms (ch. 21)
- Monte Carlo integration (ch. 23)
- Simulated Annealing (not reliable) (ch. 24)
- interpolation (ch. 26)
- numerical differentiation (ch. 27)
- Chebyshev approximation (ch. 28)
- series acceleration (ch. 29)
- Discrete Hankel Transforms (ch. 30)
- 1-dimensional root-finding (ch. 31)
- 1-dimensional minimization (ch. 32)
- some functions for least-squares fitting (ch. 35)
- physical constants (ch. 37)
2003-09-15 00:18:31 +00:00
dmcmahill
fd078503d8 forgot to add on last commit 2003-09-14 21:14:08 +00:00
dmcmahill
4ab40b79bb add 2 missing CGS units definitions. 2003-09-14 21:13:49 +00:00
recht
0f31b18e03 Update to 23.1.
changes:
Version 23.1 August 2003
[unreported]  fixed assignment to matrix.
[unreported]  added check so that non-character array cannot be interpreted
                as a character buffer.
[unreported]  array([m,m,m])  when m is a rank-0 array now works as expected.
Patches:
[ 782001 ] Add true and floor divide to MA
[ 781215 ] true_divide bug
[ 776991 ] multiplying small UINT values gives random results
[ 776467 ] remove string exceptions
2003-09-14 17:43:53 +00:00
recht
e914ab3288 hange extension.mk to also install optimized files for distutils packages.
Inspired by FreeBSD "ports".

Fix the PLISTs accordingly.
Also, while at it, remove now obsolete compileall.py calls in post-install
targets and insure that extension.mk is in included before builinlinks of
other Python modules.

Discussed with/ok'ed by drochner@.
2003-09-14 16:43:45 +00:00
dmcmahill
07d1b3f65b correct the name of some included header files. This lets the CGS and MKS
units work correctly now.  Bump pkgrevision.
2003-09-14 14:53:06 +00:00
dmcmahill
e4f52fc813 add a few patch files, actually replacements for part of the distfile,
from the authors to fix some bugs in the scicos blocks.  Bump PKGREV to
produce scilab-2.7nb2
2003-09-12 20:46:47 +00:00
grant
ac2754dcb7 kill all references to gcc.buildlink2.mk and compiler.mk, and define
USE_GCC2 or USE_GCC3 where appropriate.

the functionality of the old gcc.buildlink2.mk has been rolled into
compiler.mk now, which is automatically used.

more changes to come later...
2003-09-12 20:07:06 +00:00
jlam
879d3980c4 There is no x11.buildlink2.mk. 2003-09-04 19:24:13 +00:00
jmc
08a9a4177c regen 2003-09-03 03:44:36 +00:00
jdolecek
90c1c1709f Update PHP to final 4.3.3
Some highlights of changes since 4.2.3:
* PCRE updated to 4.3, GD to 2.0.15
* improved Apache2 support
* much improved stream & URL wrapper support, output compression support
* added CLI (Command Line Interface) SAPI
* debug_backtrace() backported from ZendEngine2
* faster build system
* huge number of other bug fixes and improvements

Packaging changes:
* 'pcre', 'xml', and 'session' modules folded back into main package -
  'pcre' and 'xml' is required by PEAR, and 'session' is just too essential
  to be separate
* 'gd' module now uses bundled PHP GD library, which is better integrated
* PHP modules use shared distinfo when possible to ease future PHP updates
* ${PREFIX}/bin/php is now CLI version, ${PREFIX}/libexec/cgi-big/php
  remains CGI version
2003-08-31 19:55:21 +00:00
wiz
c28f040074 Update to 2.11.8:
Clarify that the internal hash as well as the hash builtin
    function used by calc, while based on the Fowler/Noll/Vo
    hash is NOT an FNV hash.

    Made slight performance improvements to calc by an optimization of how
    calc's internal hash is computed.  The "make chk" regression test
    runs about 1.5% faster (when compiled with -O3 on an AMD Athlon)
    NO_HASH_CPU_OPTIMIZATION is not defined.  Calc's internal hash values
    have not changed.  By default, NO_HASH_CPU_OPTIMIZATION is NOT defined
    and the slightly faster expression is used.

    A slight modification of what was known as the "calc new stardard"
    configuration (calc -n or config("all", "newstd")) is now the default
    calc configuration.  The flag:

        calc -O

    was added to get the old classic calc configuration.  The flag command
    line flag, -n, now does nothing.  Use of -n is deprecated and may go
    away / be used for something else in the future.

    The following table gives the summary of these changes:

             pre v2.11.8                     v2.11.8
             default         pre v2.11.8     -O & oldstd      v2.11.8
             and oldstd      -n & newstd     classic cfg      default
             --------------------------------------------------------
    epsilon     1e-20           1e-10           1e-20           1e-20
    quo         2               2               2               2
    outround    2               24              2               24
    leadzero    0               1               0               1
    fullzero    0               1               0               0
    prompt      >               ;               >               ;
    more        >>              ;;              >>              ;;

    With the exception of epsilon being 1e-20, and fullzero being unset,
    the new default calc config is like it was (pre-2.11.8) with calc -n /
    config("all", "newstd").

    The new default config is the old classic config with outround being
    24, leadzero being set, and the prompts being ;'s.
2003-08-30 23:27:30 +00:00
jtb
f6620f1152 Update to version 1.4.
* What is new in gsl-1.4:

** Added cumulative distribution functions and their inverses for the
continuous random distributions including: gaussian, lognormal, gamma,
beta, cauchy, laplace, chisq, exponential, gumbel, weibull,
F-distribution, t-distribution, logistic, pareto and rayleigh.

** Added faster binomial random variates using the TPE rejection
algorithm, in the function gsl_randist_binomial_tpe.

** Added new functions gsl_rng_fwrite and gsl_rnd_fread for storing
the state of random number generators in a file.

** Added a new function gsl_combination_memcpy()

** Corrected values of electrical constants in CGS units.  To take
account of different electrical systems of units the values are now
prefixed by GSL_CONST_MKSA (for the SI Metre, Kilogram, Second, Ampere
system) or GSL_CONST_CGSM (for the Centimetre, Gram, Second, Magnetic
system with the Gauss as the fundamental unit of magnetic field
strength).  The previous GSL_CONST_MKS and GSL_CONST_CGS prefixes have
been removed, as have the permeability and permittivity constants in
the CGS system since this uses different defining equations.

** Fixed bugs in the random number generators gsl_rng_fishman18,
gsl_rng_fishman2x, and gsl_rng_knuthran2 which caused them to return
incorrect results.  Minor corrections were made to the parameters in
the other Knuth generators borosh13, coveyou, fishman20, lecuyer21,
and waterman14.

** Fixed a missing transpose bug in the gsl_linalg_QR_QRsolve
and gsl_linalg_QRPT_QRsolve routines which were computing the
solution to Q^T R x = b instead of Q R x = b.

** Fixed gsl_sf_gammainv to return zero instead of a domain
error for arguments corresponding to singularities in gamma.

** Fixed a bug in the simplex minimization algorithm which
caused it to fail to find the second highest point correctly
when searching the set of simplex points.

** Fixed a bug in the conjugate gradient minimizers conjugate_pr,
conjugate_fr and vector_bgfs which caused the search
directions to be updated incorrectly.

** Fixed a bug in gsl_sf_psi_1_int(1) which caused it to
return the incorrect sign for psi(1,1).

** Fixed the simulated annealing routine gsl_siman_solve to use the
parameter iters_fixed_T for the number of iterations at fixed
temperature instead of n_tries.

** Fixed a bug in gsl_combination_valid which caused it to return the
incorrect status.

** Fixed a bug in gsl_permutation_canonical_to_linear which caused the
output to always be zero, and the input permutation to be incorrectly
replaced by the output.

** Fixed a bug is gsl_ran_discrete which could cause uninitialised
data to be returned for some distributions.

** Fixed the dependencies for gsl_chebyshev.h to include gsl_math.h.

** Fixed a bug in gsl_complex_arccsc_real which caused it to return
the incorrect sign for the imaginary part when -1<x<0.

** Fixed a bug in the QAWC Cauchy integration routine which could
allow the singularity to fall on an interval boundary, leading to
division by zero.

** Improved gsl_sf_gamma_inc_P(a,x) to avoid a domain error for x<<a
when a>10.

** Improved the accuracy of gsl_sf_coupling_3j for large arguments.

** Improved the performance of gsl_sf_choose(m,n) by separating the
calculations for small and large arguments.

** On platforms without IEEE comparisons gsl_{isnan,isinf,finite} will
fall back to the system versions of isnan, isinf and finite if
available.

** gsl_linalg_householder_hv now uses BLAS routines internally

** The script configure.in is now compatible with autoconf-2.50 and
later.

** Reduced the memory usage of the multifit algorithms from MxM to MxN
for large M by performing the QR decomposition of the Jacobian
in-place.

** IEEE modes now use the C99 fenv.h functions when platform spectific
functions are not available.
2003-08-30 21:50:59 +00:00
jtb
a47bfe0d74 Update to version 1.40.
V1.30 (March 2002) to V1.40 (June 2003)
-   simultaneous assignments
		(x1,x2,...,xn) := (a1,a2,...,an)

-   new functions
        divide, bit_count,
        set_workdir, get_workdir, gmtime,
        stack2string, stack_arraypush, string_scan,
        realloc, binsearch

-   some bug fixes (regarding qs_factorize and
	    handling of special variable and value arguments
        in user defined functions)
2003-08-30 20:49:20 +00:00
jtb
5e48103bb6 Remove egcs-patch-aa from distinfo to silence pkglint. 2003-08-29 07:08:23 +00:00
junyoung
13086e4a99 gcalctool depends on gnome2-dirs, not gnome-dirs. 2003-08-26 16:12:48 +00:00
jmc
b423c71095 Needs USE_MAKEINFO 2003-08-17 20:32:22 +00:00
seb
f493c9b3ab Ooops forgot to remove PKGREVISION... 2003-08-12 20:35:32 +00:00
seb
4e4c7e8ed6 Update to version 5.1.12.
Package changes:
- add support for XmHTML.
- sort PLIST.

Changes since version 5.1.10 below.

5.1.12
  Functionality

 *  [MO] implemented zooming and scrolling of log plots

  Parser

 *  [ES] added INT(x,y) evaluating integral value of y dx
 *  [ES] added RSUM(vexpr) - running sum

  Bug fixes

 *  [ES] fixed memory corruption when reading in block data (rep. #1258). The
         bug was introduced in 5.1.11
 *  [ES] fixed a couple of tiny memory leaks associated with loading block
         data
 *  [ES] fixed crash in histogram and interpolation dialogs with multiple sets
         selected (rep. #1259)
 *  [TO] signal issues with the grace_np library fixed (rep. #1270)
 *  [ES] implied references to current graph in parser might crash Grace if
         the graph didn't exist (including reps. #886 and #1267)
 *  [ES] removed extraneous accent glyphs in the 0x9? range of IsoLatin1 and
         IsoLatin2 encodings (including rep. #1269)
 *  [MO] IsoLatin7 encoding file wasn't installed by "make install"
 *  [ES] entering negative values of set symbol skip could crash Grace
         (rep. #1276)

5.1.11
  Functionality

 *  [ES] hotlinks now work for all set types (rep. #572)
 *  [ES] updating hot-linked sets now works for all graphs, not the current
         one only
 *  [YZ] added encoding files for Russian codepages koi8-r and cp1251 and for
         Ukrainian codepage koi8-u

  Interface

 *  [ES] use "+"/"-" instead of "shown"/"hidden" in the graph selectors

  Parser

 *  [ES] added UPDATEALL command, equivalent of "View/Update all"

  Drivers

 *  [ES] set resolution in the PNG output (rep. #1225)

  Portability/Compilation

 *  [ES] updated auto* stuff to work with autoconf-2.5.* (rep. #1199)

  Bug fixes

 *  [SR] precision used for special tick locations was insufficient
         (rep. #1228)
 *  [ES] referring to "S_" in the parser with no sets in the current project
         crashed the app
 *  [ES] GraceIsOpen() from the grace_np library returned true after the Grace
         process exited (rep. #922)
 *  [ES] excluded .cvsignore files from source tarballs (rep. #1248)
 *  [ES] a minor memory leak fixed (40 bytes per set import/reading in)
 *  [ES] configure --with=f77=/absolute/path/to/f77 was broken (rep. #1243)
 *  [ES] in XY charts, explicitly check that abscissas of all sets are the same
2003-08-12 20:32:54 +00:00
seb
56b682547a USE_NEW_TEXINFO is unnecessary now. 2003-08-09 10:59:08 +00:00
seb
584aa330f3 No need to add stuff to INFO_FILES, straight setting looks better IMHO. 2003-08-08 16:55:27 +00:00
seb
4285450dc6 Convert to USE_NEW_TEXINFO.
Fix info files generation by ensuring buildlink2 framework is used:
use BUILD_DIRS/INSTALL_DIRS.
2003-08-02 22:09:36 +00:00
seb
bd00d6d3a3 depkglint. 2003-08-02 21:45:39 +00:00
seb
ee3c310df9 Use buildlink2 (for X11 benefit). 2003-08-02 21:43:24 +00:00
seb
d419761fe5 Convert to USE_NEW_TEXINFO. 2003-08-02 21:38:11 +00:00
seb
3985abc7af Convert to USE_NEW_TEXINFO.
Add patch file to add an Info directory entry to liboctave.texi.
Remove now unnecessary patch files and trim one of its
"info" bits.
2003-08-02 21:18:04 +00:00
seb
17e1183c73 If we were to use gcc.buildlink2.mk on arm32 we might as well be really
using it for all arch. While here throw in a little bit more
of buildlink2ness.
2003-08-02 20:25:27 +00:00
seb
75ffb0f31d Convert to USE_NEW_TEXINFO.
Remove now unnecessary patch files.
2003-08-02 19:39:08 +00:00
seb
e3f790001d Convert to USE_NEW_TEXINFO. 2003-08-02 13:27:27 +00:00
seb
28900cf2c5 Convert to USE_NEW_TEXINFO. 2003-08-02 13:20:15 +00:00
seb
f71dbbb5b4 Convert to USE_NEW_TEXINFO. 2003-07-31 23:49:14 +00:00
seb
ddbd455d0e Convert to USE_NEW_TEXINFO.
XXX Does not seem to like xemacs anymore...
2003-07-31 23:41:11 +00:00
seb
98a7822f70 Convert to USE_NEW_TEXINFO. 2003-07-31 22:58:39 +00:00