aboutsummaryrefslogtreecommitdiffstats
path: root/science/netcdf
Commit message (Collapse)AuthorAgeFilesLines
* Update to 4.6.1sunpoet2018-03-163-6/+6
| | | | | | | - Update MASTER_SITES Changes: https://github.com/Unidata/netcdf-c/releases https://github.com/Unidata/netcdf-c/blob/master/RELEASE_NOTES.md
* Update to 4.6.0sunpoet2018-01-273-7/+6
| | | | Changes: https://github.com/Unidata/netcdf-c/releases
* Update WWWsunpoet2017-12-111-7/+6
| | | | - Reformat pkg-descr
* Update to 4.5.0sunpoet2017-10-223-8/+8
| | | | | | - Pet portlint: reorder LICENSE knobs Changes: https://github.com/Unidata/netcdf-c/releases
* Update science/hdf5 to 1.10.1sunpoet2017-05-301-0/+1
| | | | | | - Bump PORTREVISION for shlib change Changes: https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.1/src/hdf5-1.10.1-RELEASE.txt
* Add LICENSEsunpoet2017-04-181-0/+5
| | | | | PR: 217786 Reported by: Anton Shterenlikht <mexas@bris.ac.uk>
* - Update to 4.4.1.1sunpoet2016-11-233-5/+5
| | | | Changes: https://github.com/Unidata/netcdf-c/releases
* - Update to 4.4.1sunpoet2016-11-203-5/+5
| | | | | Changes: http://www.unidata.ucar.edu/blogs/news/entry/netcdf-4-4-1 https://github.com/Unidata/netcdf-c/releases
* - Update to 1.10.0sunpoet2016-04-211-1/+1
| | | | | | | | | - Add LICENSE_FILE - Remove outdated PORTSCOUT - Re-enable SZIP option by default: it was changed unintentionally in r398300 Changes: https://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.0/src/hdf5-1.10.0-RELEASE.txt https://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.mat2016-04-011-4/+4
| | | | | With hat: portmgr Sponsored by: Absolight
* science/netcdf: document ncurses requirement (USES+=ncurses)marino2016-01-311-1/+1
| | | | approved by: infrastructure blanket
* - Add USES=pkgconfig:run: pkg-config is required by nc-config at runtimesunpoet2016-01-241-1/+2
| | | | - Bump PORTREVISION for dependency change
* - Update to 4.4.0sunpoet2016-01-173-6/+6
| | | | | | | | - Bump PORTREVISION for science/netcdf shlib change Changes: http://www.unidata.ucar.edu/blogs/news/entry/netcdf-4-4-0 https://github.com/Unidata/netcdf-c/releases Sponsored by: PortsCamp Taiwan
* - Update BUILD_DEPENDS: remove redundant LOCALBASE/binsunpoet2015-11-051-5/+3
| | | | - Cosmetic change
* - Use USES=localbasesunpoet2015-10-201-3/+2
|
* - Convert to new test frameworksunpoet2015-10-011-3/+1
|
* - Convert to new options dependency and target helpersunpoet2015-08-201-9/+3
| | | | - Remove PORTSCOUT
* - Convert to new options helpersunpoet2015-08-191-4/+1
|
* - Update to 1.8.15sunpoet2015-05-241-0/+1
| | | | | | | - Bump PORTREVISION for science/hdf5 shlib change Changes: http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.15-RELEASE.txt http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
* - Add GitHub repository to WWWsunpoet2015-03-221-2/+1
|
* - Update to 4.3.3.1sunpoet2015-03-012-3/+4
| | | | | | - Strip shared library Changes: http://www.unidata.ucar.edu/software/netcdf/docs/release_notes.html
* - Fix build with DOXYGEN optionsunpoet2015-02-211-2/+2
|
* - Update to 4.3.3sunpoet2015-02-193-24/+18
| | | | | | - Use LIBS instead of LDFLAGS Changes: http://www.unidata.ucar.edu/software/netcdf/docs/release_notes.html
* - Update to 1.8.14sunpoet2015-01-181-0/+1
| | | | | | | | | - Update MASTER_SITES - Use INSTALL_TARGET=install-strip instead of MAKE_ENV=INSTALL_STRIP_FLAG=${STRIP} - Bump PORTREVISION for science/hdf5 shlib change Changes: http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.14-RELEASE.txt http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
* Cleanup plistantoine2014-11-131-2/+0
|
* Fix packaging with default options (without DOXYGEN)antoine2014-05-031-1/+4
| | | | With hat: portmgr
* - Update to 4.3.2 (from science/netcdf4)sunpoet2014-05-034-99/+59
| | | | | | | | - Bump PORTREVISION for science/netcdf shlib change and dependency change from science/netcdf4 to science/netcdf [1] Changes: http://www.unidata.ucar.edu/software/netcdf/docs/release_notes.html Approved by: portmgr (bapt) [1]
* When linking a library libA with a library libB using libtool, if libB.latijl2014-04-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery)
* Add USES=gmake to fix installation on systems that use fmake by default.tijl2014-03-091-1/+1
| | | | | | | | | | | | Some makefiles in this port list "configure" as a dependency of some files. Because "configure" gets modified by USES=libtool, this means make tries to regenerate them. The commands for these files detect that nothing has changed however and they don't actually regenerate the files. Both bmake and gmake leave it at that, but fmake reruns all targets that depend on these files anyway. This fails because it requires tools that aren't available. Reported by: antoine
* - Add USES=libtool to fix linker problem on FreeBSD/i386 8.x andtijl2014-03-072-5/+10
| | | | | | | | FreeBSD/ia64 (binutils too old). - Staging. PR: ports/186946 Approved by: sunpoet (maintainer)
* Convert all USE_FORTRAN=yes to "USES=fortran, USE_GCC=yes". In most casestijl2014-02-171-2/+2
| | | | | | | | | | | 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)
* - Fix PKGNAME collisionsunpoet2013-11-071-2/+2
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | science)
* Convert science to new options frameworkbapt2013-04-291-11/+8
|
* - Remove WITH_FBSD10_FIX, is no longer neededmiwi2011-11-091-1/+0
|
* - Fix build on FreeBSD 10miwi2011-10-291-0/+1
|
* - Use bsd.port.options.mksunpoet2011-04-122-5/+4
| | | | | - CPPFLAGS is now added to CONFIGURE_ENV by Mk/bsd.port.Mk - Remove obsolete MD5 checksum
* - Use LOCAL/sunpoet as backup MASTER_SITESsunpoet2010-10-011-1/+1
| | | | Approved by: pgollucci (mentor)
* - Update MAINTAINER to my FreeBSD.org addresssunpoet2010-09-231-1/+1
| | | | Approved by: pgollucci (mentor)
* - Update MASTER_SITESlwhsu2010-05-153-62/+14
| | | | | | | | | | - Simplify NOPORTDOCS patch - Remove NOPORTEXAMPLES section - Remove unnecessary post-install: target - Remove patch for fortran/cfortran.h PR: ports/146415 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet AT sunpoet.net> (maintainer)
* - Update WWWmiwi2009-09-161-1/+1
| | | | | | PR: 138869 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> Feature safe: yes
* Bump PORTREVISION for everything that sets USE_FORTRAN=yes which nowgerald2009-09-131-1/+1
| | | | | | implies lang/gcc44 up from lang/gcc43. Approved by: portmgr
* - Fix Fortran linkingpav2009-03-232-2/+9
| | | | | | | | - Add a slaveport so fortran enabled netcdf can be packaged PR: ports/132430 Submitted by: thierry Approved by: maintainer timeout (14 days)
* - Fix OPTIONS processingpav2009-01-201-1/+3
| | | | | PR: ports/130740 Submitted by: Shin'ya Murakami <murashin@gfd-dennou.org>
* Bump PORTREVISION due to change of USE_FORTRAN=yes to GCC 4.3.gerald2009-01-081-1/+1
|
* - remove unnecessary stripchinsan2009-01-023-14/+79
| | | | | | | | | - install real documents - fix NOPORTDOCS - add NOPORTEXAMPLES PR: ports/129225 Submitted by: sunpoet (maintainer)
* - Fix PORTDOCSbeech2008-08-081-0/+1
|
* - Respect PORTDOCSbeech2008-08-082-8/+3
| | | | Reported by: IonBot
* - Add experimental WITH_FORTRAN knob and a patch to have it compile.beech2008-08-073-1/+40
| | | | | | | | | - It's off by default as it doesn't seem to be required by any port. - No functional change. PR: ports/125915 Submitted by: Pedro F. Giffuni <pfgshield-freebsd@yahoo.com> Approved by: maintainer timeout (>2 Weeks)
* - Add regression-target since the port recommends running the checks before ↵beech2008-07-212-5/+8
| | | | | | | | | | | installing. - Fix distinfo - Bump portrevision PR: ports/125550 Submitted by: Pedro F. Giffuni <pfgshield-freebsd@yahoo.com> Approved by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> (maintainer, with changes)
* - Update to 3.6.3rafan2008-06-252-9/+10
| | | | | PR: ports/124871 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet at sunpoet.net> (maintainer)
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptrafan2007-07-231-1/+1
| | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
* science/netcdflwhsu2007-04-105-63/+17
| | | | | | | | | | | | | | | | | | | | | - Update to 3.6.2 graphics/gmt math/grace math/gri math/p5-NetCDF math/py-scientific math/ruby-netcdf science/gnudatalanguage science/minc science/minc2 science/v_sim science/vis5d+ - Bump PORTREVISION for the changing of science/netcdf's major library version number PR: 111347 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet AT sunpoet.net> (maintainer) Approved by: clsung (mentor)
* - Update MASTER_SITESmiwi2006-12-243-4/+25
| | | | | | | - Fix build with gcc 4.X PR: ports/107117 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> (maintainer)
* Hand maintainership to submittererwin2006-06-021-1/+1
| | | | | PR: 98290 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
* - Update to 3.6.1garga2006-03-162-5/+4
| | | | | PR: ports/94504 Submitted by: Ports Fury
* Repocopy math/netcdf to science/netcdf, along with cdf, hdf and hdf5.thierry2006-01-311-1/+1
| | | | | | PR: 92497 Submitted by: /me Repocopied by: marcus
* - Add SHA256pav2005-11-251-0/+1
|
* At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-121-1/+1
| | | | after 5.4-RELEASE.
* Assist getting more ports working on AMD64 by obeying theobrien2005-04-111-1/+1
| | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
* - Chase name change in DISTNAMEahze2005-03-032-5/+6
| | | | | PR: ports/78315 Submitted by: Ports Fury
* Update to version 3.0.6p1krion2005-02-192-7/+6
| | | | | PR: ports/77695 Submitted by: Sam Lawrance <boris at brooknet.com.au>
* BROKEN: Unfetchablekris2005-02-191-0/+2
|
* Update to version 3.6.0krion2005-01-094-11/+9
| | | | | PR: ports/75954 Submitted by: Ports Fury
* - Add CONFLICTS between math/netcdf and science/hdf, they both installpav2004-03-251-0/+2
| | | | | | | same binaries. PR: ports/64646, ports/64647 Submitted by: Kay Lehmann <kay_lehmann@web.de>
* - Update to version 3.5.1krion2004-03-217-114/+16
| | | | | PR: ports/64507 Submitted by: Ports Fury
* fix build on currentoliver2004-02-073-15/+52
|
* - Fix build on -currentkrion2004-02-062-7/+21
| | | | | PR: ports/62431 Submitted by: Ports Fury
* BROKEN: Does not compile on 5.xkris2004-02-051-1/+7
|
* SIZEify.trevor2004-01-301-0/+1
|
* De-pkg-comment.knu2003-02-212-1/+1
|
* o Rollback PORTCOMMENT modifications while this feature's implementationlioux2002-11-112-2/+1
| | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence)
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.adamw2002-11-072-1/+2
| | | | Approved by: pat
* make the patch work on both -current and -stableijliao2002-10-011-6/+12
|
* fix patch pathijliao2002-09-162-4/+4
|
* fix build on -currentijliao2002-09-162-0/+48
|
* update math/netcdf to 3.5.0mharo2001-05-014-4/+24
| | | | | PR: 26995 Submitted by: AMAKAWA Shuhei <sa264@cam.ac.uk>
* update to 3.5.b8ijliao2001-02-092-2/+2
| | | | | PR: 24938 Submitted by: AMAKAWA Shuhei <amakawa@sf.t.u-tokyo.ac.jp>
* Update to version 3.5.b6kevlo2000-11-012-5/+7
| | | | | PR: 22450 Submitted by: Ports Fury
* Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in theasami2000-06-171-1/+1
| | | | | | | | | previous commit message to bsd.port.mk, which said INSTALL_SHLIBS. Boo.) Line up the rhs of variable assignments nicely. Remove a couple of extra whitespaces while I'm here. Suggested by: sobomax
* Fourth round of INSTALLS_SHLIBS conversion.sobomax2000-06-162-3/+1
|
* Update to version 3.5b3.steve2000-05-293-12/+11
| | | | | PR: 18748 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
* Convert to PORTNAME/PORTVERSION.asami2000-04-141-4/+3
|
* Upgrade to 3.5b2.tg1999-09-082-4/+4
| | | | | PR: 13598 Submitted by: KATO Tsuguru <tkato@prontimail.ne.jp>
* Change Id->FreeBSD.obrien1999-08-251-1/+1
|
* Re-enforce caps, no period. An "exceptions" file has been createdhoek1999-08-031-1/+1
| | | | containing the ports editors/vim5, sysutils/star, and one other.
* New port netcdf. The NetCDF (network Common Data Form) is a librarytg1999-07-305-0/+63
supporting the creation, access, and sharing of scientific data.