36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" [
|
|
<!ENTITY base CDATA "../..">
|
|
<!ENTITY date "$FreeBSD: www/en/java/docs/howtoports.sgml,v 1.1 2000/01/29 14:17:10 wosch Exp $">
|
|
<!ENTITY title "FreeBSD Java Project: How To Make a Port">
|
|
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
|
]>
|
|
<html>
|
|
&header;
|
|
|
|
<table width="600" border="0">
|
|
<tr>
|
|
<td>
|
|
<h1> <font color="#660000">How to Make a Port</font></h1>
|
|
|
|
<P>General instructions can be found in the FreeBSD Handbook, under <A HREF="http://www.freebsd.org/handbook/porting.html">Porting Applications</A>.
|
|
<P>For Java ports, there are unofficial standards:
|
|
<P><PRE>
|
|
1) If it's a library then jar files go into:
|
|
/usr/local/share/java/classes/
|
|
|
|
2) If it's a stand-alone application then jar files go into:
|
|
/usr/local/share/java/<application-name>/
|
|
and scripts to run it go into:
|
|
/usr/local/bin/
|
|
|
|
3) Documentation goes into:
|
|
/usr/local/share/doc/java/<application-name>/
|
|
</PRE>
|
|
<P>The more ported applications we have, the better.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
&footer;
|
|
</BODY>
|
|
</HTML>
|