RE: jdk13 port broken?

2003-09-15 Thread Rob
I had the same problem. I used make WITH_LINUX_BOOTSTRAP=yes install
clean   I think that was the correct command, look at the Makefile and
look at the options..

Hope this helps
ROb

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott Reese
Sent: Monday, September 15, 2003 1:07 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: jdk13 port broken?

[Please cc: me in any replies as I'm not currently subscribed to these
lists.  Thank you.]

Hello all,

Sorry for the cross-posting but I wasn't sure which list would be better
for this question.  I'm trying to build the jdk13 port and no matter
what I do, I can't get past the following error:

# Start of jdk build
i386 Build started:   1.3.1-p8-root-030915-11:03
ERROR: Your BOOTDIR environment variable does not point
   to a valid Java 2 SDK for bootstrapping this build.
   A Java 2 SDK 1.3.1 build must be bootstrapped against any
   1.3 build. Please update your ALT_BOOTDIR setting, or
   just unset it, and start your build again.
 
Exiting because of the above error(s).
gmake: *** [sanity] Error 1
*** Error code 2
 
Stop in /usr/ports/java/jdk13.

I've tried searching Google for an answer to this problem, but nothing
I've found there has helped so far.  My BOOTDIR environment variable
isn't set at all.  I've tried explicity setting ALT_BOOTDIR to
/usr/local/diablo-jdk1.3.1 but that doesn't help either.  Any ideas as
to what the problem might be?  Any and all suggestions welcome.

Thank you,
Scott

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: JDK13

2003-01-03 Thread Joseph Olatt
I believe that you need to get the source for JDK from the sun site
(after agreeing to their license agreement) and then compile it using
the patches provided at the following site:

http://www.eyesbeyond.com/freebsddom/java/jdk13.html

See above site for more info.


On Fri, Jan 03, 2003 at 08:14:30AM -0500, Alvaro Rosales R. wrote:
 HEllo guys, Im trying to install JDK 13 in my FreeBSD BOx but I cant 
 find the src files the port asks me to  fetch from SUN's website, there I 
 can only find a linux binary and a Solarys tar.Z file. Can yoou tell me  
 where else can I look for it? or Does anyone of you have it in an FTP 
 server?. Thanks in advance for all your help!
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: jdk13

2002-11-27 Thread Kris Kennaway
On Wed, Nov 27, 2002 at 11:24:32PM +0100, Lasse Laursen wrote:

 I have downloaded the patches and source from SUN and everything seems to
 compile fine until I get this:
 
 *** Error code 1 (ignored)
 ./makekeys 
 /usr/ports/x11/XFree86-4-libraries/work/xc/exports/include/X11/keysymdef.h 
 ks_tables_h
 ./makekeys: not found
 *** Error code 127
 
 Stop in /usr/ports/x11/XFree86-4-libraries/work/xc/lib/X11.

This is the XFree86-4-libraries port breaking, not jdk13

 I have searched for 'makekeys' but I can't seem to figure out which port it
 is in?

It's in the XFree86-4-libraries port (it's being invoked as
./makekeys, i.e. it's supposed to exist in that build directory).

 Anyone have had success installing jdk13?

s/jdk13/XFree86-4-libraries/

When building XFree86 4.x, it's important that you don't have any old
imake binaries lying around.  If you do, delete them (or preferably
deinstall the port(s) that contain them).

Kris


msg10406/pgp0.pgp
Description: PGP signature


Re: JDK13 || OpenOffice

2002-10-02 Thread Alexander Kabaev

jdk13 is used in the OO build process.

On Tue, 1 Oct 2002 21:11:49 -0400
MET [EMAIL PROTECTED] wrote:

 Why does OpenOffice require jdk13?  According to the site its not one
 of the requirements, or a requirement of StarOffice for that matter?
 
 ~ Matthew

-- 
Alexander Kabaev

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: JDK13

2002-10-02 Thread Weston M. Price

Actually, for binaries aka java, javac the soft link should work just fine. 
The CLASSPATH variable only comes into play when actually executing class 
files within the JVM, thus, the variable really has nothing to do with binary 
execution. 

Many Java applications require the JAVA_HOME variable to be set to run 
properly. I don't know what shell you use but for the Korn shell you would 
put this in your .profile

JAVA_HOME=/path/to/where/you/installed/the/jdk. 
export JAVA_HOME. 

Regards,

Weston

On Wednesday 02 October 2002 06:03 pm, Matt Smith wrote:
 either add /usr/local/jdk1.3.1/bin/ to your PATH, or simply make
 soft-links (or hard links, at your preference):

 ln -s /usr/local/jdk1.3.1/bin/java /usr/local/bin/java

 HOWEVER, I believe (from my minimal Java experience) that the Java
 utilities will look for CLASS_PATHs and other java Stuff relative to
 location of java binaries.  Executing via link from another location
 (like /usr/local/bin) may cause issues.
 But again, my Java experience is minimal, and I may be waaay off.
 Perhaps someone on this list can clarify?
 -Matt

 On Wed, 2002-10-02 at 13:29, MET wrote:
  Is there any way that I could make java and javac global commands like
  other programs?  So that way I can be in any folder and type java and
  have it execute the file through the VM?
 
  ~ Matthew
 
  P.S. I'm picky but thanks a lot
 
  -Original Message-
  From: Matt Smith [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 02, 2002 1:19 PM
  To: MET
  Cc: [EMAIL PROTECTED]
  Subject: Re: JDK13
 
 
  try:
 
  /usr/local/jdk1.3.1/bin/java
 
  and
 
  /usr/local/jdk1.3.1/bin/javac
 
  -Matt
 
  On Wed, 2002-10-02 at 13:15, MET wrote:
   So I installed the JDK13 and would like to start coding.  However,
   java and javac commands seem to do nothing.  Do I have to make them
   alias's to the programs (didn't actually check if they're installed)
   or something else?
  
   Ideas?
  
   ~ Matthew
  
  
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body of the message

 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: JDK13 || OpenOffice

2002-10-01 Thread Charles J. Gaush

On Tuesday 01 October 2002 09:11 pm, MET wrote:
 Why does OpenOffice require jdk13?  According to the site its not one of
 the requirements, or a requirement of StarOffice for that matter?

 ~ Matthew


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

I avoided this problem by just getting the Linux package from OpenOffice.org 
and installing as usual (extract and run ./setup), making sure to cancel out 
of the Java option when presented.  Perhaps with FreeBSD there's a Makefile 
option that can be changed (?)

CG

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message