Age | Commit message (Collapse) | Author | Files | Lines |
|
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
|
|
Changes:
- Bug fix made to divide command.
- Increased the number of equation spaces to 100.
- Fixed a precision problem with the "list export" command.
- Added and implemented function return_result(equation_number) at the
end of most commands, to facilitate use as a library.
- Some more comments were added and "list.c" was cleaned up.
- Replaced most printf()s with a new function called error().
|
|
that don't have it.
|
|
to apply it.
|
|
from including perl5/buildlink3.mk. These packages just need the Perl
interpreter, and can just add "perl" to USE_TOOLS instead.
|
|
around at either build-time or at run-time is:
USE_TOOLS+= perl # build-time
USE_TOOLS+= perl:run # run-time
Also remove some places where perl5/buildlink3.mk was being included
by a package Makefile, but all that the package wanted was the Perl
executable.
|
|
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable
that specifies all of the tools we need to build/run the package.
|
|
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}. There is no change to the binary
packages.
|
|
|
|
Bump PKGREVISION.
|
|
Changes:
- Added a few checks for NULL char pointers.
- Major change in memory allocation: equation spaces are now only
allocated as needed.
- Changed optimize command to accept an equation number range.
- Some minor code cleanups and commenting.
|
|
* Bug fixes
|
|
* Bug fixes
|
|
0.2603 Mon May 30, 2004
- Mod SaveParser : Apply a path from Eduardo J
adding Protect feature
(Thank you, Eduardo J for patch)
- Mod ParseExcel : Apply a path from C. Jon Larsen
adding GetContent
(Thank you, C. Jon Larsen)
|
|
|
|
Hiramatsu Yoshifumi.
Number::Compare compiles a simple comparison to an anonymous
subroutine, which you can call with a value to be tested again.
|
|
minor bug fixes.
|
|
Changes:
- Allow larger fractions.
- Doubled the default max expression size and memory requirements are
now 20 megabytes.
- Added ability to set the number of partitions when using the
nintegrate command.
- Some code and messages cleanup.
- Fixed bug in nintegrate command (wrong number of function parameters).
- Improved solve routine.
- Update to "primes/matho-around.c".
|
|
because it's a full path to bison. Force HAVE_YACC=yes to sidestep
the stupid extra check added by the gcalctool authors. This should
fix the build of gcalctool.
Commit approved during the deep freeze by <agc>.
|
|
Bump PKGREVISION.
|
|
in tools/defaults.mk where they can be more widely used.
|
|
|
|
Bump PKGREVISION.
|
|
* GNU_CONFIGURE should be set to YES or yes.
* Sort PLIST.
|
|
${PREFIX}.
|
|
|
|
Bug fixes and minor improvements.
|
|
needs yacc. This fixes PR pkg/29897.
|
|
framework. Bump PKGREVISION.
|
|
|
|
Changes:
- Added singularity checking and enabled numerical integration.
- Fixed a bug in and documented numerical integration.
- Simplify command was improved.
- Startup displays more accurate memory usage info.
- Update to the Mathomatic man page (added description).
- Added NO_COLOR define (see README.txt).
- Added function get_range_eol().
- Doubled MAX_COMPARE_TERMS to 400.
|
|
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
|
|
OKed by Rene Hexel
|
|
in pkgsrc.
|
|
changes:
1. The original plug_in and autoload system (see 5/Sep/04 below)
has been completely revamped to make a true "package" system.
2. The Makefile system for compiled yorick add-ons has completely
changed.
3. The string manipulation functions have been dramatically extended.
4. The yorick user manual and quick reference cards have been updated.
|
|
changes: cleanup, build system fixes
|
|
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also,
make use of PKG_OPTIONS_LEGACY_VARS.
Reviewed by wiz.
|
|
|
|
|
|
passed to it with an empty string.
|
|
passed to it with an empty string.
|
|
Changes:
- Yet another improvement to the simplify command. poly2_gcd() was fixed.
- Improved bounds checking for gcd().
- Pause command now takes an argument.
- Made derivative, extrema, and integrate commands work with non-equations.
- An important optimization was made to factor_times().
- Added and tested code for numerical integration. Currently disabled,
to enable define "NUMERICAL_INTEGRATE" in CFLAGS.
|
|
|
|
|
|
USE_GNU_TOOLS -> USE_TOOLS
awk -> gawk
m4 -> gm4
make -> gmake
sed -> gsed
yacc -> bison
|
|
variables into CONFIGURE_ENV if the new tools framework already takes
care of adding them automatically.
|
|
|
|
|
|
enough. Fixes PR pkg/30274
|
|
now; neither maintainer nor anyone else stepped up to fix them.
Predicted on tech-pkg and in private mail to maintainers; no comments.
|