From owner-freebsd-java@FreeBSD.ORG Thu Jan 17 19:58:36 2008 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6049716A418; Thu, 17 Jan 2008 19:58:36 +0000 (UTC) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (scotth.emsphone.com [199.67.51.179]) by mx1.freebsd.org (Postfix) with ESMTP id 2CADC13C455; Thu, 17 Jan 2008 19:58:36 +0000 (UTC) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (localhost [127.0.0.1]) by scotth.emsphone.com (8.14.2/8.14.2) with ESMTP id m0HJmeFu063967; Thu, 17 Jan 2008 13:48:40 -0600 (CST) (envelope-from shildret@scotth.emsphone.com) Received: (from shildret@localhost) by scotth.emsphone.com (8.14.2/8.14.2/Submit) id m0HJmdxR063966; Thu, 17 Jan 2008 13:48:39 -0600 (CST) (envelope-from shildret@scotth.emsphone.com) From: "Scott T. Hildreth" To: martinko In-Reply-To: <478A7AFB.8040604@users.sf.net> References: <478A7AFB.8040604@users.sf.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 17 Jan 2008 13:48:39 -0600 Message-Id: <1200599319.6367.75.camel@scotth.emsphone.com> Mime-Version: 1.0 X-Mailer: Evolution 2.12.2 FreeBSD GNOME Team Port Cc: freebsd-database@freebsd.org, freebsd-ports@freebsd.org, freebsd-java@freebsd.org Subject: Re: Oracle SQL Developer X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shildreth@allantgroup.com List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2008 19:58:36 -0000 On Sun, 2008-01-13 at 21:56 +0100, martinko wrote: > Marcin Cieslak wrote: > > martinko wrote: > >> Hallo, > >> > >> Would someone care to port Oracle's SQL Developer to FreeBSD, please ? > >> > >> > >> > >> > >> Many thanks in advance! > > > > There is actually nothing to port, just download the non-JRE platform > > independent zip file, unpack and run "bash sqldeveloper" from > > sqldeveloper/sqldeveloper/bin directory. > > > > Works for me (7.0-BETA3 on amd64, self-compiled sun jdk15 from ports). > > > > --Marcin > > > > > Well, > > I've tried it on 6-STABLE (6.2.something) and it got stuck at splash > screen. Btw, I've noticed output like this in terminal: When I first ran it, I had the same problem. Then I noticed that there was a prompt window behind the splash screen. I was able to grab the edge and pull the window over and answer the prompt. > > expr: illegal option -- X > usage: expr [-e] expression > expr: illegal option -- D > usage: expr [-e] expression > Linux expr has different options then the FreeBSD expr. I ignore these errors since they are testing paths and my install is working. > Also, all the scripts use #!/bin/bash which doesn't work in FreeBSD. I wrote a wrapper script to handle this, ============================================= #!/usr/local/bin/zsh cd ~/src/Java/sqldeveloper/sqldeveloper/bin/ bash ./sqldeveloper $@ ============================================= ...you could also link /usr/local/bin/bash to /bin/bash. > And I'd like to install it in /usr/local/... so that all users can use > it and it can be included in portaudit checks and checked for upgrades > via ports system, etc etc. > > Thanks, > > Martin > > _______________________________________________ > freebsd-database@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-database > To unsubscribe, send any mail to "freebsd-database-unsubscribe@freebsd.org"