web-dev-qa-db-ja.com

次のパッケージには依存関係が満たされていない:libpulse-dev

わかりましたので、ソースからビルドしようとしていますが、そのためには依存関係をインストールする必要があります。

したがって、依存関係の1つは次のとおりです。

karl@karl-ux303ln:~/dev/RBDOOM-3-BFG/neo(master)$ Sudo apt-get install libsdl2-dev
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.
 libsdl2-dev : Depends: libpulse-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

そこで、libpulse-dev

The following packages have unmet dependencies.
 libpulse-dev : Depends: libpulse0 (= 1:4.0-0ubuntu11.1) but 1:4.0-0ubuntu11.1+kxstudio1 is to be installed
                Depends: libpulse-mainloop-glib0 (= 1:4.0-0ubuntu11.1) but 1:4.0-0ubuntu11.1+kxstudio1 is to be installed
E: Unable to correct problems, you have held broken packages.

ここから私はほとんど立ち往生しています。 Pulseがサウンドの原因であることは承知していますが、そのような問題の修正方法については迷っています。

また、この答えが提供するすべてのものを試しました: https://askubuntu.com/a/142808/130518

1
Karl Morrison

わかりましたので、接尾辞は犯人、具体的には+kxstudio1です。

karl@karl-ux303ln:~/dev/RBDOOM-3-BFG/neo(master)$ apt-cache policy libpulse0
libpulse0:
  Installed: 1:4.0-0ubuntu11.1+kxstudio1
  Candidate: 1:4.0-0ubuntu11.1+kxstudio1
  Version table:
 *** 1:4.0-0ubuntu11.1+kxstudio1 0
        100 /var/lib/dpkg/status
     1:4.0-0ubuntu11.1 0
        500 http://se.archive.ubuntu.com/ubuntu/ trusty-updates/main AMD64 Packages
     1:4.0-0ubuntu11 0
        500 http://se.archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages

Trustyの下にリストされているものをインストールします。

Sudo apt-get install libpulse0=1:4.0-0ubuntu11.1

libpulse-mainloop-glib0でも同じことを行います。

これで、他のパッケージをインストールできます! :D

KXStudioを使用していますが、インストール時にパッケージをカスタムパッケージで変更している必要があります。

2
Karl Morrison