diff options
author | tg <tg@FreeBSD.org> | 1997-06-30 12:13:10 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1997-06-30 12:13:10 +0000 |
commit | b6345baee64246b47a378622b81e38e2e696505e (patch) | |
tree | 33bee2ed29d24d1f75012b521b30472178955f51 /devel | |
parent | 90f27370913dbb403f0beb05c941e9396b92a719 (diff) | |
download | FreeBSD-ports-b6345baee64246b47a378622b81e38e2e696505e.zip FreeBSD-ports-b6345baee64246b47a378622b81e38e2e696505e.tar.gz |
Import f77flow port. As the name suggests, f77flow analyzes
the structure of FORTRAN code.
PR: 3956
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/f77flow/Makefile | 23 | ||||
-rw-r--r-- | devel/f77flow/distinfo | 1 | ||||
-rw-r--r-- | devel/f77flow/pkg-comment | 1 | ||||
-rw-r--r-- | devel/f77flow/pkg-descr | 19 | ||||
-rw-r--r-- | devel/f77flow/pkg-plist | 2 |
5 files changed, 46 insertions, 0 deletions
diff --git a/devel/f77flow/Makefile b/devel/f77flow/Makefile new file mode 100644 index 0000000..61a458c --- /dev/null +++ b/devel/f77flow/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: f77flow +# Version required: 0.12 +# Date created: 25 June 1997 +# Whom: Andrey Zakhvatov +# +# $Id$ +# + +DISTNAME= f77flow-0.12 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITE_SUBDIR= devel/lang/fortran + +MAINTAINER= andy@icc.surw.chel.su + +ALL_TARGET= +MAN1= flow.1 + +do-install: + @ ${INSTALL_PROGRAM} ${WRKSRC}/flow ${PREFIX}/bin/flow + @ ${INSTALL_MAN} ${WRKSRC}/flow.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/devel/f77flow/distinfo b/devel/f77flow/distinfo new file mode 100644 index 0000000..414d987 --- /dev/null +++ b/devel/f77flow/distinfo @@ -0,0 +1 @@ +MD5 (f77flow-0.12.tar.gz) = 7b666a539fa6b607f7030b76fd1cfe12 diff --git a/devel/f77flow/pkg-comment b/devel/f77flow/pkg-comment new file mode 100644 index 0000000..2adb9fa --- /dev/null +++ b/devel/f77flow/pkg-comment @@ -0,0 +1 @@ +Analyze the structure of a fortran77 program diff --git a/devel/f77flow/pkg-descr b/devel/f77flow/pkg-descr new file mode 100644 index 0000000..01d61c5 --- /dev/null +++ b/devel/f77flow/pkg-descr @@ -0,0 +1,19 @@ +This little program analyses the structure of FORTRAN source-code. As a +result you get a little flow diagram in which you can recognize which +SUBROUTINE is called by the program. Further all subroutines called from this +one are displayed. The indciation of the displayed names is a degree for the +level. + +A new addition is the change of the starting point for an analyse. Instead to +check the whole source-code you can start with a special SUBROUTINE and see +the depence of this one. + +The number of files which contain the routines are not restricted by the +program. + +You can report the CALL- and/or SUBROUTINE-statements together with filenames +and line numbers to special files. + +Dirk Geschke +geschke@physik.uni-kassel.de +7. March 1997 diff --git a/devel/f77flow/pkg-plist b/devel/f77flow/pkg-plist new file mode 100644 index 0000000..f3a45f3 --- /dev/null +++ b/devel/f77flow/pkg-plist @@ -0,0 +1,2 @@ +bin/flow +man/man1/flow.1.gz |