Ubuntu に openjdk をインストールする際の依存関係の問題

Ubuntu に openjdk をインストールする際の依存関係の問題

openjdk-7-jre をインストールしてみます:

sudo apt-get install openjdk-7-jre

しかし、依存関係の問題があります:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 openjdk-7-jre : Depends: openjdk-7-jre-headless (= 7u7-2.3.2a-0ubuntu0.12.04.1) but it is not going to be installed
                 Depends: libgif4 (>= 4.1.4) but it is not installable
                 Depends: libatk-wrapper-java-jni (>= 0.30.4-0ubuntu2) but it is not installable
                 Recommends: libgnome2-0 but it is not installable
                 Recommends: libgnomevfs2-0 but it is not going to be installed
                 Recommends: ttf-dejavu-extra but it is not installable
E: Unable to correct problems, you have held broken packages.

これはUbuntuのバージョンです:

Ubuntu 12.04.1 LTS

依存関係を解決する方法が全く分かりません...
誰か助けてくれませんか?
よろしくお願いします。

答え1

さて、依存関係ツリー内のすべての依存関係をインストールしようとしましたが、最も基本的なものは次のとおりです。

tzdata-java_2012e-0ubuntu0.12.04_all.deb

以下からダウンロードしました:

https://launchpad.net/ubuntu/+source/tzdata/2012e-0ubuntu0.12.04/+build/3726497/+files/tzdata-java_2012e-0ubuntu0.12.04_all.deb

そして次のように入力しました:

sudo dpkg -i tzdata-java_2012e-0ubuntu0.12.04_all.deb

もう一度:

sudo apt-get install openjdk-6-jre

そして現在インストールプロセス中です。

関連情報