Pidginに日本語パッチあて 2.6.3

Date
'09-10-24(土曜日) 15:22:15
Category
コンピュータ

久しぶりにPidginを更新。今度は本家から落としてきます。
パッケージ作ってインストールしたいのでとりあえずめも
checkinstallが動かないのでちょっと調べ中

$ wget http://sourceforge.net/projects/pidgin/files/Pidgin/pidgin-2.6.3.tar.bz2

$ wget http://www.honeyplanet.jp/pidgin-2.6.3_jp.diff.gz
$ tar xvjf pidgin-2.6.3.tar.bz2
$ zcat pidgin-2.6.3_jp.diff.gz | patch -p0
$ cd pidgin-2.6.3/
$ ./configure

checking for GSTINTERFACES... no
checking for FARSIGHT... no
configure: error:
Dependencies for voice/video were not met.
Install the necessary gstreamer and farsight packages first.
Or use --disable-vv if you do not need voice/video support.

※GSTINTERFACESは gstreamer-interfaces というパッケージらしい
※FARSIGHTはfarsightってパッケージだが、ubuntuはバージョンたりないのでパス

$ ./configure --disable-vv

checking for IDN... no
no
configure: error:
GNU Libidn development headers not found.
Use --disable-idn if you do not need it.

※libidnを入れた

$ apt-cache search libidn
$ sudo apt-get install libidn11-dev
$ ./configure --disable-vv
$ make
$ sudo apt-get remove pidgin*
$ sudo apt-get install libpurple
$ sudo make install
$ sudo ldconfig

コメントする

トラックバック(0)

トラックバックURL: http://blog.marupara.dyndns.org/mt5/mt-tb.cgi/3803