summaryrefslogtreecommitdiff
path: root/math (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Fix a typographical error in CFLAGS; while here, respect {LD,CPP}FLAGS.Martin Wilke2009-12-261-2/+4
| | | | | | | Submitted by: maintainer via private mail Notes: svn path=/head/; revision=246723
* - Update to 1.10Martin Wilke2009-12-252-4/+4
| | | | | | | | | | | | Changes: http://cpansearch.perl.org/src/AMS/Math-Random-MT-1.10/Changes PR: 140207 Submitted by: ehaupt@ Approved by: maintainer timeout Notes: svn path=/head/; revision=246669
* - update to 1.2Dirk Meyer2009-12-252-4/+4
| | | | Notes: svn path=/head/; revision=246607
* - Remove test-only and included-in-perl-5.8 dependencies.Jun Kuriyama2009-12-251-3/+1
| | | | Notes: svn path=/head/; revision=246603
* - Fix build after math/R updateMartin Wilke2009-12-2514-1355/+44
| | | | | | | Submitted by: wen@, "b. f." <bf1783@googlemail.com> Notes: svn path=/head/; revision=246594
* - Update to 2.10.1Martin Wilke2009-12-253-8495/+161
| | | | | | | | Submitted by: "b. f." <bf1783@googlemail.com> Thanks to: wen@ Notes: svn path=/head/; revision=246593
* Update to libmpc version 0.8.1 which brings the following changes:Gerald Pfeifer2009-12-212-4/+4
| | | | | | | | | | | | | - Bug fixes: . acosh, asinh, atanh: swap of precisions between real and imaginary parts . atan: memory leak . log: wrong ternary value in data file; masked by bug in Mpfr 2.4.1 PR: 141825 Submitted by: bf1783@gmail.com Notes: svn path=/head/; revision=246340
* For ports maintained by ports@FreeBSD.org, remove names and/orDoug Barton2009-12-2140-77/+2
| | | | | | | | | | | e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports. Notes: svn path=/head/; revision=246327
* - Get rid python-2.3 and python-3.0 (no longer under developement)Martin Wilke2009-12-184-66/+0
| | | | | | | Reviewed by: alexbl, clsung, pav Notes: svn path=/head/; revision=246131
* Update to 1.9.17.Joe Marcus Clarke2009-12-183-8/+10
| | | | Notes: svn path=/head/; revision=246125
* Update to 5.28.2.Joe Marcus Clarke2009-12-182-4/+4
| | | | Notes: svn path=/head/; revision=246123
* - Update to 0.07Martin Wilke2009-12-183-9/+8
| | | | | | | | | PR: 140738 Submitted by: Sahil Tandon <sahil@tandon.net> Approved by: maintainer timeout Notes: svn path=/head/; revision=246083
* Update to 15.0.1Emanuel Haupt2009-12-172-5/+4
| | | | Notes: svn path=/head/; revision=246057
* Update to 5.20.1Max Brazhnikov2009-12-173-8/+10
| | | | | | | | PR: ports/141455 Submitted by: maintainer Notes: svn path=/head/; revision=246056
* Add 'check' as an alias for 'regression-tests', since it's advertisedAlex Dupre2009-12-172-2/+2
| | | | | | | | | by the gmp build. Submitted by: Mikhail Teterin Notes: svn path=/head/; revision=246047
* Teaching about FreeBSD-9.Thierry Thomas2009-12-161-3/+4
| | | | | | | Reported by: pointyhat via erwin Notes: svn path=/head/; revision=246017
* - Update to 1.90Nicola Vitale2009-12-163-17/+125
| | | | | | | - Add graphics/py-imaging to RUN_DEPENDS Notes: svn path=/head/; revision=245974
* - Update post-patch sectionEmanuel Haupt2009-12-152-3/+3
| | | | | | | | | | - Update WWW - Bump PORTREVISION Submitted by: George Gesslein II <georgegesslein@gmail.com> (author) Notes: svn path=/head/; revision=245831
* - Update to 1.8.6Martin Wilke2009-12-134-21/+21
| | | | | | | | PR: 141295 Submitted by: Ports Fury Notes: svn path=/head/; revision=245651
* Update to 15.0.0Emanuel Haupt2009-12-112-4/+4
| | | | Notes: svn path=/head/; revision=245536
* - Upgraded to 4.0Greg Larkin2009-12-0917-300/+1298
| | | | | | | - Take maintainership Notes: svn path=/head/; revision=245429
* This port has been broken for 3+ months, thusPav Lucistnik2009-12-087-0/+14
| | | | | | | | | - Mark DEPRECATED and schedule for expiration in one month With hat: portmgr Notes: svn path=/head/; revision=245413
* - UnbreakPav Lucistnik2009-12-088-3/+73
| | | | | | | | PR: ports/139444 Submitted by: Stas Timokhin <stast@bsdportal.ru> Notes: svn path=/head/; revision=245410
* As with other Pseudo-Random Number Generator (PRNG) algorithms like theWen Heping2009-12-075-0/+51
| | | | | | | | | | | | | | | | | Mersenne Twister (see Math::Random::MT), this algorithm is designed to take some seed information and produce seemingly random results as output. However, ISAAC (Indirection, Shift, Accumulate, Add, and Count) has different goals than these commonly used algorithms. In particular, it's really fast - on average, it requires only 18.75 machine cycles to generate a 32-bit value. This makes it suitable for applications where a significant amount of random data needs to be produced quickly, such solving using the Monte Carlo method or for games. WWW: http://search.cpan.org/dist/Math-Random-ISAAC-XS/ Notes: svn path=/head/; revision=245340
* As with other Pseudo-Random Number Generator (PRNG) algorithms like theWen Heping2009-12-075-0/+46
| | | | | | | | | | | | | | | | | Mersenne Twister (see Math::Random::MT), this algorithm is designed to take some seed information and produce seemingly random results as output. However, ISAAC (Indirection, Shift, Accumulate, Add, and Count) has different goals than these commonly used algorithms. In particular, it's really fast - on average, it requires only 18.75 machine cycles to generate a 32-bit value. This makes it suitable for applications where a significant amount of random data needs to be produced quickly, such solving using the Monte Carlo method or for games. WWW: http://search.cpan.org/dist/Math-Random-ISAAC/ Notes: svn path=/head/; revision=245337
* Update to 1.9.16.Koop Mast2009-12-063-6/+12
| | | | Notes: svn path=/head/; revision=245279
* Chase math/gsl update,Max Brazhnikov2009-12-0118-22/+77
| | | | | | | bump PORTREVISION Notes: svn path=/head/; revision=245074
* Update to 1.13Max Brazhnikov2009-12-013-5/+5
| | | | | | | | PR: ports/138700 Submitted by: bf <bf1783 at gmail.com> (maintainer) Notes: svn path=/head/; revision=245073
* The FreeBSD KDE is please to announce the release of KDE 4.3.4,Martin Wilke2009-12-011-3/+3
| | | | | | | | | | a bugfix, translation and maintenance update. Release note can be found at http://kde.org/announcements/announce-4.3.4.php We'd like to say thanks to all helpers and submitters. Notes: svn path=/head/; revision=245064
* Update to 2.4.2 release.Alex Dupre2009-12-012-5/+12
| | | | Notes: svn path=/head/; revision=245052
* - Update to 4.8.4Wen Heping2009-12-012-5/+4
| | | | | | | | PR: ports/140987 Submitted by: "Pedro F. Giffuni" <giffunip@tutopia.com> Notes: svn path=/head/; revision=245046
* Update to 14.6.3Emanuel Haupt2009-11-292-4/+4
| | | | Notes: svn path=/head/; revision=244978
* Presenting GNOME 2.28.1 for FreeBSD. The official release notes for thisJoe Marcus Clarke2009-11-283-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.28/ . Officially, this is mostly a polishing release in preparation for GNOME 3.0 due in about a year. On the FreeBSD front, though, a lot went into this release. Major thanks goes to kwm and avl who did a lot of the porting work for this release. In particular, kwm brought in Evolution MAPI support for better Microsoft Exchange integration. Avl made sure that the new gobject introspection repository ports were nicely compartmentalized so that large dependencies aren't brought in wholesale. But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself) contributed to this release. Other major improvements include an updated HAL with better volume probing code, ufsid integration, and support for volume names containing spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord; an updated Gimp; and a preview of the new GNOME Shell project (thanks to Pawel Worach). The FreeBSD GNOME Team would like to that the following additional contributors to this release whose patches and testing really helped make it a success: Andrius Morkunas Dominique Goncalves Eric L. Chen J.R. Oldroyd Joseph S. Atkinson Li Pawel Worach Romain Tartière Thomas Vogt Yasuda Keisuke Rui Paulo Martin Wilke (and an extra shout out to miwi and pav for pointyhat runs) We would like to send this release out to Alexander Loginov (avl) in hopes that he feels better soon. PR: 136676 136967 138872 (obsolete with new epiphany-webkit) 139160 134737 139941 140097 140838 140929 Notes: svn path=/head/; revision=244923
* - Chase relocation of net/mpich2Thierry Thomas2009-11-2815-67/+67
| | | | | | | | | - Bump PORTREVISION if needed - Fix some portlint errors. Notes: svn path=/head/; revision=244904
* - Chase graphics/proj shlib bumpMartin Wilke2009-11-271-1/+2
| | | | Notes: svn path=/head/; revision=244872
* - Update my mail address to FreeBSDSylvio Cesar Teixeira2009-11-272-2/+2
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=244870
* The KDE FreeBSD team is proud to announce the release of KDE 4.3.3Martin Wilke2009-11-273-6/+5
| | | | | | | | | | | | | | | | for FreeBSD. For lists of bugfixes and improvements please see: http://www.kde.org/announcements/changelogs/changelog4_3_1to4_3_2.php http://www.kde.org/announcements/changelogs/changelog4_3_2to4_3_3.php The KDE FreeBSD team would like to say thanks to all the helpers and submitters. Tested by: pointyhat-exp-run (myself) Notes: svn path=/head/; revision=244822
* - Update to 2.0.10Martin Wilke2009-11-276-14/+30
| | | | Notes: svn path=/head/; revision=244815
* Update to 1.9.15.Joe Marcus Clarke2009-11-263-6/+17
| | | | Notes: svn path=/head/; revision=244796
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-221-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244657
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-203-0/+3
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244567
* - Update to 4.3.1Sylvio Cesar Teixeira2009-11-204-8/+8
| | | | | | | | | PR: ports/139937 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> Approved by: maintainer (timeout > 14 days), miwi (mentor) Notes: svn path=/head/; revision=244564
* Enable for ia64 (remove from BROKEN).Marcel Moolenaar2009-11-201-2/+2
| | | | | | | No response from: maintainer (araujo@) Notes: svn path=/head/; revision=244493
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-191-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244489
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-181-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244447
* - Fix the build on FreeBSD9Wen Heping2009-11-181-5/+6
| | | | | | | | | PR: ports/140164 Submitted by: Wen Heping (myself) Approved by: Maintainer(timeout, >15 days) Notes: svn path=/head/; revision=244414
* SAGA - short hand for "System for Automated Geoscientific Analyses" - is a free,Martin Wilke2009-11-176-0/+237
| | | | | | | | | | | | | | | | | hybrid, cross-platform GIS software. The heart of SAGA is it's C++ and thus object oriented Application Programming Interface (API), providing data object definitions and computational methods for raster, vector and tabular data. As a normal user, you will not get into touch with the API. But as an interested scientist or coder you will soon discover it's great flexibility. WWW: http://www.saga-gis.org/en/index.html PR: ports/140559 Submitted by: rhurlin Notes: svn path=/head/; revision=244368
* - Update to 0.80Wen Heping2009-11-163-5/+7
| | | | Notes: svn path=/head/; revision=244311
* Disable on pointyhat until I can get a time-slice to figure out what'sMark Linimon2009-11-151-0/+4
| | | | | | | | | going wrong. Hat: portmgr Notes: svn path=/head/; revision=244304
* - Update my mail address to FreeBSDSylvio Cesar Teixeira2009-11-154-8/+17
| | | | | | | | | | | | | | | | | | - LICPTS is a new routine for calculating a Line Integral Convolution (LIC) image of a vector field. Some algorithm parameters can be modified with the new routine LICMOD and with the already existing routines STMOPT and STMVAL. - The routine TXTURE generates a texture image of random numbers that can be passed to the routine LICPTS as texture image. - The new routine CRVQDR plots a coloured surface from quadrangles similar to CRVTRI that plots triangles. A smooth surface can be selected with the routine SHDMOD - CRVT3D plots a curve in 3-D like CURV3D, but can show different thicknesses and colours at curve segments. - The new routine IMGTPR defines a transparency colour for images that are plotted by routines such as WPIXLS, WPXROW and INCFIL. Pixels with the transparency colour will not be copied to the output format. - MRKCLR defines the colour of symbols plotted by CURVE. The option is useful if symbols and lines are plotted by CURVE. The colour defined by MRKCLR will alse be displayed in legends. - The routines ZBFMOD and DBFMOD can disable the Z-buffer and depth sort in Dislin - Version 2.0 of the GSHHS shorelines managed by Paul Wessel is now supported by Dislin - Bump due the these changes - Plist update due of all these changes Approved by: miwi (mentor) Notes: svn path=/head/; revision=244279