From owner-freebsd-questions@FreeBSD.ORG Thu Feb 27 16:50:17 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3846A2E5 for ; Thu, 27 Feb 2014 16:50:17 +0000 (UTC) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7B8E1AB5 for ; Thu, 27 Feb 2014 16:50:16 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WJ49v-00080p-7e for freebsd-questions@freebsd.org; Thu, 27 Feb 2014 17:50:07 +0100 Received: from pool-173-79-82-127.washdc.fios.verizon.net ([173.79.82.127]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Feb 2014 17:50:07 +0100 Received: from nightrecon by pool-173-79-82-127.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Feb 2014 17:50:07 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Subject: Re: Epiphany with Java? Date: Thu, 27 Feb 2014 11:49:49 -0500 Lines: 42 Message-ID: References: <20140212120117.5d0fd827.freebsd@edvax.de> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-173-79-82-127.washdc.fios.verizon.net User-Agent: KNode/4.12.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: nightrecon@hotmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 16:50:17 -0000 Volker Nebel wrote: > Hi everybody! > > On my macmini there is FreeBSD 10 running, and I want to use Epiphany as > my web browser. With Java. First I tried installing port java/icedtea-web, > until I noticed, this downloads firefox, and this is not the browser I > want to use. So I installed java/openjdk7. > Is this sufficient? How do I find out whether java is working with > epiphany? There is a test page: http://java.com/en/download/installed.jsp > and this tells me: "We are unable to verify if Java is currently installed > and enabled in your browser." > In my browser settings I do have allowed Popup windows, activated > Plugins and JavaScript. I do not have a firewall. So there is nothing that > should prevent Java from working. But perhaps I need some other package or > what??? > Don't know if this will work as I don't know anything about Epiphany per se. The generic thing I've seen mostly in the past wrt to this is to look for wherever epiphany stores its user info somewhere in your home directory. Particularly a place where it might store plugins. A lot of times this is actually a directory named Plugins. Then hunt down the .so file which is the browser plugin. I believe with a JDK you get the compiler/dev tools together with the JRE, if the browser plugin is present it usually lives somewhere a few levels down under the JRE branch of things. If you find both, cd to the Epiphany plugins directory and do something like: ln -s /path/to/java/JRE/blah/blah/browser-plugin.so browser-plugin.so where you replace browser-plugin.so with the correct filename. Then when you start Epiphany it should scan the plugins directory and then have the JRE browser plugin available. Very generic. If Epiphany doesn't store plugins this way (eg in a users home directory) you may have to actually hunt down where it stores it's main functionalities under some lib directory somewhere and put the symlink there instead. -Mike