From owner-freebsd-questions@FreeBSD.ORG Sat Aug 28 07:42:51 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 898F116A4CE for ; Sat, 28 Aug 2004 07:42:51 +0000 (GMT) Received: from ybbsmtp04.mail.yahoo.co.jp (ybbsmtp04.mail.yahoo.co.jp [210.81.151.172]) by mx1.FreeBSD.org (Postfix) with SMTP id A991743D6D for ; Sat, 28 Aug 2004 07:42:50 +0000 (GMT) (envelope-from ayakokiko@ybb.ne.jp) Received: from unknown (HELO gorgon.near.this) (219.11.234.11 with poptime) by ybbsmtp04.mail.yahoo.co.jp with SMTP; 28 Aug 2004 07:42:49 -0000 X-Apparently-From: Received: from hydra.near.this (hydra.near.this [10.0.3.20]) by gorgon.near.this (Postfix) with ESMTP id D59877F24 for ; Sat, 28 Aug 2004 16:42:41 +0900 (JST) Received: by hydra.near.this (Postfix, from userid 100) id 49F7B9826; Sat, 28 Aug 2004 16:42:41 +0900 (JST) Date: Sat, 28 Aug 2004 16:42:40 +0900 From: horio shoichi To: freebsd-questions@freebsd.org X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20040828.074241.7b2f7f7381abedda.10.0.3.20@bugsgrief.net> Subject: Re: compiling openoffice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Aug 2004 07:42:51 -0000 On Fri, 27 Aug 2004 16:56:21 -0400 Osmany Guirola Cruz wrote: > is it posible compile openoffice without install java > i do this > %make WITHOUT_JAVA=yes but the port still try to download tha java files > "apache-ant etc etc etc " i can not download the java files due to > restrictions of Sun with my domain ".cu".... what can i do binaries of > openoffice does not work because i have 5.3 beta "xorg" > what should i do > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > 1. Don't hijack unrelated thread. 2. You should have told us exactly what you did. What you typed, what you see on screen, the content of related files, etc. Now, if my guess hits, it could be your choice of openoffice. % grep JAVA /usr/ports/editors/openoffice*/Makefile /usr/ports/editors/openoffice-1.0/Makefile:BUILD_DEPENDS+= ${JAVAVM}:${PORTSDIR}/java/linux-sun-jdk13 /usr/ports/editors/openoffice-1.0/Makefile:BUILD_DEPENDS+= ${JAVAVM}:${PORTSDIR}/java/jdk13 /usr/ports/editors/openoffice-1.0/Makefile:JAVAVM= ${JDK13DIR}/bin/java /usr/ports/editors/openoffice-1.1-devel/Makefile:.if !defined(WITHOUT_JAVA) /usr/ports/editors/openoffice-1.1-devel/Makefile:USE_JAVA= 1.4+ /usr/ports/editors/openoffice-1.1-devel/Makefile:NO_RUN_DEPENDS_JAVA= yes /usr/ports/editors/openoffice-1.1-devel/Makefile:.if defined(WITHOUT_JAVA) /usr/ports/editors/openoffice-1.1-devel/Makefile:.if defined(WITHOUT_JAVA) /usr/ports/editors/openoffice-1.1-devel/Makefile:CONFIGURE_ARGS+= --with-jdk-home="${JAVA_HOME}" /usr/ports/editors/openoffice-1.1/Makefile:.if !defined(WITHOUT_JAVA) /usr/ports/editors/openoffice-1.1/Makefile:USE_JAVA= 1.4+ /usr/ports/editors/openoffice-1.1/Makefile:NO_RUN_DEPENDS_JAVA= yes /usr/ports/editors/openoffice-1.1/Makefile:.if defined(WITHOUT_JAVA) /usr/ports/editors/openoffice-1.1/Makefile:.if defined(WITHOUT_JAVA) /usr/ports/editors/openoffice-1.1/Makefile:CONFIGURE_ARGS+= --with-jdk-home="${JAVA_HOME}" % As you see, there is no WITHOUT_JAVA knob for openoffice-1.0. Neither for openoffice-2.0-devel, which could be the cause of mysterious make behavior. You should have chosen openoffice-1.1-devel or openoffice-1.1 in this case. horio shoichi