Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

Howto: IcedTea 64bit java plugin (the ugly way)

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Post Reply
Advanced search
67 posts
  • 1
  • 2
  • 3
  • Next
Author
Message
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

Howto: IcedTea 64bit java plugin (the ugly way)

  • Quote

Post by gimpel » Tue Nov 13, 2007 10:32 pm

Update:
Meanwhile there are 3 methods to get icedtea installed:
* java-overlay: uses gcj/classpath to bootstrap icedtea
* geki's overlay: more relaxed, just uses sun-jdk
* updated openjdk-bin from fedora rpms


Now the deprecated part:
---------------------------------------------------------------------------------------------------

Now that Fedora, Ubuntu and Mandriva come with a working 64bit java browser plugin thanks to icedtea I wondered how difficult it would be to run that on Gentoo.

So first I tried compiling it, but LOL icedtea-1.4 needs an older version of itself to compile itself. Now that sounds like a Monty Python classic, really. Fedora simply provides an rpm of an older icedtea, without src.rpm. We would have to bootstrap the old version first, and then compile the new. No idea how to do that in a fashioned way...

So let's install the Fedora binaries. Thx Fedora! :)

EDIT: ebuild here:

Code: Select all

svn co http://gimpel.ath.cx/svn/gimpel/dev-java/icedtea-bin/
Manual way:

get java-1.7.0-icedtea-1.7.0.0-0.19.b21.snapshot.fc8.x86_64.rpm and java-1.7.0-icedtea-plugin-1.7.0.0-0.19.b21.snapshot.fc8.x86_64.rpm from e.g.
http://fedora.tu-chemnitz.de/pub/linux/ ... /Packages/
and

Code: Select all

mkdir /tmp/icedtea
cd /tmp/icedtea
rpm2targz *.rpm
tar xvf *.tar.gz
sudo cp -a ./usr/lib/jvm* /usr/lib64
sudo ln -s /usr/lib64/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64/jre/lib/amd64/gcjwebplugin.so /usr/share/java-config-2/nsplugin/icedtea-jdk-1.7-javaplugin.so
rm -rf ../icedtea
And put this file in /usr/share/java-config-2/vm/ as icedtea-jdk-1.7

Code: Select all

VERSION="IcedTea JDK 1.7.0"
JAVA_HOME=/usr/lib/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64
JDK_HOME=/usr/lib/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64
JAVAC=${JAVA_HOME}/bin/javac
PATH="${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin"
ROOTPATH="${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin"
LDPATH="${JAVA_HOME}/jre/lib/amd64/:${JAVA_HOME}/jre/lib/amd64/native_threads/:
${JAVA_HOME}/jre/lib/amd64/xawt/:${JAVA_HOME}/jre/lib/amd64/server/"
# ^^ NO NEW LINE FOR THIS!! ^^^
PROVIDES_TYPE="JDK JRE"
PROVIDES_VERSION="1.7"
# Taken from sun.boot.class.path property
BOOTCLASSPATH="${JAVA_HOME}/jre/lib/resources.jar:${JAVA_HOME}/jre/lib/rt.jar:${JAVA_HOME}/jre/lib/jsse.jar:
${JAVA_HOME}/jre/lib/jce.jar:${JAVA_HOME}/jre/lib/charsets.jar"
# ^^ NO NEW LINE FOR THIS!! ^^^
GENERATION="2"
ENV_VARS="JAVA_HOME JDK_HOME JAVAC PATH ROOTPATH LDPATH MANPATH"
VMHANDLE="icedtea-jdk-1.7"
PROVIDES="jdbc-stdext jdbc-rowset"

Code: Select all

# eselect java-nsplugin set 64bit icedtea-jdk-1.7
# eselect java-nsplugin list
Available 32-bit Java browser plugins
  [1]   emul-linux-x86-java-1.6  current
Available 64-bit Java browser plugins
  [1]   icedtea-jdk-1.7  current
$ java-config-2 -L
The following VMs are available for generation-2:
*)      Blackdown JDK 1.4.2.03 [blackdown-jdk-1.4.2]
2)      Sun 32bit JRE 1.6.0.03 [emul-linux-x86-java-1.6]
3)      IcedTea JDK 1.7.0 [icedtea-jdk-1.7]
4)      Sun JDK 1.5.0.13 [sun-jdk-1.5]
5)      Sun JDK 1.6.0.03 [sun-jdk-1.6]
Don't use it as jvm though, that would require some of the other rpm's to be installed first! (no javac included etc)

The best thing is, even that killer java thing http://map24.com works fine! That's known to kill firefox on fedora!
:mrgreen:

I think I'll hack up an ebuild for this. It's ugly, really. But it works great.

Cheers.
Last edited by gimpel on Wed Nov 05, 2008 8:56 pm, edited 6 times in total.
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
OmSai
l33t
l33t
User avatar
Posts: 605
Joined: Sun Sep 30, 2007 1:50 am
Location: Manchester, CT, USA

Re: Howto: 64bit java plugin (the ugly way)

  • Quote

Post by OmSai » Wed Nov 14, 2007 12:17 am

Great work!

My Godaddy FTP applet still isn't working though :(
It just shows a gray screen
EDIT: Actually I don't need Godaddy's applet 'cos gftp does the job 8)

But map24.com works


Minor edits:
gimpel wrote:mkdir /tmp/icedtea
cd /tmp/icedtea
rpm2targz *.rpm
gunzip *.tar.gz
tar xvf *.tar

sudo cp -a ./usr/lib/jvm* /usr/lib64
sudo ln -s /usr/lib64/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64/jre/lib/amd64/gcjwebplugin.so /usr/share/java-config-2/nsplugin/icedtea-jdk-1.7-javaplugin.so
rm -rf ../icedtea
gimpel wrote:# eselect java-nsplugin set 64bit icedtea-jdk-1.7
# eselect java-nsplugin list
Available 32-bit Java browser plugins
[1] emul-linux-x86-java-1.6 current
Available 64-bit Java browser plugins
[1] icedtea-jdk-1.7 current
Last edited by OmSai on Wed Nov 14, 2007 12:43 am, edited 1 time in total.
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

  • Quote

Post by gimpel » Wed Nov 14, 2007 12:26 am

Modern tar knows itself if it has to gunzip or bunzip2, without specifying -j or -z or the extra gunzip step ;)
Added the other edits though, thanks.

There is still some more stuff missing, like the extra rpm's needed for javac etc.
I'd prefer to have real ebuilds for this.
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
desultory
Bodhisattva
Bodhisattva
User avatar
Posts: 9410
Joined: Fri Nov 04, 2005 6:07 pm

  • Quote

Post by desultory » Wed Nov 14, 2007 9:59 am

Moved from Gentoo on AMD64 to Unsupported Software.
Top
FireBurn
Apprentice
Apprentice
Posts: 170
Joined: Sun Sep 19, 2004 3:00 pm
Location: Edinburgh, UK

  • Quote

Post by FireBurn » Wed Nov 14, 2007 1:47 pm

I wondered why there had been no Icetea ebuild yet. Especially considering there are OpenJDK builds and gcj-jdk builds too

Mike
Top
loftwyr
l33t
l33t
User avatar
Posts: 970
Joined: Wed Dec 29, 2004 2:51 am
Location: 43°38'23.62"N 79°27'8.60"W

  • Quote

Post by loftwyr » Thu Nov 15, 2007 11:04 pm

IcedTea is still an early beta (java 1.6 went to over 100 beta releases). Can you imagine the bug reports if it was in portage now?
My emerge --info
Have you run revdep-rebuild lately? It's in gentoolkit and it's worth a shot if things don't work well.
Celebrating 5 years of Gentoo-ing.
Top
FireBurn
Apprentice
Apprentice
Posts: 170
Joined: Sun Sep 19, 2004 3:00 pm
Location: Edinburgh, UK

  • Quote

Post by FireBurn » Fri Nov 16, 2007 9:59 am

Sorry not portage but in the java-overlay or the java-experimental-overlay at the v least

Mike
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

icedtea-plugin-0.19.ebuild

  • Quote

Post by loeb-it » Sat Nov 24, 2007 7:01 pm

Hi,

built an ebuild for that. Copy to /usr/local/portage/dev-java/icedtea-plugin
ebuild icedtea-plugin-0.19.ebuild digest and be happy ;)

Greetz

loeb-it

Code: Select all

# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: icedtea-plugin-1.7.0.0-0.19.ebuild 
inherit eutils java-vm-2

DESCRIPTION="Java Plugin for 64 Bit Browsers"
HOMEPAGE="http://icedtea.classpath.org"
MY_P="icedtea-plugin-${PV}"
SRC_URI="http://fedora.tu-chemnitz.de/pub/linux/fedora/linux/releases/8/Fedora/x86_64/os/Packages/java-1.7.0-icedtea-1.7.0.0-${PV}.b21.snapshot.fc8.x86_64.rpm
	http://fedora.tu-chemnitz.de/pub/linux/fedora/linux/releases/8/Fedora/x86_64/os/Packages/java-1.7.0-icedtea-plugin-1.7.0.0-${PV}.b21.snapshot.fc8.x86_64.rpm"
SLOT="0"
LICENSE="OSGPL-0.0"
KEYWORDS="amd64"
IUSE=""

DEPEND="app-arch/rpm2targz"

S="${WORKDIR}/icedtea-plugin"

src_unpack() {
	echo ${PV}
	rpm2targz ${DISTDIR}/java-1.7.0-icedtea-1.7.0.0-${PV}.b21.snapshot.fc8.x86_64.rpm
	rpm2targz ${DISTDIR}/java-1.7.0-icedtea-plugin-1.7.0.0-${PV}.b21.snapshot.fc8.x86_64.rpm
	tar xzf java-1.7.0-icedtea-1.7.0.0-${PV}.b21.snapshot.fc8.x86_64.tar.gz
	tar xzf java-1.7.0-icedtea-plugin-1.7.0.0-${PV}.b21.snapshot.fc8.x86_64.tar.gz
}

src_install() {
	insinto "/usr/lib/pkgconfig"
	mkdir -p ${D}/usr/lib64
	mkdir -p ${D}/usr/share/java-config-2/vm/
	cp -a "${WORKDIR}"/usr/lib/jvm* ${D}/usr/lib64 
	cp -a "${WORKDIR}"icedtea-jdk-1.7 ${D}/usr/share/java-config-2/vm/
}

pkg_postinst() {
	mkdir -p ${D}usr/share/java-config-2/nsplugin
	ln -s /usr/lib64/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64/jre/lib/amd64/gcjwebplugin.so /usr/share/java-config-2/nsplugin/icedtea-jdk-1.7-javaplugin.so
	eselect java-nsplugin set 64bit icedtea-jdk-1.7 
        eselect java-nsplugin list
}

pkg_postrm(){
	rm /usr/share/java-config-2/nsplugin/icedtea-jdk-1.7-javaplugin.so
}
Last edited by loeb-it on Sun Nov 25, 2007 1:18 am, edited 1 time in total.
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

  • Quote

Post by gimpel » Sun Nov 25, 2007 1:01 am

The part where it says "# ^^ NO NEW LINE FOR THIS!! ^^^" means, that the 2 lines before should be one line.

I just made a new line as otherwise it would have been hard to read this thread. Sorry if that was confusing.

Also the java-vm-2 eclass could take care of creating this file. Half of it is unneeded/even wrong.
But hey, the plugin works :)
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

  • Quote

Post by loeb-it » Sun Nov 25, 2007 1:20 am

thx, corrected. Was my first ebuild... Now java-config mentions icedtea as available java vm, shouldn't be a problem ;)
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
clement.cc
n00b
n00b
Posts: 1
Joined: Sun Nov 25, 2007 2:57 am

GCC 4.2+ required

  • Quote

Post by clement.cc » Sun Nov 25, 2007 3:10 am

Would like to add that GCC 4.2 seems to be required by the icedtea binary from that Fedora rpm. GCC 4.2 must also be the currently selected compiler in gcc-config. (Just installing it is not good enough)

If you see only gray area in the java applet area, that's probably why. If it's still gray area, try running firefox from a console and see what it says.

This is what I got before upgrading to GCC 4.2:
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/lib64/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64/jre/lib/amd64/libfontmanager.so: /lib/libgcc_s.so.1: version `GCC_4.2.0' not found (required by /usr/lib64/jvm/java-1.7.0-icedtea-1.7.0.0.x86_64/jre/lib/amd64/libfontmanager.so)
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
Top
desultory
Bodhisattva
Bodhisattva
User avatar
Posts: 9410
Joined: Fri Nov 04, 2005 6:07 pm

  • Quote

Post by desultory » Sun Nov 25, 2007 10:01 am

loeb-it wrote:

Code: Select all

	eselect java-nsplugin set 64bit icedtea-jdk-1.7 
        eselect java-nsplugin list
Better to not do that in the ebuild, just document it with elog and let the user do it as required or desired.
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

  • Quote

Post by gimpel » Sun Nov 25, 2007 11:04 am

loeb-it, thanks for the ebuild! I cleaned it up a bit to use portage eclass stuff.

Still far from being perfect, but usable.
EDIT: added gcc version check and warning.

icedtea-bin-1.7.0.ebuild

Code: Select all

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils java-pkg-2 java-vm-2 rpm toolchain-funcs

DESCRIPTION="Java Plugin for 64 Bit Browsers"
HOMEPAGE="http://icedtea.classpath.org"
FEDORA_V="1.7.0.0-0.19.b21.snapshot.fc8.x86_64"
BASE_URI="http://fedora.tu-chemnitz.de/pub/linux/fedora/linux/releases/8/Fedora/x86_64/os/Packages"
SRC_URI="${BASE_URI}/java-${PV}-icedtea-${FEDORA_V}.rpm
        ${BASE_URI}/java-${PV}-icedtea-devel-${FEDORA_V}.rpm
        nsplugin? ( ${BASE_URI}/java-${PV}-icedtea-plugin-${FEDORA_V}.rpm )"
SLOT="1.7"
LICENSE="OSGPL-0.0"
KEYWORDS="-* ~amd64"
IUSE="nsplugin"

RDEPEND=">=sys-devel/gcc-4.2"

S="${WORKDIR}"

pkg_setup() {
        java-vm-2_pkg_setup
        java-pkg-2_pkg_setup

        if [ $(gcc-version) != "4.2" ]; then
                ewarn "${P} is a binary package, and needs gcc-4.2 to be installed and"
                ewarn "set as currently active compiler!"
                sleep 5
        fi
}

src_unpack() {
        rpm_src_unpack
}

src_compile() {
        elog "We install a Fedora binary distribution. Nothing to compile."
}

src_install() {
        dodir /usr/lib64
        cp -a usr/lib/jvm* ${D}/usr/lib64

        if use nsplugin; then
                install_mozilla_plugin \
                /usr/lib64/jvm/java-${PV}-icedtea-${PV}.0.x86_64/jre/lib/amd64/gcjwebplugin.so
        fi

        set_java_env
}
files/icedtea-bin-1.7.env

Code: Select all

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

VERSION="IcedTea JDK @PV@"
JAVA_HOME=/usr/lib/jvm/java-@PV@-icedtea-@PV@.0.x86_64
JDK_HOME=/usr/lib/jvm/java-@PV@-icedtea-@PV@.0.x86_64
JAVAC=${JAVA_HOME}/bin/javac
PATH="${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin"
ROOTPATH="${JAVA_HOME}/bin:${JAVA_HOME}/jre/bin"
LDPATH="${JAVA_HOME}/jre/lib/amd64/:${JAVA_HOME}/jre/lib/amd64/native_threads/:${JAVA_HOME}/jre/lib/amd64/xawt/:${JAVA_HOME}/jre/lib/amd64/server/"
PROVIDES_TYPE="JDK JRE"
PROVIDES_VERSION="1.7"
# Taken from sun.boot.class.path property
BOOTCLASSPATH="${JAVA_HOME}/jre/lib/resources.jar:${JAVA_HOME}/jre/lib/rt.jar:${JAVA_HOME}/jre/lib/jsse.jar:${JAVA_HOME}/jre/lib/jce.jar:${JAVA_HOME}/jre/lib/charsets.jar"
GENERATION="2"
ENV_VARS="JAVA_HOME JDK_HOME JAVAC PATH ROOTPATH LDPATH"
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

icedtea

  • Quote

Post by loeb-it » Mon Nov 26, 2007 10:24 pm

Nicely done, gimpel.

And I learned a lot of the power of portage...

Well, have a nice glass of iced tea ;)
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
marschw
n00b
n00b
Posts: 51
Joined: Wed Jun 04, 2003 6:38 am

  • Quote

Post by marschw » Wed Nov 28, 2007 8:05 pm

You might want to change the ewarn to:

Code: Select all

ewarn "${P} is a binary package, and needs gcc-4.2 to be installed and"
ewarn "set as currently active compiler whenever you wish to use ${P}!"
At first, I thought it meant only while running the emerge.
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

  • Quote

Post by gimpel » Wed Nov 28, 2007 8:49 pm

marschw wrote:You might want to change the ewarn to:

Code: Select all

ewarn "${P} is a binary package, and needs gcc-4.2 to be installed and"
ewarn "set as currently active compiler whenever you wish to use ${P}!"
At first, I thought it meant only while running the emerge.
Okay, even better to put it to pkg_postinst() at the end of the emerge.
Done for the ebuild in my svn.
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
Need4Speed
Guru
Guru
User avatar
Posts: 497
Joined: Sun Jun 06, 2004 2:12 am

  • Quote

Post by Need4Speed » Sun Dec 02, 2007 7:29 pm

This is really awesome! Works great in 64bit firefox and loads faster than sun's java 32bit plugin. Hope it gets in portage soon.
Top
ronmon
Veteran
Veteran
User avatar
Posts: 1043
Joined: Mon Apr 15, 2002 12:53 pm
Location: Key West, FL

  • Quote

Post by ronmon » Mon Dec 03, 2007 2:43 pm

Thanks guys. Nice job, it seems to work well. I'll be dumping firefox-bin pretty soon if this keeps working.

One thing I did notice was that most of the smaller fonts got jagged and ugly. I had to bump my minimum font size from 16 to 17 to fix it. I don't understand why a java change would affect normal content on non-java web pages. Huh, oh well.
Ask Questions the Smart Way - by ESR
Top
LoSeR_5150
Guru
Guru
User avatar
Posts: 455
Joined: Sun Mar 20, 2005 9:19 pm
Location: San Francisco, CA

  • Quote

Post by LoSeR_5150 » Mon Dec 03, 2007 7:21 pm

Thanks for putting this ebuild together (and the quick and dirty guide before it) now I can use 64bit firefox again reliably... now just got to wait for the sound to get implemented.
Opteron 1356@2.4Ghz
6GB DDR2 800Mhz
128MB Quadro NVS 210S
640GB Western Digital HD
*Gentoo-x86_64-2.6.30-r1

Opteron175@2.2GHz
2GB DDR 400MHz
256MB Quadro 1400 Go
(2) 80GB Segate HDs: RAID0
*Gentoo-x86_64-2.6.30-r1
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

  • Quote

Post by loeb-it » Mon Dec 03, 2007 10:58 pm

Just for testing sound I tried this applet: http://www.pagetools.de/java-applets6/s ... kepit.html and sound works.
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
j79zlr
Apprentice
Apprentice
User avatar
Posts: 235
Joined: Sun Dec 05, 2004 8:44 am
Location: Chicago, IL
Contact:
Contact j79zlr
Website

  • Quote

Post by j79zlr » Tue Dec 04, 2007 12:18 am

Seems to be working great when it does, but still doesn't load yahoo games applets or some browser based irc software.
Top
MalleRIM
Guru
Guru
Posts: 563
Joined: Mon Jul 23, 2007 8:41 pm
Location: China

  • Quote

Post by MalleRIM » Wed Dec 05, 2007 8:29 pm

There is also the source code available:
http://icedtea.classpath.org/hg/icedtea ... 78e0fccf14
This should be put in an ebuild - unfortunately I don't know anything about ebuilds.
oops... this is just for 1.4 or lower.
Top
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

  • Quote

Post by gimpel » Wed Dec 05, 2007 11:42 pm

http://mail.openjdk.java.net/pipermail/ ... 00544.html
8)

Let's wait till they upgrade to b24 - current b22 seems broken for X86_64.
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
christophocles
n00b
n00b
Posts: 4
Joined: Mon Aug 27, 2007 5:53 pm

  • Quote

Post by christophocles » Wed Dec 12, 2007 2:43 am

nice work... thanks for putting this together
Top
Belliash
Advocate
Advocate
User avatar
Posts: 2503
Joined: Wed Nov 24, 2004 1:39 pm
Location: Wroclaw, Poland
Contact:
Contact Belliash
Website

  • Quote

Post by Belliash » Wed Dec 12, 2007 7:43 am

Already in Arcon Overlay!
Asio Software Technologies
Belliash IT Weblog
Top
Post Reply

67 posts
  • 1
  • 2
  • 3
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic