summaryrefslogtreecommitdiff
path: root/math
AgeCommit message (Collapse)AuthorFilesLines
2011-04-01Support staged installation.asau3-35/+65
2011-03-29As suggested by joerg@, set PTHREAD_AUTO_VARS="yes". This fixes the issuesjruoho1-1/+3
discussed in: http://mail-index.netbsd.org/pkgsrc-users/2011/01/24/msg013585.html
2011-03-18Pass CFLAGS to configure scripts, fixing problems on Mac OS X; clean up some ↵adam3-12/+18
pkglint issues.
2011-03-17update master_siteszafer1-2/+2
2011-03-17service suspended. fetch from backup.zafer2-4/+4
2011-03-17remove dead mirrorzafer1-2/+1
2011-03-17service suspended. fetch from backup.zafer2-4/+4
2011-03-15Add tex-kastrup{,-doc}.minskim1-1/+3
2011-03-15Import tex-kastrup-doc-2010 as math/tex-kastrup-doc.minskim4-0/+19
This is documentation for tex-kastrup.
2011-03-15Import tex-kastrup-2010 as math/tex-kastrup.minskim4-0/+21
This packages is for expandably converting numbers into binary, octal, and hexadecimal. All constructs TeX accepts as an argument to its \number primitive are valid.
2011-03-11update to 0.9.7drochner3-21/+36
many fixes and improvements -- see the NEWS file
2011-03-11update to 0.8drochner3-7/+8
changes: -added CHIPLOT format -bugfixes
2011-03-10build shared lib, bump PKGREVdrochner5-8/+50
2011-03-09Update to mpc-0.9asau2-7/+7
Prompted by Stathis Kamperis. Changes: * New functions + mpc_set_dc, mpc_set_ldc, mpc_get_dc, mpc_get_ldc for converting between mpc type variables and C variables of type double _Complex or long double _Complex + mpc_sin_cos, computing simultaneously the sine and cosine * Speed-ups + mpc_pow_si through binary exponentiation + mpc_pow_z when the exponent fits in a long + mpc_tan through the use of mpc_sin_cos * Bug fixes + trigonometric functions: infinite loop due to overflow for large arguments + exp: close to infinite loop for argument close to 0 + sqrt: close to infinite loop for argument close to 1 + add_si: replaced macro by function, since the macro evaluated the same expression twice * Logging feature for debugging ./configure --enable-logging #include "mpc-log.h" instead of #include "mpc.h" * Minimally required library versions: gmp 4.3.2, mpfr 2.4.2
2011-03-04Add tex-fp{,-doc}.minskim1-1/+3
2011-03-04Import tex-fp-doc-2010 as math/tex-fp-doc.minskim4-0/+20
This is documentation for tex-fp.
2011-03-04Import tex-fp-2010 as math/tex-fp.minskim4-0/+36
An extensive collection of arithmetic operations for fixed point real numbers of high precision.
2011-02-28Reset maintainer for retired developers.wiz2-4/+4
2011-02-26set CPAN's one as HOMEPAGE.obache1-1/+2
2011-02-25update to 1.10.13drochner2-8/+7
changes: -minir feature additions -bugfixes
2011-02-25Let's assume for now that everything that worked with python-2.6 alsowiz2-4/+4
works with python-2.7.
2011-02-21Bump PKGREVISION due to ABI change of ruby18-base.taca1-1/+2
2011-02-03Some clean up.obache1-12/+13
* No need automake to build. * clean up subst patterns, not to break shell script. * more 32bit and 64bit patterns * pass down prefered environments to build. * DL_LIBS came from dlopen.buildlinnk3.mk, need to buildlink.
2011-02-03Use SH instead of SHELL, from Francois Tigeot in PR 44503.wiz1-4/+4
2011-01-29Add upstream bug report URL.wiz2-3/+4
2011-01-29linux also has fmax()markd2-5/+5
2011-01-26Fix build with png-1.5. Problem reported by chuck.wiz2-1/+25
2011-01-25Pass LDFLAGS for linkingadam4-15/+15
2011-01-18Update chat/telepathy-logger, math/gcalctool, print/evince, sysutils/braserojmmv1-3/+3
and sysutils/nautilus-sendto to use the new devel/glib2/schemas.mk logic to properly recompile the GSettings database during install/deinstall. Bump PKGREVISION for these packages. (This lets evince work in my machine; it would crash on startup because it would not find its schema. I suspect this also fixes all the other applications mentioned in this change. And the inclusion of schemas.mk also prevents these packages from causing side-effects on the system if they happen to call glib-compile-schemas during their build.)
2011-01-17Update maintainer address, from PR 44404.dholland1-2/+2
2011-01-13remove a stale dependency (ride on last PKGREV bump)drochner1-2/+3
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz3-5/+6
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz21-39/+42
2011-01-12minor cleanupdrochner1-6/+2
2011-01-11update to 5.32.2drochner5-48/+117
This switches to the gnome-2.32 release branch.
2011-01-11update to 2.70drochner3-7/+11
sorry, no changelog available
2010-12-26Update to Maxima 5.23.0asau3-12/+78
No changelog available, this release contains improvement in quaternions, differential equations and minimisation (it includes COBYLA implementation).
2010-12-24Update to GLPK 4.45, this is bug fix release.asau2-7/+8
While here, convert to MASTER_SITE_GNU and support TEST_TARGET.
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty4-8/+8
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-12-12Update to 1.10.12:wiz3-87/+88
Gnumeric 1.10.12 Andreas: * Add argument to FOURIER to separate parts. * Extend TREND function to handle multiple regression. [#630085] * Fix selection for sheet object lists and combos. [#631322] * Preserve selection for sheet object lists when we change content. [#631327] * Add option to sheet object lists and combos to enter values rather than index. [#629333] * Fix manual pagebreak handling when printing. [#631570] * Add menu items to remove and add manual page breaks. * Improve the sc import. * Fix button sensitivity in sort dialog. [#632999] * Fix ODF export of files with large formatted sheets. [#634135] * Fix extensions of supported ODF files. [#635111] Hans de Goede: * Fix import of dib format images in XLS. [#553098] Jean: * Fixed maximum for col/row number in sheet resize dialog. [#631702] * Eliminate glade usage. [#631717] * Fixed crash in print setup. [#634149] * Fixed image bounds in zoomed sheets. Morten: * Fix crash related to broken xls. [#632050] * Fix print area problem from broken xls. * Fix printing crash. [#632439] * Partially fix problem with undefined names. [#633140] * Fix analysis tools problems when "as values" is chosen. * Fix gtk+/X crash with large tooltips. * Take care of dead kittens. * Fix text object clipping issue. [#634597] * Fix problem with disappearing window for empty file. [#634792] * Fix ranges-in-expression criticals. Sameer Morar: * Add key combinations to move sheets. [#634139] * Modify quit dialog to be able to discard multiple files without saving. [#527133]
2010-12-04Update ruby-rb-gsl package to 1.14.5.taca3-67/+10
Sun Nov 14 17:01:07 PST 2010 * Ruby/GSL 1.14.5 * Convert docs from rdtool to rdoc * Fix object id handling bugs on 64-bit systems * Fix Vector's handling of Range parameters Wed Sep 29 00:37:44 BOT 2010 * Modification for ruby-1.9.2 * Replaced STR2CSTR to StringValuePtr
2010-11-28update to 1.0.12drochner3-28/+6
changes: -Recently used files menu -fixes -translation updates
2010-11-26This part should not be in patch file.obache2-12/+3
2010-11-24Update to FriCAS 1.1.1asau4-8/+24
Notable changes since version 1.1.0: - New graphics framework. - Support for using GMP with sbcl on 32/64 bit AMD/Intel processors (to activate it one must use '--with-gmp' option to configure). - Improvements to integration and normalization. In particular integrals containing multiple non-nested roots should now work much faster. Also FriCAS now can compute more integrals of Liouvillian functions. - Several new special functions. - Improvements to efricas. - Looking for default init file FriCAS now first tries to use '.fricas.input' and only if that fails it looks for '.axiom.input'. Bug fixes, in particular: - Numeric atan, asin and acos took wrong branch. - WeierstrassPreparation package did not work. - Saving and restoring history should be now more reliable. - Fixed two bugs in Spad compiler related to conditional compilation. - Fixed a problem with rational reconstruction which affected guessing package.
2010-11-24update to 2.2.1drochner4-9/+29
changes: -misc fixes and feature additions -space saving / time improvements -needs py-cython-0.13
2010-11-24Update Libtommath to version 0.42.0agc2-8/+9
pkgsrc changes: + Add license + Update master site Changes since last pkgsrc version (0.39): July 23rd, 2010 v0.42.0 -- Fix for mp_prime_next_prime() bug when checking generated prime -- allow mp_shrink to shrink initialized, but empty MPI's -- Added project and solution files for Visual Studio 2005 and Visual Studio 2008. March 10th, 2007 v0.41 -- Wolfgang Ehrhardt suggested a quick fix to mp_div_d() which makes the detection of powers of two quicker. -- [CRI] Added libtommath.dsp for Visual C++ users. December 24th, 2006 v0.40 -- Updated makefile to properly support LIBNAME -- Fixed bug in fast_s_mp_mul_high_digs() which overflowed (line 83), thanks Valgrind!
2010-11-18Remove superfluous dependencies, found by Dennis den Brok.wiz1-6/+2
Bump PKGREVISION.
2010-11-15PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnomeabs17-32/+34
2010-11-13Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES.shattered1-2/+2
2010-11-08Remove PHTHON_VERSIONS_INCOMPATIBLE, all versions in the list are not in pkgsrc.obache1-2/+1