aboutsummaryrefslogtreecommitdiffstats
path: root/math
Commit message (Collapse)AuthorAgeFilesLines
* Correct a configure-misdetection which went unnoticed until now, but causesMichael Nottebrock2004-08-011-0/+4
| | | | breakage with gcc 3.4.
* Update to version 1.2.9Kirill Ponomarev2004-07-314-6/+12
| | | | | PR: ports/69817 Submitted by: Ports Fury
* Add math/p5-Bit-Vector-Minimal, a minimalistic variant ofAnton Berezin2004-07-285-0/+43
| | | | math/p5-Bit-Vector.
* Use the correct version of libtool 13 -> 15 to avoid install the *.la files.Jeremy Messenger2004-07-281-1/+1
| | | | Submitted by: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
* only show i386 options to i386Ying-Chieh Liao2004-07-241-3/+7
| | | | | PR: 69488 Submitted by: maintainer
* Move pkg's files to Makefile, remove pkg-plist.Sergey A. Osokin2004-07-212-2/+2
| | | | Approved by: Jason Harris jharris at widomaker dot com (maintainer)
* Update to 0.9.3.Akinori MUSHA2004-07-203-10/+48
|
* Add a new shared extension for PHP.Alex Dupre2004-07-193-0/+29
|
* Add a new shared extension for PHP.Alex Dupre2004-07-191-0/+1
|
* Add a new shared extension for PHP.Alex Dupre2004-07-193-0/+29
|
* Add a new shared extension for PHP.Alex Dupre2004-07-191-0/+1
|
* o) Update to 5.1.16, with the following fixes:Lars Koeller2004-07-192-6/+4
| | | | | | | | | | * PDF driver updated to work with PDFlib-6 (rep. #1426). Minimal supported version is now 5.0 -> These unbreaks the build * set scrolling of the custom ticks/labels table to 1 row per click (rep. #1419) * updates relevant to the status of mailing lists/forums * added option to generate PDF-1.4 format (Acrobat5). Support for PDF-1.2 (Acrobat3) removed * replaced meaningless error message issued when trying to load data with a few string columns as a single set * in the spreadsheet editor, the last entered cell's data wasn't committed (rep. #1420)
* Update to version 2.6.4Kirill Ponomarev2004-07-183-9/+24
| | | | | PR: ports/69188 Submitted by: Ports Fury
* Fix patch-file.Edwin Groothuis2004-07-171-6/+6
| | | | Noticed by: SANETO Takanori <sanewo@ba2.so-net.ne.jp>
* [math/gnuplot+] fix amd64 build failureEdwin Groothuis2004-07-162-14/+8
| | | | | | | | | | | | | | It is marked BROKEN on amd64 because FreeBSD/amd64 does not have some IEEE FP functions like fpresetsticky(). The build failure log is now available at http://pointyhat.freebsd.org/errorlogs/amd64-5-full/gnuplot371+-1.2.0_1.log I found file/patch-za causes the problem. The feature of this patch as reported in ports/16120 can take effect only on FreeBSD/i386. PR: ports/69143 Submitted by: NAKAJI Hiroyuki <nakaji@jp.freebsd.org>
* Fix build on 5.x and fix build with new X headers.Eric Anholt2004-07-154-7/+45
| | | | Reported by: pointyhat via kris
* In former commit I commented out all the blas options.Maho Nakata2004-07-141-2/+2
| | | | pointy hat to: myself
* Some options for BLAS are available (though they are hidden by default).Maho Nakata2004-07-142-2/+18
|
* 1) correct the names of shared libs for threaded versionMaho Nakata2004-07-144-5/+33
| | | | 2) Some Pentium 4 series have more caches (not 512kB, but 1M ~ 2M)
* Remove lapack dependency.Maho Nakata2004-07-141-2/+1
|
* Update to 3.7.5Maho Nakata2004-07-142-3/+3
|
* Update to 0.9.1.Akinori MUSHA2004-07-143-42/+6
|
* . Bump PORTREVISION (forgotten in previous commit).Greg Lewis2004-07-141-1/+1
|
* . Sort OPTIONS and the associated sections that deal with them.Greg Lewis2004-07-141-8/+15
| | | | | | . Add a GD option that compile gd support into gnuplot. Prompted by: Chris Burkert <chris@chrisburkert.de>
* - Unbreak package building.Lars Thegler2004-07-122-3/+4
| | | | | | | - Bump PORTREVISION Noticed by: kris Approved by: maintainer
* BROKEN: Does not buildKris Kennaway2004-07-121-0/+2
|
* Add p5-Geo-Distance 0.06, calculate Distances and Closest Locations.Lars Thegler2004-07-126-0/+88
| | | | | | PR: 68902 Submitted by: Rod Taylor <ports@rbt.ca> Approved by: erwin (implicit)
* Fix a "reinplaced" patch.Thierry Thomas2004-07-111-27/+1
|
* BROKEN: UnfetchableKris Kennaway2004-07-111-0/+1
|
* Upgrade to 1.41.Thierry Thomas2004-07-119-79/+244
|
* - Correct dependency on linux-pngPav Lucistnik2004-07-111-1/+1
| | | | | | Thank to Jean-Yves for spotting this and finding a solution. Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
* Remove CONFLICTS, it's not necessary anymore.Alexander Leidinger2004-07-102-2/+0
| | | | | Submitted by: marius Approved by: maintainer timeout
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-1013-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet
* - Unbreak build by using gmake all over the place. Without this, $< in MakefilesPav Lucistnik2004-07-091-3/+3
| | | | are not expanded and perl hangs on tty input during build
* Use the new GConf handling policy, this will be required for GNOME 2.7/2.8 orJeremy Messenger2004-07-082-8/+4
| | | | | | | | | | | | those ports will not work. Please see the more detail about this: http://lists.freebsd.org/pipermail/freebsd-gnome/2004-June/007253.html Also, please check http://www.freebsd.org/gnome/docs/porting.html for the update about gconf, gconf.pl script and etc. Approved by: marcus (portmgr hat) Reviewed by: My team, FreeBSD GNOME Team
* Chase libgsl-updateVolker Stolz2004-07-074-4/+4
|
* Chase libgsl-updateVolker Stolz2004-07-071-1/+1
| | | | | | PR: ports/68749 Submitted by Jon Drews and: kiril@
* - Update to 1.5Volker Stolz2004-07-063-6/+9
| | | | | | | - Assign maintainership to submitter PR: ports/68715 Submitted by: Jonathan Drews
* Update to version 1.2.7Kirill Ponomarev2004-07-036-21/+21
| | | | | PR: ports/68634 Submitted by: Ports Fury
* Remove libgmp-freebsd, superseded by libgmp4.Alexander Leidinger2004-07-021-1/+0
|
* Remove expired port, it's superseded by math/libgmp4.Alexander Leidinger2004-07-026-714/+0
| | | | Reminded by: marius
* Update to 0.20105Erwin Lansing2004-07-022-3/+3
| | | | Approved by: maintainer (implicit)
* - Fix optional dependency on unexistant portPav Lucistnik2004-07-022-4/+3
| | | | | | | | - WANT_ -> WITH_ - Portlint PR: ports/68567 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu>
* Update to 1.2.13.Joe Marcus Clarke2004-06-303-120/+9
|
* Update to 0.4.6.Akinori MUSHA2004-06-293-31/+72
|
* Fix OPTIONSKirill Ponomarev2004-06-281-6/+7
| | | | | PR: ports/68388 Submitted by: Ports Fury
* Update to version 0.9.13Kirill Ponomarev2004-06-284-13/+22
| | | | | PR: ports/68387 Submitted by: Ports Fury
* - Fix WITH_SSE on 4.x by using gcc-3.3Pav Lucistnik2004-06-271-1/+4
| | | | | | | - Update MASTER_SITES PR: ports/68407 Submitted by: michael johnson <ahze@rgv.net> (maintainer)
* Add ruby-fftw3, Ruby bindins for fftw3 library.Pav Lucistnik2004-06-275-0/+49
| | | | | PR: ports/68310 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* - Update to 1.9.1Pav Lucistnik2004-06-262-3/+3
| | | | | PR: ports/68336 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu> (maintainer)
* . Chase print/pdflib updates. While this change fixes compilation and isGreg Lewis2004-06-262-1/+14
| | | | | my best guess at what needs to happen so far, PDF file generation currently appears broken.
* - Update to 1.9.1Pav Lucistnik2004-06-263-8/+12
| | | | | PR: ports/68295 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu> (maintainer)
* - Chase the pdflib shared libraryAlex Dupre2004-06-251-2/+2
| | | | - Bump PORTREVISION
* Drop maintainershipMario Sergio Fujikawa Ferreira2004-06-244-4/+4
|
* Unbreak: Add dependency on devel/readline for systems that need itVolker Stolz2004-06-231-2/+3
|
* Remove BROKEN tag now that the port has been fixed.Kris Kennaway2004-06-221-7/+1
|
* Set an expiry date of 2004-08-20 for these BROKEN/IGNORE/FORBIDDENKris Kennaway2004-06-221-0/+2
| | | | | ports. They will be removed on or after that date if they are still broken and no fix has been submitted to GNATS.
* BROKEN on 5.x: Does not compileKris Kennaway2004-06-191-1/+7
|
* BROKEN on amd64: Shared libraries must be compiled with -fPICKris Kennaway2004-06-193-1/+15
|
* Add mbasecalc, a Programmer's Calculator.Pav Lucistnik2004-06-175-0/+49
| | | | | | | | | basecalc came with Xlib Programming Manual from O'Reilly as an example of X lib programming. mbasecalc is an immitation of basecalc which is available on different platforms. PR: ports/67993 Submitted by: Pierre-Paul Lavoie <ppl@nbnet.nb.ca>
* - Update to 0.4.2Pav Lucistnik2004-06-172-6/+4
| | | | | PR: ports/67992 Submitted by: Pierre-Paul Lavoie <ppl@nbnet.nb.ca>
* - Fix WWW:Kirill Ponomarev2004-06-151-1/+1
| | | | | PR: ports/67956 Submitted by: Pedro Giffuni <giffunip@asme.org>
* Explicitly specify CONFIGURE_TARGET to disable configure warningAndrey A. Chernov2004-06-141-1/+2
|
* . Update to 4.0.0. [1]Greg Lewis2004-06-136-129/+137
| | | | | | | | . Use OPTIONS. [2] PR: 65717 [1] Submitted by: Ports Fury [1] Morten Rodal <morten@rodal.no> [1] [2]
* Update to 4.1.3 release:Alex Dupre2004-06-1010-72/+14
| | | | | | | | | | o Upwardly binary compatible with 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0, and 3.x versions. o Bug fix to FFT multiplication code. o Bug fix to K6 assembly code for gcd. o Bug fix to IA-64 assembly code for population count. o Portability improvements, most notably functional AMD64 support. o Many minor bug fixes. o Make portlint happy.
* Update to version 3.2.3Michael Nottebrock2004-06-103-14/+3
|
* Backout 4.4.8 version which is actually from GNOME 2.7 series.Alexander Nedotsukov2004-06-093-5/+5
|
* Don't use gettext if not needed.Thierry Thomas2004-06-091-1/+1
|
* Update to 4.4.8Alexander Nedotsukov2004-06-083-6/+6
|
* - unbreak;Thierry Thomas2004-06-085-24/+52
| | | | - do some cleaning.
* Don't use Makefile.kde anymoreMarkus Brueffer2004-06-061-4/+3
|
* Sync with new bsd.autotools.mkAde Lovett2004-06-053-3/+4
|
* Mark DEPRECATED, libgmp-freebsd is no longer used by any FreeBSD portAlexander Leidinger2004-06-031-0/+3
| | | | | | | | | | | and is superseded by math/libgmp4. Other than libgmp-freebsd, libgmp4 builds on the main architectures supported by FreeBSD and is backwards- compatible to the former. Therefore libgmp4 should be used by new ports instead. Set EXPIRATION_DATE arbitrarily to 2004-07-01. Submitted by: marius
* Deal with the libgmp dependency properly:Alexander Leidinger2004-06-032-2/+29
| | | | | | | | | | | | | | | | | | | - Don't depend on math/libgmp-freebsd on FreeBSD <= 500023, use the base libgmp instead. On FreeBSD > 500023 depend on math/libgmp4, as math/libgmp-freebsd doesn't build on all architectures. - Don't add PREFIX/include and PREFIX/lib to the search paths by default, so on FreeBSD 4 the base libgmp is used. This protects from using one of the libgmp ports if installed without registering a dependency on it. - Keep from auto-detecting libgmp when WITHOUT_GMP is defined by specifying the arithmetic to use. Note: When using auto-detection and libgmp can't be found ndiff normally would check for extended precision arithmetic first and succeed with it. But using extended precision arithmetic causes the test suite to fail (i.e. lots of differences) on all architectures expect sparc64. Therefore specify double precision arithmetic for all other architectures when built with WITHOUT_GMP. Submitted by: marius
* - Performance tweaks: enable SSE2 for libfftw, don't force 16-byte aligned ↵Pav Lucistnik2004-05-312-2/+24
| | | | | | | malloc PR: ports/67393 Submitted by: michael johnson <ahze@ahze.net> (maintainer)
* Don't create bogus doc directoryKris Kennaway2004-05-311-4/+6
|
* Update to version 4.4.Dmitry Sivachenko2004-05-314-19/+8
|
* BROKEN on amd64: Needs to link against shared libraryKris Kennaway2004-05-301-1/+7
|
* - Update to version 1.2.6Kirill Ponomarev2004-05-293-5/+5
| | | | | PR: ports/67294 Submitted by: Ports Fury
* - Build and install fftwf libraryPav Lucistnik2004-05-292-4/+63
| | | | | | | - Add new knob to enable SSE optimizations PR: ports/67271 Submitted by: michael johnson <ahze@ahze.net> (maintainer)
* A graph manipulation library for Objective Caml.Joseph Koshy2004-05-285-0/+315
|
* Update to 1.2.3:Christian Weisgerber2004-05-283-16/+3
| | | | | - Small fixes. - Translation updates.
* Add jags, Just Another Gibbs Sampler. A program for Bayesian analysis ofPav Lucistnik2004-05-276-0/+441
| | | | | | | graphical models via Gibbs sampling, not wholy unlike classic BUGS. PR: ports/66648 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu>
* - Drop pkg-message, author removed restriction from licencePav Lucistnik2004-05-252-26/+0
| | | | | PR: ports/66798 Submitted by: NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (maintainer)
* - Drop unneeded dependency on PerlPav Lucistnik2004-05-251-1/+0
| | | | | PR: ports/66759 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu> (maintainer)
* o) Unbreak compilation error on FreeBSD 5.2 (remove patch-ai)Lars Koeller2004-05-252-16/+1
|
* - Split libgsf port to two standalone ports:Pav Lucistnik2004-05-231-1/+2
| | | | | | | | | | | | | | | | * devel/libgsf is the old port minus gsf-gnome bits * devel/libgsf-gnome contains libgsf-gnome-1 library and it's header files This greatly reduces number of dependencies for ports that was using only non-gnome part of this library. - Point USE_GNOME parameter libgsf to GNOME-less port and create new parameter libgsf_gnome for libgsf-gnome port. - Convert all consumers of libgsf-gnome-1 library to depend on libgsf-gnome port (read all as: Gnumeric) PR: ports/63851 (in the spirit of) Submitted by: Sybolt de Boer <sybolt@xs4all.nl> Prodded by: lofi (KDE team) Reviewed by: marcus (GNOME team)
* Fix build dependency (math/blacs)Maho Nakata2004-05-221-0/+1
| | | | Submitted by: kris
* [1] broken for 4-STABLEMaho Nakata2004-05-221-2/+4
| | | | | | | [2] add math/qhull Submitted by: Kay Lehmann <kay_lehmann@web.de> [1] and [2] kris [1]
* use SITE_PERLErwin Lansing2004-05-211-7/+7
|
* Fix perl port of the day as a present for kris.Erwin Lansing2004-05-211-1/+7
| | | | | | Happy birthday! Mark IGNORE for perl < 5.6.0
* - Update MASTER_SITESKirill Ponomarev2004-05-181-1/+1
| | | | | PR: ports/66794 Submitted by: maintainer
* - Update to version 1.0.0Kirill Ponomarev2004-05-182-4/+4
| | | | | PR: ports/66754 Submitted by: Ports Fury
* add perl5 build dependYing-Chieh Liao2004-05-171-0/+1
| | | | Noticed by: bento via kris
* Add libRmath 1.9.0, the standalone math library from R.Kirill Ponomarev2004-05-154-0/+67
| | | | | PR: ports/66644 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu>
* add lambda 0.1.4Ying-Chieh Liao2004-05-144-0/+59
| | | | A lambda calculus interpreter
* Updated to 1.03Sergey Skvortsov2004-05-112-3/+3
|
* This version of octave-forge doens't compile any more with theMaho Nakata2004-05-111-1/+9
| | | | | | | good old gcc-2.95. The newly introduced xmlread-stuff requires >gcc-3.x. Maintainer doens't mark this port as broken, but set USE_GCC instead. Suggested by: Kay Lehmann <kay_lehmann@web.de>
* Initiate de-orbit burn: Even the mastersite warns not to use the outdatedVolker Stolz2004-05-101-0/+3
| | | | | | | | | FreeBSD-port because of its many bugs. Note that an update might prove to be non-trivial since 0.3.99 depends on a CVS-version of libzvt which we don't have in the ports-tree yet. Any volunteers can use http://www.foldr.org/~stolz/bsd/rcalc-0.2.6.diff as a starting point.
* - Update to version 1.2.5Kirill Ponomarev2004-05-104-7/+6
| | | | | PR: ports/66395 Submitted by: Ports Fury
* Add math/octave-forge, adding many features such as sparce matrix treatment,Maho Nakata2004-05-089-0/+842
| | | | | fast fourier transformation, Statistics, Optimizations and more to math/octave.
* Upgrade to 1.40.Thierry Thomas2004-05-075-22/+11
|
* Make portlint happy by replacing space to tabMaho Nakata2004-05-078-36/+36
| | | | | PR: 65409 Submitted by: trevor
* update to 2.1.57Maho Nakata2004-05-076-18/+34
|
* Update to 1.2.12Alexander Nedotsukov2004-05-062-4/+4
|
* update to 2.1.53Maho Nakata2004-05-066-28/+92
|
* Unbreak on -STABLE.Volker Stolz2004-05-042-3/+13
| | | | | | | Having -pipe in CFLAGS would break the build: http://docs.freebsd.org/cgi/mid.cgi?20040503181426.GB12673 Approved by: linimon (mentor)
* unzip is a BUILD_DEPENDS since it is used in the install phase.Kris Kennaway2004-05-031-1/+2
|
* math/R-project port was renamed to math/RPav Lucistnik2004-04-307-8295/+3
| | | | | | PR: ports/65809 Submitted by: pav Repocopy by: marcus
* Remove directories if they are emptyTilman Keskinoz2004-04-301-0/+14
| | | | | PR: 65999 Submitted by: Kay Lehmann
* - Fix WWW:Kirill Ponomarev2004-04-291-1/+1
| | | | | PR: ports/66072 Submitted by: maintainer
* Add qhull 1.0, qhull computes convex hulls, Delaunay triangulationsThierry Thomas2004-04-2915-0/+317
| | | | | | | | | and halfspaces. Remark: submitter time-out -> maintainership assigned to ports@. PR: 63693 Submitted by: pusto@web.de
* Update to 1.2Tilman Keskinoz2004-04-202-3/+3
| | | | | PR: 65749 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* Update to 1.0.3Tilman Keskinoz2004-04-202-3/+3
| | | | | PR: 65750 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* Update to KDE 3.2.2Michael Nottebrock2004-04-202-2/+13
|
* - Rename math/R-letter to math/R-project.Pav Lucistnik2004-04-2010-8311/+5
| | | | | | | | | | | - Remove math/R-a4 slave port. A4 format is now default. If you need letter or other paper formats, define PAPERSIZE when building the port. Note that renaming to math/R was declined by marcus (portmgr) because we're not sure if single-letter port name break something. Requested by: maintainer Repocopy by: marcus
* - Update to 1.9.0Pav Lucistnik2004-04-209-6351/+6750
| | | | | | PR: ports/65519 Submitted by: Rong-En Fan <rafan@infor.org> This patch by: Eric van Gyzen <vangyzen@stat.duke.edu> (maintainer)
* Update to 1.2.11.Joe Marcus Clarke2004-04-203-20/+3
|
* Resurrect ruby-gsl and update to 0.3.9.Akinori MUSHA2004-04-195-0/+268
|
* Update to 0.6.2.Akinori MUSHA2004-04-192-3/+3
|
* After repocopy from math/fftw, add fftw 3.0.1, a fast C library for computingPav Lucistnik2004-04-186-53/+37
| | | | | | | Discrete Fourier Transform. Version 3.x is API incompatible with fftw 2.x PR: ports/65559 Submitted by: michael johnson <ahze@ahze.net>
* Fix build depends sectionMaho Nakata2004-04-171-1/+2
| | | | Submitted by: kris (bento)
* Add missing files and manpagesKris Kennaway2004-04-162-0/+3
|
* Update description (approved by maintainer)Volker Stolz2004-04-161-3/+6
| | | | | | PR: ports/65441 Submitted by: Radim Kolar Approved by: linimon (mentor)
* Fix typo: LOCALBASE -> PREFIX; when installingMario Sergio Fujikawa Ferreira2004-04-151-2/+2
|
* Add missing dirrm'sErwin Lansing2004-04-151-0/+2
| | | | Submitted by: dosirak
* o Override distfile's install procedure so that the port does notMario Sergio Fujikawa Ferreira2004-04-141-2/+13
| | | | | | | | inadvertently mess directory permissions under LOCALBASE o Therefore, remove BROKEN o Bump PORTREVISION since users should update to this fixed version Prompted by: kris
* Add missing fileKris Kennaway2004-04-131-0/+1
|
* BROKEN: Changes permissions on /usr/local and /usr/local/libKris Kennaway2004-04-131-0/+2
|
* Update to 1.2.10.Joe Marcus Clarke2004-04-132-3/+3
|
* Per distfile survey, remove Debian as a mastersite. I cannot find anyMark Linimon2004-04-131-2/+1
| | | | | | current version of this port under Debian. (Note: the source code to this port is very old). If anyone knows of a better mastersite these days, please speak up.
* er distfile survey, remove obsolete mastersite. It points to the URLMark Linimon2004-04-131-1/+1
| | | | | | contained in the pkg_descr, but when I tried to access that site, I was told I was not a member of that group -- not a very useful method of software distribution IMHO.
* remove ${CP} ${FILESDIR}/Makefile ${WRKDIR} in Makefile.Maho Nakata2004-04-131-5/+0
| | | | | | | library no longer supported for sdpara (unlike sdpa) Submitted by: kris via bento Pointy hat to: myself
* a) unbreak. silent distfile updateMaho Nakata2004-04-132-5/+3
| | | | | | | | | | | distfile has been updated at 2004/April/10th and according to http://crd.lbl.gov/~xiaoye/SuperLU/ o Include "symmetric mode" b) change portversion Submitted by: kris via bento
* BROKEN: Size mismatchKris Kennaway2004-04-131-0/+2
|
* BROKEN on sparc64: Does not compileKris Kennaway2004-04-121-2/+2
|
* BROKEN: This does not compile on i386 eitherKris Kennaway2004-04-121-6/+2
|
* Tidy up whitespace.Trevor Johnson2004-04-114-5/+5
|
* Trim whitespace.Trevor Johnson2004-04-111-10/+10
|
* Update to 1.2.9.Joe Marcus Clarke2004-04-082-4/+3
|
* - tar -> ${TAR} (since we have now a bsdtar ;)Clement Laforet2004-04-071-1/+1
|
* lha is an EXTRACT_DEPENDS, not BUILD_DEPENDSKris Kennaway2004-04-061-1/+1
|
* Chase the glib20 update, and bump all affected ports' PORTREVISIONs.Joe Marcus Clarke2004-04-058-3/+8
|
* forgot to update distinfoMaho Nakata2004-04-041-2/+2
| | | | Submitted by: Kay Lehmann <kay_lehmann@web.de>
* - Update to version 1.2.4Kirill Ponomarev2004-04-035-15/+25
| | | | | PR: ports/65088 Submitted by: Ports Fury
* Remove category pkg/COMMENT files in favour of a COMMENT variable in theKris Kennaway2004-04-022-1/+2
| | | | | | | category makefile. Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> PR: 59651
* Update to 1.2.2. Changes in this release:Christian Weisgerber2004-04-022-3/+3
| | | | | | * several bugfixes * [EE] shortcut * updated translations
* update to 3.0Maho Nakata2004-04-015-40/+23
| | | | Noticed by: pav (long long ago) and Ricardo <ragomes@sc.usp.br>
* - Honour CC/CFLAGSKirill Ponomarev2004-04-012-16/+13
| | | | | | | | - Add DOCSDIR - portlint PR: ports/65015 Submitted by: michael johnson <ahze@ahze.net>
* SIZEify (maintainer timeout)Trevor Johnson2004-03-3176-0/+77
|
* - Use USE_ICONV knobKirill Ponomarev2004-03-311-1/+1
| | | | Approved by: portmgr
* Unfortunately, the recent changes to math/xgfe (PR 59024) broke itsAlexander Leidinger2004-03-3127-180/+353
| | | | | | | | | | | | | | | | | | | | compilation on FreeBSD 4 with GCC 2.95.4: http://bento.freebsd.org/errorlogs/i386-4-latest/xgfe-2.1.log The patch below fixes this. During testing it on FreeBSD 4 and 5 with QT 3.3.1 I noticed that the Advanced -> Multiple Files and Advanced -> Multiple Functions dialogs were broken. I'm not sure if this is a new breakage with QT 3.3.1 or if I didn't notice these when testing the previous patch on FreeBSD 5 with QT 3.2.1. Anyway, these are also fixed and as a precaution PORTREVISION is bumped. The patch also adds SIZE info. PR: 64390 Submitted by: Marius Strobl <marius@alchemy.franken.de> Approved by: maintainer
* make portlint happyMaho Nakata2004-03-302-5/+5
|
* real fix for PR:64692Maho Nakata2004-03-302-15/+16
| | | | | PR: 64692 Submitted by: Kay Lehmann <kay_lehmann@web.de>
* Fix build on amd64 (compile shared libraries with -fPIC)Kris Kennaway2004-03-291-0/+11
|
* - SIZEifyMarkus Brueffer2004-03-291-0/+1
| | | | | Submitted by: trevor Approved by: arved (mentor)
* * Add SIZE. [1]Oliver Braun2004-03-272-1/+2
| | | | | | * s/brandelf/${BRANDELF}/. Submitted by: maintainer [1]
* unbreak for 4-STABLE i386 and alphaMaho Nakata2004-03-271-13/+14
| | | | | PR: 64692 (loosely depended on) Submitted by: Kay Lehmann <kay_lehmann@web.de> and kris via bento
* make portlint happyMaho Nakata2004-03-272-2/+1
| | | | Submitted by: kris
* - Add CONFLICTS between math/netcdf and science/hdf, they both installPav Lucistnik2004-03-251-0/+2
| | | | | | | same binaries. PR: ports/64646, ports/64647 Submitted by: Kay Lehmann <kay_lehmann@web.de>
* omit . in pkg-descrMaho Nakata2004-03-231-1/+2
| | | | Submitted by: Makoto Yamashita <Makoto.Yamashita@is.titech.ac.jp>
* Update to 4.3.51.Joe Marcus Clarke2004-03-233-4/+119
|
* Add SIZE data.Akinori MUSHA2004-03-226-0/+6
| | | | Submitted by: trevor
* Update to 1.2.1. Changes in this release:Christian Weisgerber2004-03-213-4/+4
| | | | | | | * formula entry mode * right mouse button click gives popup menu * translation updates * bug fixes
* - Update to version 3.5.1Kirill Ponomarev2004-03-217-114/+16
| | | | | PR: ports/64507 Submitted by: Ports Fury
* Do not hardcord PICFLAGMaho Nakata2004-03-202-14/+2
| | | | Submitted by: ru
* Backout previous change of PICFLAG, sinceMaho Nakata2004-03-192-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | behaviour of -fPIC and -fpic are different. Here is the comment form obrien: -- "-fpic" is a [minor?] optimization for machines that can handle it: -fpic Generate position-independent code (PIC) suitable for use in a shared library, if supported for the target machine. Such code accesses all constant addresses through a global offset table (GOT). The dynamic loader resolves the GOT entries when the program starts (the dynamic loader is not part of GCC; it is part of the operating system). If the GOT size for the linked executable exceeds a machine-specific maximum size, you get an error message from the linker indicating that -fpic does not work; in that case, recompile with -fPIC instead. (These maximums are 16k on the m88k, 8k on the SPARC, and 32k on the m68k and RS/6000. The 386 has no such limit.) -fPIC If supported for the target machine, emit position-independent code, suitable for dynamic linking and avoiding any limit on the size of the global offset table. This option makes a difference on the m68k, m88k, and the SPARC. Thanks to: obrien
* SIZEifyMaho Nakata2004-03-196-4/+41
| | | | Submitted by: trevor
* make it fetchable againYing-Chieh Liao2004-03-191-4/+2
|
* -fPIC is appropreate on all architectures.Maho Nakata2004-03-192-12/+0
| | | | Submitted by: kris
* Add size data, approved by maintainers.Trevor Johnson2004-03-192-0/+2
|
* Add size data, approved by maintainers.Trevor Johnson2004-03-196-0/+7
|
* - Add SIZE to GNOME portsPav Lucistnik2004-03-181-0/+1
| | | | Submitted by: trevor
* - Fix typo in CATEGORIES and pet portlintKirill Ponomarev2004-03-181-6/+6
| | | | Submitted by: Mihai Tetcu <itetcu@apropo.ro>
* BROKEN on amd64 and ia64: Does not compileKris Kennaway2004-03-181-1/+7
|
* The SDPARA (SemiDefinite Programming Algorithm PARAllel version)Maho Nakata2004-03-187-0/+162
| | | | | | is a parallel version of the SDPA (math/sdpa). solving SDPs in parallel with the help of MPI (Message Passing Interface) and ScaLAPACK (Scalable LAPACK).
* BROKEN: Distfile is unfetchableKris Kennaway2004-03-181-0/+2
|
* Add size info.Mark Murray2004-03-181-0/+1
|
* Add SIZE data.Hye-Shik Chang2004-03-181-0/+1
| | | | Submitted by: trevor
* SIZEifyYing-Chieh Liao2004-03-181-0/+1
| | | | Submitted by: trevor
* Add size data.Trevor Johnson2004-03-181-0/+1
| | | | Approved by: maintainers
* Add size data.Trevor Johnson2004-03-185-0/+7
| | | | Approved by: maintainers
* Update to 1.2.8.Joe Marcus Clarke2004-03-182-3/+3
|
* SIZEify.Trevor Johnson2004-03-185-0/+259
|
* Fix 'make describe' with older, buggy makes.Mark Linimon2004-03-171-1/+1
| | | | | | PR: ports/64109 Submitted by: Scott Lipcon <slipcon@mercea.net> Lesson learned the hard way by: linimon@FreeBSD.org
* Fix build on alpha 4-stableMaho Nakata2004-03-174-36/+54
| | | | Submitted by: kris via bento
* - Fix build on -STABLEPav Lucistnik2004-03-171-0/+17
|
* Update to 1.2.7.Joe Marcus Clarke2004-03-173-3/+4
|
* . SIZEify.Greg Lewis2004-03-161-0/+1
|
* Update to 0.5.4.Akinori MUSHA2004-03-152-3/+3
| | | | | PR: ports/64243 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* Update to 0.5.7p2.Akinori MUSHA2004-03-152-3/+3
| | | | | PR: ports/64242 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* Add ruby-numru_units, a Ruby class to handle units of physical quantitiesPav Lucistnik2004-03-155-0/+58
| | | | | | | like 'hPa' -> '100 kg.m-1.sec-1' etc.. PR: ports/64247 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* Add ruby-numru_misc, a collection of miscellaneous functions and classesPav Lucistnik2004-03-155-0/+60
| | | | | | | | to facilitate programming. Misc requires NArray, a multi-dimensional numeric array class for ruby. PR: ports/64246 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
* - Update to 1.0.2Pav Lucistnik2004-03-142-3/+3
| | | | | PR: ports/64244 Submitted by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp> (maintainer)
* o Bump $LIB_DEPENDS line to chase expat's shlib version.Jun Kuriyama2004-03-143-6/+6
| | | | o Bump $PORTREVISION.
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-1419-21/+20
| | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
* - Update to version 2.6.3Kirill Ponomarev2004-03-143-8/+15
| | | | | PR: ports/64215 Submitted by: Ports Fury
* BROKEN on amd64: Configure failsKris Kennaway2004-03-131-0/+4
|
* Update to 0.9.Hye-Shik Chang2004-03-133-3/+13
|
* 1) remove lapack dependencyMaho Nakata2004-03-132-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2) SIZEify 3) fix build (sdpa.6.00.install.txt has been changed) --- sdpa.6.00.install.txt.old Fri Nov 15 15:22:50 2002 +++ sdpa.6.00.install.txt Wed Mar 10 16:57:59 2004 @@ -17,6 +17,7 @@ 4. Install SDPA A. Install SDPA with CLAPACK, without ATLAS +B. Install SDPA on Windows ----------------------------------------- @@ -263,3 +264,13 @@ $ ./example1-1.exe $ ./example3.exe + +******************************************************* + +******************************************************* +B. Install SDPA on Windows + +To compile SDPA with Visual C++, download +http://sdpa.is.titech.ac.jp/sdpa.6.00.src.tar.gz +and unzip the file. +Then follow the file Install-with-Visual-C++.txt Reported by: kris via bento
* add missing dependencyYing-Chieh Liao2004-03-121-1/+2
|
* revive PDL and upgrade it to 2.4.1Ying-Chieh Liao2004-03-127-0/+150
|
* Update to 4.3.50.Joe Marcus Clarke2004-03-123-3/+4
|
* libmath++ is a template based math library, written in C++, for symbolicJohn Baldwin2004-03-115-0/+87
| | | | | | and numeric calculus applications. WWW: http://www.surakware.net/projects/libmath++/index.xml
* libmath++ is a template based math library, written in C++, for symbolicJohn Baldwin2004-03-111-0/+1
| | | | | | | | and numeric calculus applications. WWW: http://www.surakware.net/projects/libmath++/index.xml Reviewed by: ports@
* Update to KDE 3.2.1 / QT 3.3.1Michael Nottebrock2004-03-104-29/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Important changes: ================== KDE: - Audio/arts does not install artswrapper anymore, instead it is provided by audio/artswrapper. See UPDATING. - misc/kdeaddons3 is now a metaport with editors/kate-plugins editors/vimpart games/atlantikdesigner misc/kaddressbook-plugins misc/kfile-plugins misc/kicker-applets misc/knewsticker-scripts misc/konq-plugins misc/ksig misc/renamedlgplugins multimedia/noatun-plugins net/kontact-plugins as slave ports. - A number of KDE ports now uses OPTIONS do make various WITH_* options more visible. - Plist fixes - devel/kdevelop should be able to detect FreeBSD's autoconf/automake now for newly created projects. - kdebase will no longer remove previous KDM configurations. This won't take effect during the update from 3.2.0 to 3.2.1 (as deinstalling 3.2.0 will still remove the configuration), but subsequent updates will merge old configs. QT: - Previous versions of QT could be compiled with debugging-support enabled by defining DEBUG. This switch has been renamed to the more unambiguous WANT_QT_DEBUG (similar to WANT_KDE_DEBUG in the KDE ports).
* o Fix download from open servers (non FreeBSD backup servers):Mario Sergio Fujikawa Ferreira2004-03-091-1/+1
| | | | | | | | | - Replace USE_SIZE with DISABLE_SIZE so that it is possible to use fetch(1) to download distfile from open servers which are not reporting distfile size PR: 63725 Submitted by: Jason Harris <jharris@widomaker.com>
* Use NO_LATEST_LINK to avoid unique name conflict.Jun Kuriyama2004-03-081-1/+1
|
* Fix $LATEST_LINK conflict.Jun Kuriyama2004-03-081-0/+1
| | | | Reported by: kris
* Fix very bogos miss.Maho Nakata2004-03-081-1/+1
| | | | Submitted by: FreshPorts
* USE MASTERDIR when include MakefileMaho Nakata2004-03-081-1/+1
| | | | | | PR: 63730 Submitted by: Mark Linimon <linimon@FreeBSD.org> Suggestion by: Masafumi Otsune <info@otsune.com>
* - Update to version 20021229Kirill Ponomarev2004-03-084-35/+24
| | | | | PR: ports/63878 Submitted by: Ports Fury
* - Update to version 0.9.2.2Kirill Ponomarev2004-03-084-66/+23
| | | | | PR: ports/63879 Submitted by: Ports Fury
* - Update to version 1.0.2Kirill Ponomarev2004-03-087-41/+30
| | | | | PR: ports/63880 Submitted by: Ports Fury
* - Update to version 3.5.20Kirill Ponomarev2004-03-082-3/+3
| | | | | PR: ports/63881 Submitted by: Ports Fury
* 1) remove non-fetchable sitesMaho Nakata2004-03-071-3/+1
| | | | | | | | | 2) sorry I didn't notice ITO-san's e-mail that also unbreak for this port. maho independently unbreak this port. thanks. Submitted by: ITO Tsuyoshi <tsuyoshi@is.s.u-tokyo.ac.jp> and kris via bento
* BROKEN on sparc64: Does not compileKris Kennaway2004-03-071-2/+8
| | | | Correct ARCH check for amd64.
* BROKEN on sparc64: Does not compileKris Kennaway2004-03-071-0/+4
|
* Update to xgfe 2.1, switch to QT 3, respect NOPORTDOCS, fix buildKris Kennaway2004-03-0737-58/+1144
| | | | | | | with gcc 3. Submitted by: Marius Strobl <marius@alchemy.franken.de> PR: ports/59024
* BROKEN on amd64: Does not compileKris Kennaway2004-03-061-1/+7
|
* - Unbreak: Build the four documentation formats sequentially (instead of ↵Pav Lucistnik2004-03-063-6/+12
| | | | | | | | | simultaneously) to prevent perl 5.8 from using too much memory (> 512 MB) and being killed. PR: ports/63804 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu> (maintainer)
* This is also broken on sparc64Kris Kennaway2004-03-041-2/+2
|
* Add net as secondary category since this is a distributed effortMario Sergio Fujikawa Ferreira2004-03-041-1/+1
|
* - Update to version 1.2.3Kirill Ponomarev2004-03-025-10/+23
| | | | | PR: ports/63595 Submitted by: Ports Fury
* - Update to version 0.9.5Kirill Ponomarev2004-03-023-10/+9
| | | | | PR: ports/63594 Submitted by: Ports Fury
* - Fix MASTER_SITESKirill Ponomarev2004-03-011-2/+2
|
* - Fix build on alphaKirill Ponomarev2004-03-012-4/+12
| | | | | PR: ports/63532 Submitted by: Thierry Thomas <thierry@pompo.net>
* - Update to version 0.9.12Kirill Ponomarev2004-02-293-5/+8
| | | | | PR: ports/63496 Submitted by: Ports Fury
* Update to 3.6.0Maho Nakata2004-02-287-134/+222
|
* Update to 3.7.1Maho Nakata2004-02-282-2/+3
|
* Add ruby-narray_miss, an additional class of ruby with conduct processingPav Lucistnik2004-02-285-0/+47
| | | | | | | of missing value to NArray which is a numeric multi-dimensional array class. PR: ports/62870 Submitted by: Shin'ya Murakami <murashin@edamame.summing.com>
* o Update to mprime core version 23.5Mario Sergio Fujikawa Ferreira2004-02-272-12/+15
| | | | | | o Port's Makefile - move some lines from post-patch to do-configure target since they DO configure the port's build
* Update to 4.3.48.Joe Marcus Clarke2004-02-273-3/+5
|
* have it work with all perls, fix plistMathieu Arnold2004-02-252-9/+6
|
* add the right dependency so that it builds with all perlsMathieu Arnold2004-02-251-8/+5
|
* Correct previous commit:Kris Kennaway2004-02-251-2/+2
| | | | BROKEN on alpha 5.x: Does not compile
* BROKEN on !i386 and !amd64: Does not compileKris Kennaway2004-02-251-0/+4
|
* BROKEN on !i386 and !amd64: Does not compileKris Kennaway2004-02-251-1/+7
|
* BROKEN on alpha 5.x: Does not compileKris Kennaway2004-02-251-1/+7
|
* Change my email address.Markus Brueffer2004-02-241-1/+1
| | | | Approved by: arved (mentor)
* 1) unbreak by updating distinfoMaho Nakata2004-02-232-7/+4
| | | | | | | | | | | 2) silent version up without changing the filename of the archive. a) minor difference in .MMMinit b) lib.tar (also .MMMinit) c) lib.toc (table of contents) d) plot.mdvi (one of the help file) 3) satisfy portlint Submitted by: kris via bento
* BROKEN on !i386: Does not compileKris Kennaway2004-02-231-1/+7
|
* BROKEN on alpha 5.x: configure failsKris Kennaway2004-02-231-1/+7
|
* Utilize the EXPIRATION_DATE tag for these ports scheduled for removal.Kris Kennaway2004-02-221-1/+2
|
* BROKEN on 4.x: does not compileKris Kennaway2004-02-221-1/+7
|
* Update to 4.3.46.Joe Marcus Clarke2004-02-212-3/+3
|
* Add a port of ndiff:Greg Lewis2004-02-196-0/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ndiff is a utility for comparing putatively similar files, ignoring small numeric differences. The utility is written by Nelson H. F. Beebe and covered by the GNU General Public License (GPL), version 2. It may be built with arbitrary precision support (more powerful) or using built-in floating point precision, see Makefile. Assessing the consistency of a numerical program run in multiple environments (operating systems, architectures, or compilers) can be a difficult task for a human, as small differences in numerical output values are expected. File differencing utilites, such as diff(1), will generally produce voluminous output, often longer than the original files. ndiff solves this problem. Taking two two text files expected to be identical, or at least numerically similar, it allows to specify absolute and/or relative error tolerances for differences between numerical values in the two files, and then reports only the lines with values exceeding those tolerances. It also tells by how much they differ. A simple example: % ndiff --relative-error 1.0e-3 test019.txt.1 test019.txt.2 ### Maximum relative error in matching lines = 8.64e-51 at line 129 field 4 WWW: http://www.math.utah.edu/~beebe/software/ndiff/ I've cleaned up the submitted version a little. PR: 62221 Submitted by: Stefan A. Deutscher <sad@mailaps.org>
* Use QT3 instead of QT2.Tilman Keskinoz2004-02-174-13/+42
| | | | Bump PORTREVISION.
* Fix build on AMD64Tilman Keskinoz2004-02-171-0/+4
|
* Update to 8.2.Dag-Erling Smørgrav2004-02-1710-44/+112
|