web-dev-qa-db-ja.com

ubuntu(xenial)にGimpプラグインをインストールする

ウェーブレット分解アドオン をubuntuスタジオにインストールしたかったのですが、プラグインにはたくさんのmakeファイルと.cファイルが含まれており、インストールの説明が表示されますが、実際には理解できません。

INSTALL
=======

For Linux and Unix users
------------------------
To install this GIMP plugin simply state

    make
    make install

for a system wide installation (with root privileges) or

    make
    make userinstall

for a user installation. A restart of The GIMP is recommended.

このフォルダに移動してターミナルでコマンドを押してみましたが、多くのエラーが発生します。

make -C po
make[1]: Entering directory '/home/Dell-pc/Desktop/wavelet-decompose-0.1.2/po'
msgfmt -c -v -o de.mo de.po
de.po:7: warning: header field 'Language' missing in header
17 translated messages.
msgfmt -c -v -o ru.mo ru.po
ru.po:2: warning: header field 'Language' missing in header
17 translated messages.
msgfmt -c -v -o it.mo it.po
it.po:9: warning: header field 'Language' missing in header
17 translated messages.
msgfmt -c -v -o pl.mo pl.po
pl.po:2: warning: header field 'Language' missing in header
17 translated messages.
make[1]: Leaving directory '/home/Dell-pc/Desktop/wavelet-decompose-0.1.2/po'
make -C src
make[1]: Entering directory '/home/Dell-pc/Desktop/wavelet-decompose-0.1.2/src'
make[1]: gimptool-2.0: Command not found
cc -O3 -Wall  -c -o plugin.o plugin.c
In file included from plugin.c:12:0:
plugin.h:16:26: fatal error: libgimp/gimp.h: No such file or directory
compilation terminated.
Makefile:19: recipe for target 'plugin.o' failed
make[1]: *** [plugin.o] Error 1
make[1]: Leaving directory '/home/Dell-pc/Desktop/wavelet-decompose-0.1.2/src'
Makefile:8: recipe for target 'src' failed
make: *** [src] Error 2

次に、このrawフォルダーをpluginsフォルダーに移動しようとしましたが、インストールされませんでした。このプラグインをインストールするにはどうすればよいですか?

4
mathmaniage

Ubuntuに多くのGimpプラグインをインストールするには、リポジトリからgimp-plugin-registryパッケージをインストールするだけです(これは_Sudo apt install gimp-plugin-registry_を使用して行われます)(はい、ウェーブレット分解に加えて、他の便利なものが含まれています:再合成装置、液体再スケーリング、FFT ...)。

それ以外の場合は、プラグインを「難しい方法」でインストールします。メッセージは、gimptool実行可能ファイルと_gimp.h_が欠落していることを示しています。 _apt-file search {file}_は、両方のファイルがパッケージ_libgimp2.0-dev_にあることを示しているため、そのパッケージをインストールするには_Sudo apt install libgimp2.0-dev_だけが必要です。

Gimpおよび関連パッケージ(gimp-plugin-registryを含む)の最新バージョンが必要な場合は、ソフトウェアソースに this PPA を追加してから、_Sudo apt update_および_Sudo apt install gimp_パッケージをアップグレードします。

4
xenoid