xpaint (A color image-editing tool)

[ 戻る | トップページに戻る ]

概要

xpaint とは、ドット単位での画像編集ツール。 アイコンエディタ (と言っていいのか) 。XPM や TIFF, JPEG 等をサポート。

URL

http://www.danbbs.dk/~torsten/xpaint/index.html

インストール環境

Plamo Linux 1.3 (Kernel 2.2.10 + libc5)
Plamo Linux 2.0 (Kernel 2.2.15 + glibc 2.1.2)

必要なもの

Xpm library 3.4c 以降

バージョン

2.5.5

インストール手順 (for Plamo 1.3)

$ tar xvfz xpaint-2.5.5.tar.gz
$ mv xpaint xpaint-2.5.5
$ cd xpaint-2.5.5
$ xmkmf
$ make Makefiles
$ make
$ su
# make install
# make install.man
# exit

インストール手順 (for Plamo 2.0)

$ tar xvfz xpaint-2.5.5.tar.gz
$ mv xpaint xpaint-2.5.5
$ cd xpaint-2.5.5
$ xmkmf
$ make Makefiles
$ make
(snip)
gcc -o xpaint -O2 -fno-strength-reduce -L/usr/X11R6/lib chroma.o color.o colorEdit.o
    cutCopyPaste.o dialog.o fatBitsEdit.o fileName.o fontSelect.o grab.o graphic.o hash.o
    help.o image.o imageComp.o iprocess.o main.o menu.o misc.o operation.o palette.o
    pattern.o protocol.o readRC.o size.o text.o texture.o typeConvert.o arcOp.o blobOp.o
    boxOp.o brushOp.o circleOp.o fillOp.o fontOp.o lineOp.o pencilOp.o polyOp.o selectOp.o
    sprayOp.o dynPenOp.o Colormap.o Paint.o PaintEvent.o PaintRegion.o PaintUndo.o rw/librw.a
    -L/usr/X11R6/lib -lXpm -L/usr/local/lib -ltiff  -L/usr/local/lib -ljpeg -L/usr/local/lib
    -lpng -lz   -lXaw -lXmu -lXt -lSM -lICE -lXext -lX11 -lm   
rw/librw.a(readPNG.o): In function `TestPNG':
readPNG.o(.text+0x37): undefined reference to `png_check_sig'
rw/librw.a(readPNG.o): In function `ReadPNG':
readPNG.o(.text+0xfb): undefined reference to `png_read_destroy'
readPNG.o(.text+0x109): undefined reference to `png_info_init'
readPNG.o(.text+0x112): undefined reference to `png_read_init'
(snip)
writePNG.o(.text+0x3cf): undefined reference to `png_write_image'
writePNG.o(.text+0x3dd): undefined reference to `png_write_end'
writePNG.o(.text+0x3e3): undefined reference to `png_write_destroy'
collect2: ld returned 1 exit status
make: *** [xpaint] Error 1

がーん、これ (libpng) もシンボル情報がない。 libpng を入れ直してから再トライ。
$ make
$ su
# make install
# make install.man
# exit

[ 戻る | トップページに戻る ]