FreeBSD Bugzilla – Attachment 42768 Details for
Bug 66633
[PATCH] Java section of the Porter's Handbook
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 9.48 KB, created by
Hervé Quiroz
on 2004-05-14 13:20:17 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Hervé Quiroz
Created:
2004-05-14 13:20:17 UTC
Size:
9.48 KB
patch
obsolete
>Index: book.sgml >=================================================================== >RCS file: /home/ncvs/doc/en_US.ISO8859-1/books/porters-handbook/book.sgml,v >retrieving revision 1.401 >diff -u -r1.401 book.sgml >--- book.sgml 24 Apr 2004 17:39:57 -0000 1.401 >+++ book.sgml 14 May 2004 11:59:45 -0000 >@@ -3936,7 +3936,214 @@ > <sect1 id="using-java"> > <title>Using Java</title> > >- <para>This section is yet to be written.</para> >+ <para>If your port needs a JDK to either build, run or even extract the >+ distfile, then it should define <makevar>USE_JAVA</makevar>.</para> >+ >+ <table frame="none"> >+ <title>Variables to be defined by ports that use Java</title> >+ >+ <tgroup cols="2"> >+ <thead> >+ <row> >+ <entry>Variable</entry> >+ <entry>Means</entry> >+ </row> >+ </thead> >+ <tbody> >+ <row> >+ <entry><makevar>USE_JAVA</makevar></entry> >+ <entry>Should be defined for the remaining variables to have any >+ effect.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_VERSION</makevar></entry> >+ <entry>List of space-separated suitable Java versions for the >+ port. An optional <literal>"+"</literal> allows you to specify a >+ range of versions (allowed values: <literal>1.1[+] 1.2[+] 1.3[+] >+ 1.4[+]</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_OS</makevar></entry> >+ <entry>List of space-separated suitable JDK port operating >+ systems for the port (allowed values: <literal>native >+ linux</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_VENDOR</makevar></entry> >+ <entry>List of space-separated suitable JDK port vendors for the >+ port (allowed values: <literal>freebsd bsdjava sun ibm >+ blackdown</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_BUILD</makevar></entry> >+ <entry>When set, it means that the selected JDK port should be >+ added to build dependencies of the port.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_RUN</makevar></entry> >+ <entry>This variable works exactly the same as >+ <makevar>JAVA_BUILD</makevar> but regarding run >+ dependencies.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_EXTRACT</makevar></entry> >+ <entry>This variable works exactly the same as >+ <makevar>JAVA_BUILD</makevar> but regarding extract >+ dependencies.</entry> >+ </row> >+ <row> >+ <entry><makevar>USE_JIKES</makevar></entry> >+ <entry>Whether the port should or should not use >+ <command>jikes</command> to build. When no value is set for this >+ variable, the port will use <command>jikes</command> to build if >+ available. You may also explicitely forbid or enforce the use of >+ <command>jikes</command> (by setting <literal>'no'</literal> or >+ <literal>'yes'</literal>). In the later case, <filename >+ role="package">devel/jikes</filename> will be added to build >+ dependencies of the port.</entry> >+ </row> >+ </tbody> >+ </tgroup> >+ </table> >+ >+ <para>Below is the list of all settings a port will receive after setting >+ <makevar>USE_JAVA</makevar>:</para> >+ >+ <table frame="none"> >+ <title>Variables defined for ports that use Java</title> >+ >+ <tgroup cols="2"> >+ <thead> >+ <row> >+ <entry>Variable</entry> >+ <entry>Value</entry> >+ </row> >+ </thead> >+ <tbody> >+ <row> >+ <entry><makevar>JAVA_PORT</makevar></entry> >+ <entry>The name of the JDK port (e.g. >+ <literal>'java/jdk14'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_PORT_VERSION</makevar></entry> >+ <entry>The full version of the JDK port (e.g. >+ <literal>'1.4.2'</literal>). If you only need the first two >+ digits of this version number, use >+ <makevar>${JAVA_PORT_VERSION:C/^([0-9])\.([0-9])(.*)$/\1.\2/}</makevar>.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_PORT_OS</makevar></entry> >+ <entry>The operating system used by the JDK port (e.g. >+ <literal>'linux'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_PORT_VENDOR</makevar></entry> >+ <entry>The vendor of the JDK port (e.g. >+ <literal>'sun'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_PORT_OS_DESCRIPTION</makevar></entry> >+ <entry>Description of the operating system used by the JDK port >+ (e.g. <literal>'Linux'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_PORT_VENDOR_DESCRIPTION</makevar></entry> >+ <entry>Description of the vendor of the JDK port (e.g. >+ <literal>'FreeBSD Foundation'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_HOME</makevar></entry> >+ <entry>Path to the installation directory of the JDK (e.g. >+ <literal>'/usr/local/jdk1.3.1'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVAC</makevar></entry> >+ <entry>Path to the Java compiler to use (e.g. >+ <literal>'/usr/local/jdk1.1.8/bin/javac'</literal> or >+ <literal>'/usr/local/bin/jikes'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAR</makevar></entry> >+ <entry>Path to the JAR tool to use (e.g. >+ <literal>'/usr/local/jdk1.2.2/bin/jar'</literal> or >+ <literal>'/usr/local/bin/fastjar'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>APPLETVIEWER</makevar></entry> >+ <entry>Path to the <command>appletviewer</command> utility (e.g. >+ <literal>'/usr/local/linux-jdk1.2.2/bin/appletviewer'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA</makevar></entry> >+ <entry>Path to the <command>java</command> executable. Use this >+ for executing Java programs (e.g. >+ <literal>'/usr/local/jdk1.3.1/bin/java'</literal>).</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVADOC</makevar></entry> >+ <entry>Path to the <command>javadoc</command> utility >+ program.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVAH</makevar></entry> >+ <entry>Path to the <command>javah</command> program.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVAP</makevar></entry> >+ <entry>Path to the <command>javap</command> program.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_KEYTOOL</makevar></entry> >+ <entry>Path to the <command>keytool</command> utility program. >+ This variable is availble only if the JDK is Java 1.2 or >+ higher.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_N2A</makevar></entry> >+ <entry>Path to the <command>native2ascii</command> tool.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_POLICYTOOL</makevar></entry> >+ <entry>Path to the <command>policytool</command> program. This >+ variable is available only if the JDK is Java 1.2 or >+ higher.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_SERIALVER</makevar></entry> >+ <entry>Path to the <command>serialver</command> utility >+ program.</entry> >+ </row> >+ <row> >+ <entry><makevar>RMIC</makevar></entry> >+ <entry>Path to the RMI stub/skeleton generator, >+ <command>rmic</command>.</entry> >+ </row> >+ <row> >+ <entry><makevar>RMIREGISTRY</makevar></entry> >+ <entry>Path to the RMI registry program, >+ <command>rmiregistry</command>.</entry> >+ </row> >+ <row> >+ <entry><makevar>RMID</makevar></entry> >+ <entry>Path to the RMI daemon program. This variable is only >+ available if the JDK is Java 1.2 or higher.</entry> >+ </row> >+ <row> >+ <entry><makevar>JAVA_CLASSES</makevar></entry> >+ <entry>Path to the archive that contains the JDK class files. On >+ JDK 1.2 or later, this is >+ <literal>${JAVA_HOME}/jre/lib/rt.jar</literal>. Earlier JDK's use >+ <literal>${JAVA_HOME}/lib/classes.zip</literal>.</entry> >+ </row> >+ </tbody> >+ </tgroup> >+ </table> >+ >+ <para>You may use the <literal>java-debug</literal> make target to get >+ information for debugging your port. It will display the value of many of >+ the forecited variables.</para> >+ > </sect1> > > <sect1 id="using-python">
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 66633
: 42768