Adobe 38000382 JRun Guide - Page 29

Setting the language, Setting the platform, Setting the destination directory

Page 29 highlights

Setting the language The SDK includes the following directories for creating custom localized JRun installations: • sdk_root/filesets/english • sdk_root/filesets/french • sdk_root/filesets/japanese These directories include localized versions of JRun files. You can set the language using the Ant command. The following example shows an installer that uses the French-language fileset: %> ant -D oem.language=french Valid values for the oem.language property are: english, french, and japanese. The default is english. Note: The property settings are not case-sensitive. Target names are case-sensitive. Setting the platform You can set the target platform for the JRun installation using the oem.os property. The default is intel-win, as the following example shows: %> ant -D oem.os=intel-win The oem.os property corresponds to the name of the filesets directories, not including the localization directories. The possible values of the oem.os property are as follows: • intel-win • alpha-osf1 • intel-linux • pa_risc-hpux • ppc-aix • sparc-solaris For a description of these filesets, see "SDK file group" on page 4. Setting the destination directory You can set the destination directory of the JRun installation using the oem.destination property in the build.xml file. The default is {basedir}/generated, as the following example shows: You can change the base directory and the subdirectory defined by the oem.destination property. For example, if you want to set the destination directory to /opt/jrun4, replace the existing value with the following: In Windows, the default installation directory for JRun is c:/jrun4. On UNIX, the default installation directory is /opt/jrun4. Building a customized version of JRun 15

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116

Building a customized version of JRun
15
Setting the language
The SDK includes the following directories for creating custom localized JRun
installations:
sdk_root
/filesets/english
sdk_root
/filesets/french
sdk_root
/filesets/japanese
These directories include localized versions of JRun files.
You can set the language using the Ant command. The following example shows an
installer that uses the French-language fileset:
%> ant -D oem.language=french
Valid values for the
oem.language
property are: english, french, and japanese. The
default is english.
Note:
The property settings are not case-sensitive. Target names are case-sensitive.
Setting the platform
You can set the target platform for the JRun installation using the
oem.os
property. The
default is
intel-win
, as the following example shows:
%> ant -D oem.os=intel-win
The
oem.os
property corresponds to the name of the filesets directories, not including
the localization directories. The possible values of the
oem.os
property are as follows:
intel-win
alpha-osf1
intel-linux
pa_risc-hpux
ppc-aix
sparc-solaris
For a description of these filesets, see
“SDK file group” on page 4
.
Setting the destination directory
You can set the destination directory of the JRun installation using the
oem.destination
property in the build.xml file. The default is
{basedir}/generated
,
as the following example shows:
<property name="oem.destination" value="${basedir}/generated" />
You can change the base directory and the subdirectory defined by the
oem.destination
property. For example, if you want to set the destination directory to /opt/jrun4, replace
the existing value with the following:
<property name="oem.destination" value="/opt/jrun4" />
In Windows, the default installation directory for JRun is c:/jrun4. On UNIX, the
default installation directory is /opt/jrun4.