The GIMP package contains the GNU Image Manipulation Program. This is useful for photo retouching, image composition and image authoring.
Download (HTTP): http://ftp.gwdg.de/pub/misc/grafik/gimp/gimp/v2.2/gimp-2.2.12.tar.bz2
Download (FTP): ftp://ftp.gimp.org/pub/gimp/v2.2/gimp-2.2.12.tar.bz2
Download MD5 sum: 6a1906db60166a88317f2df5f195a57d
Download size: 12.8 MB
Estimated disk space required: 508 MB (includes installing the help system)
Estimated build time: 4.9 SBU (additional 0.7 SBU to run the test suite and additional 7.1 SBU to build the help files)
Help System
Optional help files: ftp://ftp.gimp.org/pub/gimp/help/gimp-help-2-0.10.tar.gz
Download MD5 sum: 22a1e10c314c5547fe8721c4f6f0b30a
Download size: 39.9 MB
GTK+-2.10.11, libart_lgpl-2.3.19, and XML::Parser-2.34
Gimp-Print-4.2.7, libjpeg-6b, and LibTIFF-3.8.2
If the recommended dependencies are not installed, the configure switches below will need to be modified as explained in the section called “Command Explanations” below.
libmng-1.0.9, librsvg-2.16.1, AAlib-1.4rc5, little cms-1.16, libexif-0.6.13, libgtkhtml-2.11.0 (required to build the help system browser plugin), libxslt-1.1.20, PyGTK (requires Python-2.5), GTK-Doc-1.8, an MTA (that provides a sendmail program), ALSA-1.0.13, and libwmf
libxslt-1.1.20, DocBook XML DTD-4.5, DocBook XSL Stylesheets-1.69.1, and ImageMagick-6.3.3-0 (only needed to optimize PNG images)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gimp
Install GIMP by running the following commands:
./configure --prefix=/usr \
--sysconfdir=/etc \
--datadir=/usr/share &&
make
To test the results, issue: make check.
Now, as the root user:
make install &&
install -v -m755 -d /usr/share/doc/gimp-2.2.12 &&
install -v -m644 docs/{Wilber*,keybindings.txt,quick_reference.ps} \
/usr/share/doc/gimp-2.2.12
The gimp-help tarball contains a help
system designed for use with external web browsers, the internal
GIMP help browser, and HTML
renderers. The tarball only contains the XML sources, so you will
need the xsltproc
program from libxslt-1.1.20 to build the HTML files.
If you downloaded the gimp-help
tarball, change directories out of the GIMP source tree to the root of your build
directory. Now unpack the gimp-help
tarball and change directories to the root of the newly created
source tree (as an unprivileged user). Issue the following commands
to install the help files:
./configure && make
In order to use the --enable-convert
parameter to the configure script, you must have
the convert program
from ImageMagick-6.3.3-0 installed.
Now, as the root user:
make install
--datadir=/usr/share: This
parameter is required because there is a subtle bug in Autoconf-2.59 which causes the configure script to mishandle the
datarootdir variable. Fortunately,
passing --datadir= works
around the problem.
--disable-print: This option will
disable print support and is necessary if Gimp-Print is not installed.
--without-libjpeg: This option is
necessary if libjpeg is not
installed.
--without-libtiff: This option is
necessary if libtiff is not
installed.
--enable-gtk-doc: Use this parameter if
GTK-Doc is installed and you wish
to rebuild the API documentation.
GIMP executes a configuration wizard for each user upon their initial use of the program.
GIMP executes the mozilla web browser by default
to view the help files. If you do not have Mozilla, or prefer a different web browser,
you can set a new system value in /etc/gimp/2.0/gimprc. Execute the following
command as the root user,
replacing <browser> with your
preferred web browser:
echo '(web-browser "<browser> %s")' >> /etc/gimp/2.0/gimprc
Last updated on 2007-04-04 21:42:53 +0200