Commit graph

1812 commits

Author SHA1 Message Date
he
81ca810d49 Fix a small annoyance: make the default file name in 'W' actually work.
Pkgrevision bumped to 1.
2006-09-29 15:55:26 +00:00
joerg
558e270b01 Fix X11 linkage. Bump revision. From PR 34563. 2006-09-19 22:57:18 +00:00
wiz
c7dde6d0e9 Fix build with libgda-1.9.103, and depend on it. Bump PKGREVISION.
Patch from jsacco@garnome.
2006-09-19 17:45:50 +00:00
jmmv
f190ea92a4 Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency.
This fixes problems when some installed packages are outdated.
Per wiz@'s request.

Grrr, I really hate this kind of change.
2006-09-16 12:20:32 +00:00
jmmv
e807096081 Update to 5.8.24:
Overview of changes in gcalctool 5.8.24

* Released a gcalctool tarball for GNOME 2.16.0 (Final).

Overview of changes in gcalctool 5.8.23

* Released a gcalctool tarball for GNOME 2.16.0 (RC1).

Overview of changes in gcalctool 5.8.22

* Removed several chunks of code that were surronded by #if 0/#endif.

Overview of changes in gcalctool 5.8.21

* Fixed bug #350341. gcalctool now builds again with gcc v2.95.

Overview of changes in gcalctool 5.8.20

* Released a gcalctool tarball for GNOME 2.16.0 (beta2).

Overview of changes in gcalctool 5.8.19

* More work on bug #347700.  Added another "Note to translators"
  comment for the Abs button labels.

* Fixed bug #348452. Removed line for help/sv/Makefile.in

* Released a gcalctool tarball for GNOME 2.16.0 (beta1).
2006-09-15 15:21:29 +00:00
minskim
eba55cce5b Update mathomatic to 12.6.3.
Changes since 12.6.1:
8/20/06 - Fixed many very minor bugs.  Added variable display precision.
8/21/06 - Display single digit primes when using "matho-primes pal".
8/24/06 - Increase display precision from 12 to 14 decimal digits.
8/27/06 - Added some tiny python programs: "fact/factorial" and "primes/mult".
8/31/06 - Add alternate command name "display" to flist command.
9/04/06 - Improve eliminate command by allowing "eliminate all all ..." to
          eliminate all variables two or more times.
2006-09-13 00:39:03 +00:00
obache
814d48e601 Update to 0.39.
April 4th, 2006
v0.39  -- Jim Wigginton pointed out my Montgomery examples in figures 6.4 and 6.6 were off by one, k should be 9 not 8
       -- Bruce Guenter suggested I use --tag=CC for libtool builds where the compiler may think it's C++.
       -- "mm" from sci.crypt pointed out that my mp_gcd was sub-optimal (I also updated and corrected the book)
       -- updated some of the @@ tags in tommath.src to reflect source changes.
       -- updated email and url info in all source files

Jan 26th, 2006
v0.38  -- broken makefile.shared fixed
       -- removed some carry stores that were not required [updated text]

November 18th, 2005
v0.37  -- [Don Porter] reported on a TCL list [HEY SEND ME BUGREPORTS ALREADY!!!] that mp_add_d() would compute -0 with some inputs.  Fixed.
       -- [rinick@gmail.com] reported the makefile.bcc was messed up.  Fixed.
       -- [Kevin Kenny] reported some issues with mp_toradix_n().  Now it doesn't require a min of 3 chars of output.
       -- Made the make command renamable.  Wee

August 1st, 2005
v0.36  -- LTM_PRIME_2MSB_ON was fixed and the "OFF" flag was removed.
       -- [Peter LaDow] found a typo in the XREALLOC macro
       -- [Peter LaDow] pointed out that mp_read_(un)signed_bin should have "const" on the input
       -- Ported LTC patch to fix the prime_random_ex() function to get the bitsize correct [and the maskOR flags]
       -- Kevin Kenny pointed out a stray //
       -- David Hulton pointed out a typo in the textbook [mp_montgomery_setup() pseudo-code]
       -- Neal Hamilton (Elliptic Semiconductor) pointed out that my Karatsuba notation was backwards and that I could use
          unsigned operations in the routine.
       -- Paul Schmidt pointed out a linking error in mp_exptmod() when BN_S_MP_EXPTMOD_C is undefined (and another for read_radix)
       -- Updated makefiles to be way more flexible

March 12th, 2005
v0.35  -- Stupid XOR function missing line again... oops.
       -- Fixed bug in invmod not handling negative inputs correctly [Wolfgang Ehrhardt]
       -- Made exteuclid always give positive u3 output...[ Wolfgang Ehrhardt ]
       -- [Wolfgang Ehrhardt] Suggested a fix for mp_reduce() which avoided underruns.  ;-)
       -- mp_rand() would emit one too many digits and it was possible to get a 0 out of it ... oops
       -- Added montgomery to the testing to make sure it handles 1..10 digit moduli correctly
       -- Fixed bug in comba that would lead to possible erroneous outputs when "pa < digs"
       -- Fixed bug in mp_toradix_size for "0" [Kevin Kenny]
       -- Updated chapters 1-5 of the textbook ;-) It now talks about the new comba code!

February 12th, 2005
v0.34  -- Fixed two more small errors in mp_prime_random_ex()
       -- Fixed overflow in mp_mul_d() [Kevin Kenny]
       -- Added mp_to_(un)signed_bin_n() functions which do bounds checking for ya [and report the size]
       -- Added "large" diminished radix support.  Speeds up things like DSA where the moduli is of the form 2^k - P for some P < 2^(k/2) or so
          Actually is faster than Montgomery on my AMD64 (and probably much faster on a P4)
       -- Updated the manual a bit
       -- Ok so I haven't done the textbook work yet... My current freelance gig has landed me in France till the
          end of Feb/05.  Once I get back I'll have tons of free time and I plan to go to town on the book.
          As of this release the API will freeze.  At least until the book catches up with all the changes.  I welcome
          bug reports but new algorithms will have to wait.

December 23rd, 2004
v0.33  -- Fixed "small" variant for mp_div() which would munge with negative dividends...
       -- Fixed bug in mp_prime_random_ex() which would set the most significant byte to zero when
          no special flags were set
       -- Fixed overflow [minor] bug in fast_s_mp_sqr()
       -- Made the makefiles easier to configure the group/user that ltm will install as
       -- Fixed "final carry" bug in comba multipliers. (Volkan Ceylan)
       -- Matt Johnston pointed out a missing semi-colon in mp_exptmod

October 29th, 2004
v0.32  -- Added "makefile.shared" for shared object support
       -- Added more to the build options/configs in the manual
       -- Started the Depends framework, wrote dep.pl to scan deps and
          produce "callgraph.txt" ;-)
       -- Wrote SC_RSA_1 which will enable close to the minimum required to perform
          RSA on 32-bit [or 64-bit] platforms with LibTomCrypt
       -- Merged in the small/slower mp_div replacement.  You can now toggle which
          you want to use as your mp_div() at build time.  Saves roughly 8KB or so.
       -- Renamed a few files and changed some comments to make depends system work better.
          (No changes to function names)
       -- Merged in new Combas that perform 2 reads per inner loop instead of the older
          3reads/2writes per inner loop of the old code.  Really though if you want speed
          learn to use TomsFastMath ;-)

August 9th, 2004
v0.31  -- "profiled" builds now :-) new timings for Intel Northwoods
       -- Added "pretty" build target
       -- Update mp_init() to actually assign 0's instead of relying on calloc()
       -- "Wolfgang Ehrhardt" <Wolfgang.Ehrhardt@munich.netsurf.de> found a bug in mp_mul() where if
          you multiply a negative by zero you get negative zero as the result.  Oops.
       -- J Harper from PeerSec let me toy with his AMD64 and I got 60-bit digits working properly
          [this also means that I fixed a bug where if sizeof(int) < sizeof(mp_digit) it would bug]
2006-09-09 09:35:10 +00:00
obache
6283308cf4 Update MASTER_SITES and HOMEPAGE. 2006-09-09 09:01:14 +00:00
obache
e896edb7fe Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
obache
3e08ebf9e2 Using msgfmt. 2006-09-06 11:54:46 +00:00
rillig
fc0fbf02a7 Fixed the build error on NetBSD. 2006-09-06 09:44:57 +00:00
rillig
8c544158ec Fixed the pkglint warnings about "${WRKSRC}/..". 2006-08-31 08:42:41 +00:00
joerg
222361b56e cc is used at least on DragonFly for linkage, so keep C in USE_LANGUAGES. 2006-08-22 23:27:23 +00:00
joerg
2310cebbea On DragonFly, cc is used for the Fortran linking so
require C as language.
2006-08-22 18:57:01 +00:00
joerg
72aababbf5 At least on DragonFly, cc is used for linking the final result, so
include C in the language list.
2006-08-22 18:54:11 +00:00
schwarz
81048221f7 added a hack to work around the incorrect detection of the absence of exp10
on Darwin
2006-08-20 16:01:34 +00:00
minskim
0920375cce Update mathomatic to 12.6.1.
Major changes:
- Added alternate command names.
- Don't allow imaginary numbers in integer only expressions.
- Made poly_gcd_simp() do its job in one pass.
- Add "set autosolve" option.
- Make entry of "=(expression)" into "0=(expression)", instead of being an
  error.
- Add fraction command.
- Made simplification default to polynomial simplify.
- "replace constants" command now approximates constants with roots.
- Fixed a floating point accuracy issue recently introduced.
- Other bug fixes and improvements.
2006-08-15 15:38:25 +00:00
drochner
6e355f1a96 update to 5.9.3
major changes:
-Revision and expansion of linear algebra functions
-Revisions of floating-point function evaluation (sqrt, trigonometric)
-Replace existing definition of "conjugate" with a much more extensive
 implementation
-Revision of evaluation and simplification of sum and product
-doc improvements, spanish/portuguese support
2006-08-11 18:07:33 +00:00
minskim
4cd37c8b4a Remove teTeX2 from TEX_ACCEPTED, because the teTeX2 packages will be removed
shortly.
2006-08-10 03:21:39 +00:00
minskim
18556c1735 Update mathomatic to 12.5.19.
Changes:
6/18/06 - Made entering "a=b=c" give an error, instead of just ignoring "c".
6/18/06 - Made "inf" an invalid variable, should be a constant only.
6/18/06 - Improved prompting for a variable.
6/18/06 - Mathomatic now properly removes all trailing spaces from input.
6/21/06 - Beautified the Mathomatic manuals.
6/23/06 - Remove semicolon from output of "code python" command.
6/27/06 - Add "tests/trig.in" to the tests.
6/29/06 - Allow typing "?" as a quick way to get help.
2006-08-08 18:15:20 +00:00
markd
ffa958b5bc Uses fortran. Fix homepage.
Update to 0.9-2:

Version 0.9-2, 2006/02/13
Fix minor typo in wle.fracdiff.Rd and in wle.var.test.Rd. Rewrite some part
of wle.vonmises.R and wle.wrappednormal.R since there were a problem on
looking for mutiple roots.

Version 0.9-1, 2005/12/6
Set up a NAMESPACE file.
Functions wle.wrappednormal and wle.vonmises use atan2 call instead of atan.
mle.aic has a new argument 'se' so that standard errors are reported for the
parameters of each submodel. wle.fracdiff and related functions are partialy
rewritten.

Version 0.9, 2005/04/16
This version should works under gcc-4.0 too.
Many fortran sources are removed since already included in R (blas functions)
Function qrgnin.f is modified by Prof. B. Ripley so that it does not use
entry point.

Version 0.8-1, 2005/04/10
Fixed bugs in wlestepwise.f and mlestepwise.f
The calls to the packages ts and ctest are removed.
The function wle.aic.ar (and its summaries) is added.
Add the dataset rocky

Version 0.8,   2004/10/05
Fix file wle.lm.summaries.Rd
2006-08-05 22:56:48 +00:00
drochner
19a4457aa2 +genius 2006-08-03 19:01:00 +00:00
drochner
9283d8eb8b add genius-0.7.5, just another math/graphing tool 2006-08-03 18:59:58 +00:00
drochner
b3d162bd37 update to 5.8.19
changes:
-bugfixes
-undo/redo function
-Functions (such as sin, cos, tan..) can use previously calculated value
2006-08-03 18:58:01 +00:00
rillig
216fd758a9 When all source files are compiled with a Fortran compiler, why should a
C compiler be used for linking them?
2006-07-27 18:49:47 +00:00
jlam
ccdf6dbe01 Rename "SITES_* to "SITES.*" for file-specific lists of sites from which
to fetch the file.  This completes the renaming described in revision
1.1799 of bsd.pkg.mk.
2006-07-27 18:48:02 +00:00
minskim
fcca7d87b3 Update mathomatic to 12.5.18.
Changes:
Fixed some gcc compiler warnings.
Code and documentation cleanup.
Removed BASICS define.
Removed all isascii() tests from the source code.
2006-07-27 18:25:48 +00:00
joerg
95236ae1a2 Explicitly calls cc. 2006-07-25 15:33:38 +00:00
rillig
221120c8fb Needs the blas package for building. 2006-07-23 17:08:56 +00:00
rillig
0abc91d9d8 Updated R-ncdf to 1.6, since the old distfile is no longer available.
Release 1.6 (2006-06-19) adds various bug fixes, plus support for making
dimensions WITHOUT dimvars (coordinate variables), although I think this
is a bad idea in general.  ALSO, the default behavior for put.var.ncdf
with unlimited variables and NO specified start and count parameters has
changed!  Before, the default was to append to the end of the existing
variable.  Now, the default is to assume a start of 1 along each
dimension, and a count of the current length of each dimension.  This
really can be ambiguous when using an unlimited dimension. I always
specify both start and count when writing to a variable with an
unlimited dimension, and suggest you do as well.  I make require this in
a future release, as it seems to cause people problems.
2006-07-23 17:04:12 +00:00
rillig
fdb005a2f4 Fixed the path to the Perl interpreter. Bumped PKGREVISION. 2006-07-23 16:59:22 +00:00
rillig
097ba7d508 Needs a C compiler. 2006-07-23 16:47:11 +00:00
rillig
144a1ee175 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,
since they always need a C compiler, even when the source code is
completely in C++.

For some other packages, stated in the comment that a C compiler is
really not needed.
2006-07-22 04:46:13 +00:00
rillig
5156c34d24 When PKGSRC_RUN_TEST is set to "yes", Perl is needed. 2006-07-21 07:07:17 +00:00
rillig
2fe30e1c50 Needs a C compiler. 2006-07-21 05:28:26 +00:00
rillig
ec17e00008 Fixed the path to the Perl interpreter. Bumped PKGREVISION. 2006-07-21 05:27:21 +00:00
rillig
b7f3fb8b5b Needs a C compiler. 2006-07-21 05:17:30 +00:00
wiz
57e30bec58 Needs fortran. 2006-07-20 21:03:50 +00:00
joerg
57589ae2e1 Needs perl. 2006-07-20 12:32:02 +00:00
joerg
bf1adeebbb Needs intltool. 2006-07-19 10:08:12 +00:00
joerg
e19baeb3ba Uses C and C++. 2006-07-11 00:19:20 +00:00
jlam
06be53fba4 Completely nuke the concept of PKG_PHASE from pkgsrc except for the
purposes of caching MAKEVARS within bsd.pkg.mk and bsd.makevars.mk.
2006-07-10 22:59:26 +00:00
wiz
f141664ee0 Needs intltool, add it to tools. 2006-07-10 16:09:47 +00:00
drochner
83f5d0dc79 update to 1.1.3
changes:
* Added support for constants e, log2(e), log10(e), ln(2), ln(10), pi,
  pi/2, pi/4, 1/pi, 2/pi, 2/sqrt(pi), sqrt(2) and sqrt(1/2).
* Fixed bug with using global instead of evaluator specific symbol table
  variable in evaluator_get_variables() function.
2006-07-10 11:16:24 +00:00
joerg
8609d2573a Never run gengarbage, it can block the build infinitly. 2006-07-09 13:43:56 +00:00
jlam
c16221a4db Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.

For example, "make show-buildlink3" in fonts/Xft2 displays:

	zlib
	fontconfig
	    iconv
	    zlib
	    freetype2
	    expat
	freetype2
	Xrender
	    renderproto
2006-07-08 23:10:35 +00:00
jlam
9430e49307 Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
2006-07-08 22:38:58 +00:00
jlam
b7ebfd264d Add an explicit run-time dependency on perl because these packages
install perl scripts.  Bump the PKGREVISION for the dependency change.
2006-07-07 22:10:06 +00:00
jlam
8766e88011 Reorder sections to more closely follow pkgsrc Makefile guidelines. 2006-07-07 21:51:05 +00:00
adam
7489ae8db3 Changes 3.1.2:
* Correct bug in configure script: --enable-portable-binary option was ignored!
* Threads compilation fix on AIX: prefer xlc_r to cc_r, and don't use
  either if we are using gcc.
* Updated FAQ to note that Apple gcc 4.0.1 on MacOS/Intel is broken,
  and suggest a workaround.  configure script now detects Core/Duo arch.
* Use -maltivec when checking for altivec.h.
2006-07-07 18:02:01 +00:00