Author: osallou-guest Date: 2012-01-24 22:18:59 +0000 (Tue, 24 Jan 2012) New Revision: 9422
Added: trunk/packages/f2j/trunk/debian/blastb.1 trunk/packages/f2j/trunk/debian/f2j.manpages trunk/packages/f2j/trunk/debian/f2java.1 Modified: trunk/packages/f2j/trunk/debian/control trunk/packages/f2j/trunk/debian/f2j.install Log: add f2java program and man pages Added: trunk/packages/f2j/trunk/debian/blastb.1 =================================================================== --- trunk/packages/f2j/trunk/debian/blastb.1 (rev 0) +++ trunk/packages/f2j/trunk/debian/blastb.1 2012-01-24 22:18:59 UTC (rev 9422) @@ -0,0 +1,12 @@ +.TH blastb 1 "January 24, 2012" "version 0.8.1" "USER COMMANDS" +.SH NAME +blastb - converts GOGO statements in java class files +.SH SYNOPSIS +.B blastb file +.I file class file generated by f2java +.SH DESCRIPTION +To recompile java source files generated by f2java, using javac command, the generated class file must be post-treated with the javab tool. + It converts the GOTO statements in the class file and remove warnings such as "Untransformed goto remaining in program). +.SH AUTHOR +Man page by Olivier Sallou <[email protected]> +f2java project by Keith Seymour <[email protected]> Modified: trunk/packages/f2j/trunk/debian/control =================================================================== --- trunk/packages/f2j/trunk/debian/control 2012-01-24 22:10:15 UTC (rev 9421) +++ trunk/packages/f2j/trunk/debian/control 2012-01-24 22:18:59 UTC (rev 9422) @@ -18,9 +18,10 @@ found in javab, a bytecode parallelizing tool. This package provides the javab program. + Package: libf2j-java Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends},f2j +Depends: ${shlibs:Depends}, ${misc:Depends} Description: Fortran to Java compiler The package provides the Java library (APIS) to numerical libraries originally Modified: trunk/packages/f2j/trunk/debian/f2j.install =================================================================== --- trunk/packages/f2j/trunk/debian/f2j.install 2012-01-24 22:10:15 UTC (rev 9421) +++ trunk/packages/f2j/trunk/debian/f2j.install 2012-01-24 22:18:59 UTC (rev 9422) @@ -1 +1,2 @@ goto_trans/javab usr/bin/ +src/f2java usr/bin Added: trunk/packages/f2j/trunk/debian/f2j.manpages =================================================================== --- trunk/packages/f2j/trunk/debian/f2j.manpages (rev 0) +++ trunk/packages/f2j/trunk/debian/f2j.manpages 2012-01-24 22:18:59 UTC (rev 9422) @@ -0,0 +1,2 @@ +debian/f2java.1 +debian/javab.1 Added: trunk/packages/f2j/trunk/debian/f2java.1 =================================================================== --- trunk/packages/f2j/trunk/debian/f2java.1 (rev 0) +++ trunk/packages/f2j/trunk/debian/f2java.1 2012-01-24 22:18:59 UTC (rev 9422) @@ -0,0 +1,14 @@ +.TH f2java 1 "January 24, 2012" "version 0.8.1" "USER COMMANDS" +.SH NAME +f2java - produce java source and java class from Fortran file +.SH SYNOPSIS +.B f2java file +.I file Fortran file to transform +.SH DESCRIPTION +If you translate a Fortran file with "f2java test.f", it will produce one class file and one Java source file for each program unit. +We end up with several generated files: .java, .class. + +Before attempting to run the code, make sure that the org.netlib.util package (contained in f2jutil.jar) is in your CLASSPATH. +.SH AUTHOR +Man page by Olivier Sallou <[email protected]> +f2java project by Keith Seymour <[email protected]> _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
