diff options
author | agc <agc> | 1998-01-28 11:04:33 +0000 |
---|---|---|
committer | agc <agc> | 1998-01-28 11:04:33 +0000 |
commit | 5c726fc4bc4a34739869e99b87aa0bf0ab7c51d3 (patch) | |
tree | d3b2d6591f708531f8b382f02e4e8ca6623d4ef6 /lang/kaffe | |
parent | d66e36ebf3856b03f8b424f028f3064016a9a5f7 (diff) | |
download | pkgsrc-5c726fc4bc4a34739869e99b87aa0bf0ab7c51d3.tar.gz |
Make the pathnames right for NetBSD in the section describing
environment variables necessary to run kaffe. i.e. don't assume
/usr/local, but generalise it to ${PREFIX}
Diffstat (limited to 'lang/kaffe')
-rw-r--r-- | lang/kaffe/pkg/DESCR | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lang/kaffe/pkg/DESCR b/lang/kaffe/pkg/DESCR index 97eda973075..2b4dcebec04 100644 --- a/lang/kaffe/pkg/DESCR +++ b/lang/kaffe/pkg/DESCR @@ -1,8 +1,3 @@ -******************* -* NB: The section about the settings of the environment variables -* has changed! - Xaa -******************* - This is Kaffe, a virtual machine design to execute Java bytecode. This machine can be configured in two modes. In one mode it operates as a pure bytecode interpreter (not unlike Javasoft's machine); in the second @@ -17,13 +12,17 @@ Before running Kaffe it is necessary to configure the environment. This requires the setting of CLASSPATH, KAFFEHOME and LD_LIBRARY_PATH. For the standard installation these would be defined as follows: - CLASSPATH=.:/usr/local/share/kaffe/classes.zip - KAFFEHOME=/usr/local/share/kaffe - LD_LIBRARY_PATH=/usr/lib:/usr/local/lib + CLASSPATH=.:${PREFIX}/share/kaffe/classes.zip + KAFFEHOME=${PREFIX}/share/kaffe + LD_LIBRARY_PATH=/usr/lib:${PREFIX}/lib -You can run "sh /usr/local/share/kaffe/ENVIRONMENT" to have these set for +You can run "sh ${PREFIX}/share/kaffe/ENVIRONMENT" to have these set for you. +The value ${PREFIX} above is whatever LOCALBASE is set to in the +environment, or in /etc/mk.conf, when the package was installed on +NetBSD. By default this is /usr/pkg. + What's in there =============== |