the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: flow
Version: 3.0
Revision: 4
Description: Fortran source code analyzer
Architecture: powerpc, i386, x86_64
Provides: flow
Recommends: floppy
BuildDepends: g77 | g95 | gcc42 | gcc43 | gcc44 | gcc45
License: OSI-Approved
# Unpack Phase:
Source: http://www.netlib.org/floppy/flow3.tgz
Source-MD5: 89596688c6593ae31886789d74c2f0dd
NoSourceDirectory: true
PatchScript: <<
#!/bin/sh -ev
# replace f77 by g95 or gfortran if available
# this is poor fortran man's configure
if [ -f %p/bin/gfortran ]; then
sed -i.bak 's|f77|gfortran|g' makefile
elif [ -f %p/bin/g95 ]; then
sed -i.bak 's|f77|g95|g' makefile
fi
<<
# Compile Phase (NOTE: there is no configure):
CompileScript: <<
#!/bin/sh -ev
make
<<
# Install Phase:
DocFiles: copyright flow.ps readme
InstallScript: <<
#!/bin/sh -ev
# programs
mkdir -p %i/bin
install -m 755 %b/flow %i/bin
strip %i/bin/flow
# man pages
mkdir -p %i/share/man/manl
install -m 644 %b/flow.l %i/share/man/manl/flow.l
<<
DescDetail: <<
The FLOW program takes the binary summary file produced by FLOPPY, and can
produce various reports on the structure of the original FORTRAN program.
<<
DescUsage: <<
The FLOW program is invoked by
flow [-l] [-c [COMMON chart]] [-q] [-n node] [-s [structure chart]]
[-A [argument chart]] [-g [graphics chart]] [-E] [-i ignore list] file
<<
DescPort: <<
Nothing so far
<<
Homepage: http://www.netlib.org/floppy/
Maintainer: Karl-Michael Schindler