|
Julian
|
|
Post:
May 12th 2008 at 7:42 PM |
|
|
I was looking at the ubuntu repository package
On this lines:
----------------------------------------------------
d=/usr/local/opt/java
t=/usr/lib/jvm/java-1.5.0-sun && test -d $t && d=$t
t=/usr/lib/jvm/java-6-sun && test -d $t && d=$t
----------------------------------------------------
the script is trying to found your Java Runtime Path.
but it seems you don't have a sun-java package installed what is needed for that version of tuxguitar
As it don't found that sun java installation folders, it keeps on a default path "/usr/local/opt/java" what ofcourse don't exists on your system.
But the bug is on the package dependencies.
it depends on:
sun-java6-jre | java2-runtime
the " | " is an Or, it means one package or other.
so if you already have "java2-runtime" package installed ( and i'm sure you have it ) sun-java6-jre will be not installed.
but the problem is that version of tuxguitar only work with a "sun" java. ( java2-runtime, is a buggy dependency )
So.. cleaning. try to do this:
sudo apt-get install sun-java6-jre
i'm sure it'll work.
|
|