aboutsummaryrefslogtreecommitdiff
path: root/math/scalapack
Commit message (Collapse)AuthorAgeFilesLines
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* - Update net/openmpi to 1.8.4Danilo Egea Gondolfo2014-12-261-1/+1
| | | | Notes: svn path=/head/; revision=375624
* Cleanup plistAntoine Brodin2014-11-141-7/+0
| | | | Notes: svn path=/head/; revision=372555
* - Update net/openmpi from 1.8.2 to 1.8.3Danilo Egea Gondolfo2014-09-281-1/+1
| | | | Notes: svn path=/head/; revision=369434
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* - Upgrade to 1.5;Thierry Thomas2014-09-011-1/+1
| | | | | | | - Bump PORTREVISION for consumers. Notes: svn path=/head/; revision=366964
* Chase the upgrade of net/mpich2.Thierry Thomas2014-08-261-1/+1
| | | | | | | Approved by: portmgr (non staged ports) Notes: svn path=/head/; revision=366262
* - Update net/openmpi from 1.8.1 to 1.8.2Danilo Egea Gondolfo2014-08-261-0/+1
| | | | Notes: svn path=/head/; revision=366207
* - Upgrade scalapack to 2.0.2 and stagifyThierry Thomas2014-08-248-906/+787
| | | | | | | - Bump PORTREVISION for consumers. Notes: svn path=/head/; revision=365954
* Reset maintainership for ports not staged with no pending PRBaptiste Daroussin2014-07-231-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=362717
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-4/+4
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361812
* - Convert net/openmpi to USES=libtool and bump dependent portsTijl Coosemans2014-07-141-1/+1
| | | | | | | | | | - Add INSTALL_TARGET=install-strip - Use BROKEN_sparc64 Approved by: portmgr (implicit, bump unstaged port) Notes: svn path=/head/; revision=361800
* Convert all :U to :tu and :L to :tlBaptiste Daroussin2014-05-051-2/+2
| | | | | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr Notes: svn path=/head/; revision=352986
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-101-1/+1
| | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs) Notes: svn path=/head/; revision=347809
* Convert all USE_FORTRAN=yes to "USES=fortran, USE_GCC=yes". In most casesTijl Coosemans2014-02-161-1/+1
| | | | | | | | | | | | | | USE_GCC=yes has been omitted though. Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk. Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,... Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=344614
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | math) Notes: svn path=/head/; revision=327746
* adjust linking and comments in dependent ports after the math/atlas update;Brendan Fabeny2011-11-222-4/+4
| | | | | | | | | | | math/atlas-devel will be updated to use the same constructs at a later date PR: 162706 Approved by: miwi (portmgr) Feature safe: yes Notes: svn path=/head/; revision=286242
* Chase the upgrade of MPICH2.Thierry Thomas2011-02-262-11/+1
| | | | | | | | | | Since I'm there, pet portlint where needed, e.g. by removing oblsolete MD5 checksums. PR: ports/154715 Notes: svn path=/head/; revision=269786
* - Chase relocation of net/mpich2Thierry Thomas2009-11-283-13/+13
| | | | | | | | | - Bump PORTREVISION if needed - Fix some portlint errors. Notes: svn path=/head/; revision=244904
* - Change sed pattern delimited to something less common in CFLAGS stringsPav Lucistnik2009-10-041-2/+2
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=242467
* Bump PORTREVISION for everything that sets USE_FORTRAN=yes which nowGerald Pfeifer2009-09-131-1/+1
| | | | | | | | | implies lang/gcc44 up from lang/gcc43. Approved by: portmgr Notes: svn path=/head/; revision=241308
* Bump PORTREVISION due to change of USE_FORTRAN=yes to GCC 4.3.Gerald Pfeifer2009-01-071-1/+1
| | | | Notes: svn path=/head/; revision=225403
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* Fix URI.Maho Nakata2007-12-311-1/+1
| | | | Notes: svn path=/head/; revision=204745
* Update to 1.8.0. Openmpi part is not updated at the moment.Maho Nakata2007-10-074-33/+45
| | | | Notes: svn path=/head/; revision=201035
* Now we use USE_FORTRAN=yes to use FORTRAN compiler.Maho Nakata2007-07-141-5/+1
| | | | Notes: svn path=/head/; revision=195553
* Make fetchable by prepareing 1.7.5 version of scalapack_install.ps.Maho Nakata2007-07-031-2/+4
| | | | | | | | | It is replaced to 1.8.0 one. Spotted by: kris via pointyhat Notes: svn path=/head/; revision=194741
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* * Update to 1.7.5.Maho Nakata2007-03-095-31/+67
| | | | | | | * Install shared libs as well. Notes: svn path=/head/; revision=186939
* Remove CONFLICT line as elmer-mathlibs are deprecated by migrationMaho Nakata2007-01-161-2/+0
| | | | | | | to gfortran. Notes: svn path=/head/; revision=182475
* * Use gfortran42 only and not gcc42.Maho Nakata2007-01-121-3/+5
| | | | | | | * Bump portrevision. Notes: svn path=/head/; revision=182144
* * Migrate to gfortran.Maho Nakata2007-01-102-7/+20
| | | | | | | | * Bump port revision. * Use gfortran compiled atlas/blas/lapack. Notes: svn path=/head/; revision=181957
* Update to 1.7.4Maho Nakata2006-11-195-13/+103
| | | | | | | | | | | - Add support for OpenMPI (requires math/blacs compiled with OpenMPI) - Make it possible to use math/blas instead of math/atlas PR: 105497 Submitted by: trasz <trasz@pin.if.uz.zgora.pl> Notes: svn path=/head/; revision=177550
* remove unnecessary empty filesMaho Nakata2006-07-241-0/+0
| | | | | | | Submitted by: thierry Notes: svn path=/head/; revision=168613
* Switch to MPICH2.Maho Nakata2006-07-244-37/+20
| | | | | | | | PR: 100755, 100756 Submitted by: thierry Notes: svn path=/head/; revision=168588
* Now blas part can be replaceable.Maho Nakata2006-07-092-2/+3
| | | | Notes: svn path=/head/; revision=167244
* Now math/atlas* only build shared libs by default,Maho Nakata2006-07-011-1/+1
| | | | | | | link against shared libs instead of static libs. Notes: svn path=/head/; revision=166681
* Remove USE_REINPLACE from ports starting with MEdwin Groothuis2006-05-101-1/+0
| | | | Notes: svn path=/head/; revision=162032
* Register conflicts with math/elmer-mathlibs.Maho Nakata2006-04-261-0/+2
| | | | | | | | Submitted by: thierry and Pedro F. Giffuni <giffunip@asme.org> Notes: svn path=/head/; revision=160489
* SHA256ifyEdwin Groothuis2006-01-221-0/+10
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154159
* .else if should be .elif or .elseifMaho Nakata2005-07-061-1/+1
| | | | | | | Submitted by: joe, kris Notes: svn path=/head/; revision=138550
* Re-organize optimization flags so that runs much more fasterMaho Nakata2005-07-041-1/+15
| | | | Notes: svn path=/head/; revision=138437
* move pkg-message.in to ${FILESDIR} to installMaho Nakata2004-11-231-0/+0
| | | | | | | w/o error. Notes: svn path=/head/; revision=122191
* 1) fix build after changes to make(1) on FreeBSD >= 5.x.Maho Nakata2004-10-193-159/+192
| | | | | | | | | | 2) clean up (pkg-message) PR: 72265 Submitted by: thierry Notes: svn path=/head/; revision=119768
* Make portlint happy by replacing space to tabMaho Nakata2004-05-061-2/+2
| | | | | | | | PR: 65409 Submitted by: trevor Notes: svn path=/head/; revision=108577
* SIZEifyMaho Nakata2004-03-191-0/+10
| | | | | | | Submitted by: trevor Notes: svn path=/head/; revision=104580
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-0/+1
| | | | | | | (Part 1) Notes: svn path=/head/; revision=99918
* Add scalapack 1.7, the ScaLAPACK Scalable LAPACK library.Maho Nakata2003-05-0511-0/+1745
PR: 40521 Submitted by: NAKATA, Maho <maho@FreeBSD.org> Notes: svn path=/head/; revision=80147