the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: system-fortran
Version: 7.0
Revision: 1
Type: bundle
Distribution: 10.4, 10.5
Maintainer: None
Description: Placeholder package for manually installed Absoft ProFortran
DescPackaging: <<
This package is no longer maintained, and there is no way to test it on
10.6. If anyone steps forward with a need for Absoft Fortran compatibility
on 10.6, the package can be revived for that distribution.
<<
DescDetail: <<
Install this package if you have the commerical Absoft fortran
installed. It will check whether the installation is okay and provide
the 'system-fortran' virtual package.
<<
PreInstScript: <<
if [ -d /Applications/Absoft ]; then
mcount=0
for file in bin/f77 bin/f90 bin/f90 ; do
if [ ! -f "/Applications/Absoft/$file" ]; then
echo "$missing /Applications/Absoft/$file"
mcount=$(($mcount+1))
fi
done
if [ $mcount -ge 1 ]; then
echo "Your Absoft Fortran installation is incomplete!"
exit 1
else
echo "Your Absoft Fortran installation looks OK."
exit 0
fi
else
echo "Absoft Fortran not installed."
exit 1
fi
<<