notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: astro/cfitsio/Makefile

Number of commits found: 60

Saturday, 9 Mar 2024
14:05 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.4.0

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: 77551d248fa7c712e0ea2ef9aeafbc48e156f216 commit hash: 77551d248fa7c712e0ea2ef9aeafbc48e156f216 commit hash: 77551d248fa7c712e0ea2ef9aeafbc48e156f216 commit hash: 77551d248fa7c712e0ea2ef9aeafbc48e156f216 77551d2
Monday, 27 Nov 2023
10:28 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.3.1

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: 957380cd09d378ae3574dad71ac21b6616294fac commit hash: 957380cd09d378ae3574dad71ac21b6616294fac commit hash: 957380cd09d378ae3574dad71ac21b6616294fac commit hash: 957380cd09d378ae3574dad71ac21b6616294fac 957380c
Wednesday, 16 Aug 2023
18:25 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.3.0

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: 12092ad379be36655a15e628826cbbd381832b1a commit hash: 12092ad379be36655a15e628826cbbd381832b1a commit hash: 12092ad379be36655a15e628826cbbd381832b1a commit hash: 12092ad379be36655a15e628826cbbd381832b1a 12092ad
Friday, 30 Dec 2022
09:04 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.2.0

- Convert REINPLACE_CMD to patch file
- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a commit hash: e73ed31d9f444ad5a59d89f6651a35a0bc18629a e73ed31
Sunday, 18 Dec 2022
17:32 Dimitry Andric (dim) search for other commits by this committer
astro/cfitsio: fix build with clang 15

During an exp-run for llvm 15 (see bug 265425), it turned out that
astro/cfitsio failed to build with clang 15:

  drvrnet.c:3887:23: warning: call to undeclared function 'gethostbyname'; ISO
C99 and later do not support implicit function declarations
[-Wimplicit-function-declaration]
              hostent = gethostbyname(localhost);
                        ^
  drvrnet.c:3887:21: error: incompatible integer to pointer conversion assigning
to 'struct hostent *' from 'int' [-Wint-conversion]
              hostent = gethostbyname(localhost);
                      ^ ~~~~~~~~~~~~~~~~~~~~~~~~
  1 warning and 1 error generated.

This is because the configure script defines _XOPEN_SOURCE=700, for
unclear reasons, and this hides the gethostbyname() declaration in
/usr/include/netdb.h. Fix it by removing the line that adds the define.

PR:		268302
Approved by:	portmgr (tcberner)
MFH:		2022Q4
commit hash: 7eda11c87c30c735058e9393d54b631a74cf566a commit hash: 7eda11c87c30c735058e9393d54b631a74cf566a commit hash: 7eda11c87c30c735058e9393d54b631a74cf566a commit hash: 7eda11c87c30c735058e9393d54b631a74cf566a 7eda11c
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:20 Tobias C. Berner (tcberner) search for other commits by this committer
astro: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  ABURAYER Rewsirow <rewsirow@ff.iij4u.or.jp>
  *  Alexander Leidinger
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrey Zakhvatov
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Anton Berezin <tobez@tobez.org>
  *  Anton Karpov <toxa@toxahost.ru>
  *  Brion Moss <brion@queeg.com>
  *  Bruce M Simpson <bms@FreeBSD.org>
  *  Chris Piazza <cpiazza@FreeBSD.org>
  *  Christian Brueffer <chris@unixpages.org>
  *  David Wolfskill
  *  Frank W. Josellis <frank@dynamical-systems.org>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  Gleb Smirnoff <glebius@FreeBSD.org>
  *  Hye-Shik Chang <perky@fallin.lv>
  *  Jan Srzednicki <w@wrzask.pl>
  *  Jean-Yves Lefort <jylefort@FreeBSD.org>
  *  Jean-Yves Lefort <jylefort@brutele.be>
  *  Jeremy Shaffner <jeremy@external.org>
  *  Keith Walker <kew@icehouse.net>
  *  Kirill Ponomarew <ponomarew@oberon.net>
  *  Kris Kennaway <kkennawa@physics.adelaide.edu.au>
  *  Kris Kennaway <kris@FreeBSD.org
  *  Laurent Courty
  *  Loïc BARTOLETTI <lbartoletti@FreeBSD.org>
  *  Lukas Maly <Iam@LukasMaly.NET>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Mathias Monnerville <mathias@monnerville.com>
  *  Muhammad Moinur Rahman <bofh@FreeBSD.org>
  *  Patrick Li <pat@FreeBSD.org>
  *  Patrick Li <pat@databits.net>
  *  Piero Serini <piero@FreeBSD.org>
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Simon Olofsson <simon@olofsson.de>
  *  Slaven Rezic <slaven@rezic.de>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
  *  Sébastien Santoro <dereckson@gmail.com>
  *  TAKATSU Tomonari <tota@FreeBSD.org>
  *  Tatsuki Makino <tatsuki_makino@hotmail.com>
  *  Tony Maher <tonymaher@optusnet.com.au>
  *  Wen Heping <wen@FreeBSD.org>
  *  Wen Heping <wenheping@gmail.com>
  *  Wen Heping<wen@FreeBSD.org>
  *  Will Andrews <andrews@technologist.com>
  *  asami
  *  chuck@pkix.net
  *  crwhipp@gmail.com
  *  darius@dons.net.au
  *  db
  *  erich@FreeBSD.org
  *  freebsd-ports@henrik.synth.no
  *  ijliao
  *  nwhitehorn
  *  pat
  *  searle
  *  thierry@pompo.net
  *  torstenb
  *  trevor
  *  will

With hat:	portmgr
commit hash: b15254402b32382ff6da10de50bf7b0e84b841f4 commit hash: b15254402b32382ff6da10de50bf7b0e84b841f4 commit hash: b15254402b32382ff6da10de50bf7b0e84b841f4 commit hash: b15254402b32382ff6da10de50bf7b0e84b841f4 b152544
Sunday, 17 Apr 2022
23:42 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Enable bzip2 and threading support

- Bump PORTREVISION for package change
commit hash: 3068321781909c9c76919aacc4fae8d89a861dbc commit hash: 3068321781909c9c76919aacc4fae8d89a861dbc commit hash: 3068321781909c9c76919aacc4fae8d89a861dbc commit hash: 3068321781909c9c76919aacc4fae8d89a861dbc 3068321
Saturday, 16 Apr 2022
04:19 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.1.0

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: 131f39565fadc7b59750c33374679200b0d8f049 commit hash: 131f39565fadc7b59750c33374679200b0d8f049 commit hash: 131f39565fadc7b59750c33374679200b0d8f049 commit hash: 131f39565fadc7b59750c33374679200b0d8f049 131f395
Monday, 7 Mar 2022
18:10 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Simplify Makefile

- Use hard-coded shlib version
  It helps remind maintainer to bump PORTREVISION of dependent ports.
commit hash: 62a530d3162e2dc0e95c318a8ed77712e40bc869 commit hash: 62a530d3162e2dc0e95c318a8ed77712e40bc869 commit hash: 62a530d3162e2dc0e95c318a8ed77712e40bc869 commit hash: 62a530d3162e2dc0e95c318a8ed77712e40bc869 62a530d
Monday, 28 Feb 2022
15:06 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
astro/cfitsio: Update to 4.0.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a commit hash: d1d14ca3e59f48ada778c1a9dbc754c4186ed76a d1d14ca
Tuesday, 5 Oct 2021
19:11 Bernhard Froehlich (decke) search for other commits by this committer
astro/cfitsio: Add CPE information

Approved by:	portmgr (blanket)
commit hash: ea2e81f22e0ba0636a216971bb5dc84f8ade09f8 commit hash: ea2e81f22e0ba0636a216971bb5dc84f8ade09f8 commit hash: ea2e81f22e0ba0636a216971bb5dc84f8ade09f8 commit hash: ea2e81f22e0ba0636a216971bb5dc84f8ade09f8 ea2e81f
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Tuesday, 26 Jan 2021
14:00 sunpoet search for other commits by this committer
Update to 3.49

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
PR:		252569
Exp-run by:	antoine
Original commitRevision:562667 
Saturday, 31 Aug 2019
22:00 sunpoet search for other commits by this committer
Use bundled zlib

- Bump PORTREVISION for package change

PR:		238121
Reported by:	yuri
Original commitRevision:510465 
Saturday, 27 Jul 2019
11:53 sunpoet search for other commits by this committer
Update to 3.47

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:507401 
Monday, 23 Jul 2018
04:51 yuri search for other commits by this committer
astro/cfitsio: Add missing dependency

Approved by:	portmgr blanket
Original commitRevision:475145 
Saturday, 3 Mar 2018
16:29 sunpoet search for other commits by this committer
Update to 3.43

- Update MASTER_SITES

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes2.txt
Original commitRevision:463491 
Wednesday, 25 Oct 2017
18:28 sunpoet search for other commits by this committer
Update to 3.42

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:452871 
Tuesday, 3 Jan 2017
18:36 sunpoet search for other commits by this committer
Update to 3.41

- Update pkg-descr
- Update WWW: use https://

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:430496 
Sunday, 20 Nov 2016
23:54 sunpoet search for other commits by this committer
- Use USES=localbase
- Cosmetic change
Original commitRevision:426652 
Saturday, 19 Nov 2016
17:02 sunpoet search for other commits by this committer
- Fix build on Sparc64
Original commitRevision:426392 
Monday, 14 Nov 2016
05:03 linimon search for other commits by this committer
Mark as broken on various tier-2 archs.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:426082 
Tuesday, 20 Sep 2016
01:09 wen search for other commits by this committer
- Update to 3.390

PR:		212405
Submitted by:	wen@(myself)
Approved by:	maintainer(timeout, >=14 days)
Original commitRevision:422474 
Friday, 1 Apr 2016
13:29 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412344 
Sunday, 6 Dec 2015
17:51 sunpoet search for other commits by this committer
- Fix LICENSE
- Convert to new options target helper
Original commitRevision:403130 
Friday, 8 May 2015
14:04 amdmi3 search for other commits by this committer
- Don't install static libraries with INSTALL_LIB (part 1/2)

Approved by:	portmgr blanket
MFH:		2015Q2
Original commitRevision:385787 
Wednesday, 1 Oct 2014
20:06 sunpoet search for other commits by this committer
- Update to 3.370

Changes:	http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:369749 
Wednesday, 11 Jun 2014
14:50 tijl search for other commits by this committer
Support LIBS like LDFLAGS.

- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:357486 
Friday, 9 May 2014
15:26 sunpoet search for other commits by this committer
- Pass -lz to libdata/pkgconfig/cfitsio.pc
- Bump PORTREVISION for package change

PR:		ports/189487
Submitted by:	rakuco
Original commitRevision:353466 
Thursday, 8 May 2014
03:03 sunpoet search for other commits by this committer
- Build cfitsio compress/uncompress C files in zlib/
- Bump PORTREVISION for package change

Tested by:	cperciva, marino
Original commitRevision:353239 
Sunday, 4 May 2014
15:37 sunpoet search for other commits by this committer
- Update to 3.360
- Build and install static library
- Bump PORTREVISION for astro/cfitsio shlib change

Changes:	http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
Original commitRevision:352962 
Wednesday, 5 Feb 2014
20:02 sunpoet search for other commits by this committer
- Fix shared library installation
- Bump PORTREVISION for package change
- While I'm here, convert to new LIB_DEPENDS format

PR:		ports/185951
Submitted by:	Florian Degner <f.degner@gmx.de>
Original commitRevision:342829 
Monday, 25 Nov 2013
18:14 sunpoet search for other commits by this committer
- Support STAGEDIR
- Simplify Makefile
Original commitRevision:334877 
11:33 sunpoet search for other commits by this committer
- Update to 3.350
- Convert to new LIB_DEPENDS format

Changes:	http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/changes.txt
Original commitRevision:334829 
Friday, 20 Sep 2013
13:14 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
astro)
Original commitRevision:327701 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Tuesday, 23 Apr 2013
14:40 sunpoet search for other commits by this committer
- Rescue WRKSRC
Original commitRevision:316358 
06:26 bapt search for other commits by this committer
Convert all a categories to USE=pkgconfig
While here trim some headers and convert some gnomehack to pathfix
Original commitRevision:316309 
Sunday, 10 Mar 2013
08:26 sunpoet search for other commits by this committer
- Update to 3.33
- Remove LICENSE_FILE for well-known licenses
- Use PORTDOCS
- Cosmetic change
- Take maintainership

Changes:	http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/changes.txt
Original commitRevision:313813 
Saturday, 1 Dec 2012
00:00 sperber search for other commits by this committer
- Update to version 3.310
- Update MASTER_SITES
- Add LICENSE
- Add MAKE_JOBS_SAFE
- Trim Makefile header

PR:           ports/171954
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Approved by:  beat (mentor)
Feature safe: yes
Original commitRevision:308052 
Thursday, 26 Jul 2012
05:40 bapt search for other commits by this committer
new devel/pkgconf added to replace devel/pkg-config. new version of pkg-config
are no more self hosting so we are stuck with 0.25 version while pkgconf provide
the same set of features as 0.27 and a compatible frontend. A symlink to
pkg-config has been added for convenience and compatibility

This also introduces a new macro to use pkgconf in your ports:
USE_PKGCONFIG

it can take the following arguments:
 - yes (meaning build only dep)
 - build (meaning build only dep)
 - run (meaning run only dep)
 - both (meaning run and build dep)

From now USE_GNOME= pkgconfig is deprecated in favour of USE_PKGCONFIG
The old gnome macro has been modified to use pkgconf but still the sameway: run
and build dep to avoid large breakage.

While here fix some ports relying on pkg-config but not specifying it, fix some
ports broken because testing wrong .pc files, and fix ports using pkg-config
--version to determine pkg-config version instead of
pkg-config --modversion pkg-config like recommanded by pkg-config

With Hat:	portmgr
Exp-runs by:	bapt (pointhat-west), beat (pointyhat)
Original commit
Sunday, 22 Jul 2012
23:24 dougb search for other commits by this committer
For the ports that are maintained by ports@ that have pkgconfig as their
only USE_GNOME feature, convert to a BUILD_DEPENDS. This avoids both the
bug of the bogus run depend introduced by bsd.gnome.mk, and also avoids
needlessly pulling that file in.
Original commit
Wednesday, 11 Jul 2012
07:42 wen search for other commits by this committer
- Update to 3.300 [1]
- Pet portlint: remove ABI version number from LIB_DEPENDS [1]
- Convert to new options framework [1]
- Reset maintainer

PR:             169769 [1]
Submitted by:   sunpoet@ [1]
Original commit
Thursday, 11 Aug 2011
19:20 kwm search for other commits by this committer
Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.

PR:             ports/159624
Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Original commit
Wednesday, 5 Jan 2011
06:52 wen search for other commits by this committer
- Update to 3.250
Original commit
Saturday, 1 Nov 2008
22:12 miwi search for other commits by this committer
- Update to 3.100
- Pass maintainership to submitter

PR:             128435
Submitted by:   Wen Heping <wenheping@gmail.com>
Original commit
Friday, 4 Jul 2008
22:29 gahr search for other commits by this committer
- Update to 3.090

PR:             125229
Submitted by:   Ports Fury
Original commit
Friday, 12 Oct 2007
17:38 tabthorpe search for other commits by this committer
- Update to 3.060
- Remove files/patch-configure

Approved by:    clsung (mentor, implicit)
Original commit
Thursday, 12 Jul 2007
06:28 maho search for other commits by this committer
Now we use USE_FORTRAN=yes to use FORTRAN compiler.
Original commit
Monday, 15 Jan 2007
20:07 miwi search for other commits by this committer
- Update to 3.030

PR:             107896
Submitted by:   Thomas Abthorpe <thomas@goodking.ca>
Original commit
Friday, 12 Jan 2007
05:30 maho search for other commits by this committer
Use only gfortran42. not using gcc42, etc.
bump portrevision
Original commit
Tuesday, 9 Jan 2007
01:36 maho search for other commits by this committer
Migrate to gfortran.
Original commit
Monday, 14 Aug 2006
10:08 clsung search for other commits by this committer
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include astro/ audio/ biology/ chinese/ maintained by ports@

PR:             ports/101916
Submitted by:   Gea-Suan Lin <gslin_AT_gslin dot org>
Original commit
Wednesday, 15 Mar 2006
10:08 garga search for other commits by this committer
- Update to 3.006

PR:             ports/94195
Submitted by:   Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
Original commit
Wednesday, 8 Mar 2006
11:49 garga search for other commits by this committer
- Make it fetchable again

PR:             ports/94197
Submitted by:   Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
Approved by:    portmgr (erwin)
Original commit
Thursday, 29 Sep 2005
10:31 vs search for other commits by this committer
science/kst doesn't need the archive
Original commit
Sunday, 17 Jul 2005
21:19 pav search for other commits by this committer
- Update to 2.510

PR:             ports/83607
Submitted by:   KATO Tsuguru <tkato432@yahoo.com>
Original commit
Sunday, 22 Aug 2004
00:54 krion search for other commits by this committer
Update to version 2.500

PR:             ports/70781
Submitted by:   Ports Fury
Original commit
Friday, 30 Apr 2004
15:33 markus search for other commits by this committer
Add cfitsio 2.490, library for reading and writing files in FITS data
format.
Original commit

Number of commits found: 60