summaryrefslogtreecommitdiffstats
path: root/graphics/gimp1
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/gimp1')
-rw-r--r--graphics/gimp1/Makefile105
-rw-r--r--graphics/gimp1/distinfo6
-rw-r--r--graphics/gimp1/files/gimp.setfont157
-rw-r--r--graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::Makefile.in25
-rw-r--r--graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::video.c23
-rw-r--r--graphics/gimp1/files/patch-aa20
-rw-r--r--graphics/gimp1/files/patch-ab13
-rw-r--r--graphics/gimp1/files/patch-ac11
-rw-r--r--graphics/gimp1/files/patch-ae11
-rw-r--r--graphics/gimp1/files/patch-am19
-rw-r--r--graphics/gimp1/files/patch-configure30
-rw-r--r--graphics/gimp1/files/patch-gimptool-1.2.in26
-rw-r--r--graphics/gimp1/files/patch-libgimp::Makefile.in19
-rw-r--r--graphics/gimp1/files/patch-plug-ins::libgck::gck::Makefile.in11
-rw-r--r--graphics/gimp1/files/patch-plug-ins_Makefile.in11
-rw-r--r--graphics/gimp1/files/patch-plug-ins_print_print.c11
-rw-r--r--graphics/gimp1/pkg-descr21
-rw-r--r--graphics/gimp1/pkg-message6
-rw-r--r--graphics/gimp1/pkg-plist1563
19 files changed, 2088 insertions, 0 deletions
diff --git a/graphics/gimp1/Makefile b/graphics/gimp1/Makefile
new file mode 100644
index 000000000..2e85afe21
--- /dev/null
+++ b/graphics/gimp1/Makefile
@@ -0,0 +1,105 @@
+# New ports collection makefile for: The GIMP
+# Date created: Mon Nov 18 21:28:43 CST 1996
+# Whom: erich@FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= gimp
+PORTVERSION= 1.2.5
+PORTREVISION= 2
+PORTEPOCH= 1
+CATEGORIES= graphics gnome
+MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \
+ http://ftp.man.poznan.pl/pub/%SUBDIR%/ \
+ http://fresh.t-systems-sfr.com/unix/src/misc/:mpeg \
+ http://ftp.sayclub.com/pub/X/gimp/libs/:mpeg
+MASTER_SITE_SUBDIR= gimp/v${PORTVERSION:R}/v${PORTVERSION}
+DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
+ mpeg_lib-1.3.1.tar.gz:mpeg
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= The GNU Image Manipulation Program
+
+LIB_DEPENDS= aa.1:${PORTSDIR}/graphics/aalib \
+ jpeg.9:${PORTSDIR}/graphics/jpeg \
+ png.5:${PORTSDIR}/graphics/png \
+ tiff.4:${PORTSDIR}/graphics/tiff
+
+DEPRECATED= New stable release 2.0 can be installed via graphics/gimp port
+
+NO_LATEST_LINK= yes
+
+CONFLICTS= gimp-2.* gimp-gnome-2.* gimpshop-[0-9]*
+
+#SHLIBVER?= ${PORTVERSION:S/1.2.//g}
+SHLIBVER?= 2
+
+USE_BZIP2= yes
+USE_XLIB= yes
+USE_XPM= yes
+USE_GMAKE= yes
+USE_GNOME= gtk12
+USE_GETTEXT= yes
+GNU_CONFIGURE== yes
+INSTALLS_SHLIB= yes
+PLIST_SUB= SHLIBVER="${SHLIBVER}"
+CONFIGURE_ARGS= --disable-perl
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${MPEG_WRKSRC}" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+GIMP_DISTFILE= ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
+MPEG_DISTFILE= ${DISTDIR}/mpeg_lib-1.3.1.tar.gz
+MPEG_WRKSRC= ${WRKDIR}/mpeg_lib-1.3.1
+MPEG_CONFIGURE_ENV= OPTIMIZE="${CFLAGS}"
+MPEG_CONFIGURE_ARGS= --prefix=${PREFIX} \
+ --target=${ARCH}-unknown-freebsd${OSREL}
+
+MAN1= gimp.1 gimptool.1 gimp-remote.1 \
+ gimp-1.2.1 gimp-remote-1.2.1 gimptool-1.2.1
+MAN5= gimprc.5 gimprc-1.2.5
+
+.if defined(WITHOUT_PRINT)
+CONFIGURE_ARGS+= --disable-print
+PLIST_SUB+= PRINT="@comment "
+.else
+LIB_DEPENDS+= gimpprint.2:${PORTSDIR}/print/gimp-print
+PLIST_SUB+= PRINT=""
+.endif
+
+pre-everything::
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "The Gimp has the following tunable option(s):"
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " WITHOUT_PRINT=yes Turns off GIMP printing"
+ @${ECHO_MSG} ""
+
+do-extract:
+ @${MKDIR} ${WRKDIR}
+ @(cd ${WRKDIR} && ${BZIP2_CMD} -dc ${GIMP_DISTFILE} | ${TAR} -xf -)
+ @(cd ${WRKDIR} && ${GZIP_CMD} -dc ${MPEG_DISTFILE} | ${TAR} -xf -)
+ @(${FIND} ${MPEG_WRKSRC} -type f | ${XARGS} ${CHMOD} u+w)
+
+pre-configure:
+ @(cd ${MPEG_WRKSRC} && \
+ ${SETENV} CC="${CC}" CXX="${CXX}" \
+ CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
+ INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
+ INSTALL_DATA="${INSTALL_DATA}" \
+ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
+ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
+ ${MPEG_CONFIGURE_ENV} ./configure ${MPEG_CONFIGURE_ARGS})
+ @(cd ${MPEG_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|-lmpeg|${MPEG_WRKSRC}/libmpeg.a|g' \
+ ${WRKSRC}/configure
+ @(cd ${MPEG_WRKSRC} ; \
+ ${GREP} -r -l "<malloc.h>" * | \
+ ${XARGS} ${REINPLACE_CMD} -e "s/<malloc.h>/<stdlib.h>/")
+
+post-install:
+ ${INSTALL_SCRIPT} ${FILESDIR}/gimp.setfont ${PREFIX}/bin
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>
diff --git a/graphics/gimp1/distinfo b/graphics/gimp1/distinfo
new file mode 100644
index 000000000..0df76cd42
--- /dev/null
+++ b/graphics/gimp1/distinfo
@@ -0,0 +1,6 @@
+MD5 (gimp-1.2.5.tar.bz2) = b83b55d80e6728268d56620ea4d3051a
+SHA256 (gimp-1.2.5.tar.bz2) = 8c94835819203d7bc9bac2266a78bb7610a6dc473043b5362dc2a2aea720773b
+SIZE (gimp-1.2.5.tar.bz2) = 10885324
+MD5 (mpeg_lib-1.3.1.tar.gz) = 9d803be0073f42acf87d5fbb339a183b
+SHA256 (mpeg_lib-1.3.1.tar.gz) = 29d4cca1ffecf3c5f81aa43c61bce4860c2e6fff459c0c981d8e4d03fbe7d0ef
+SIZE (mpeg_lib-1.3.1.tar.gz) = 152092
diff --git a/graphics/gimp1/files/gimp.setfont b/graphics/gimp1/files/gimp.setfont
new file mode 100644
index 000000000..f81fa5d9b
--- /dev/null
+++ b/graphics/gimp1/files/gimp.setfont
@@ -0,0 +1,157 @@
+#!/usr/bin/perl
+
+# Font setting Perl script for GIMP
+#
+# by MANTANI Nobutaka <nobutaka@nobutaka.com>
+
+$progname = "gimp.setfont";
+$version = "Version 0.4 Feb 07 2000";
+
+$fontset{'chinese'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1,-*-kai-medium-r-normal--16-*-*-*-*-*-big5-0";
+$fontset{'czech'} = "-*-fixed-medium-r-normal--14-*-*-*-*-*-iso8859-2";
+$fontset{'danish'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'dutch'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'english'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'finnish'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'french'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'german'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'hungarian'} = "-*-fixed-medium-r-normal--14-*-*-*-*-*-iso8859-2";
+$fontset{'italian'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'japanese'} = "-*-fixed-medium-r-normal--14-*-*-*-*-*-iso8859-1,-*-fixed-medium-r-normal--14-*-*-*-*-*-jisx0201.1976-0,-*-fixed-medium-r-normal--14-*-*-*-*-*-jisx0208.1983-0";
+$fontset{'korean'} = "-*-fixed-medium-r-normal--16-*-*-*-*-*-iso8859-1,-daewoo-gothic-medium-r-normal--16-*-*-*-*-*-ksc5601.1987-0";
+$fontset{'norwegian'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'polish'} = "-*-fixed-medium-r-normal--14-*-*-*-*-*-iso8859-2";
+$fontset{'russian'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-koi8-r";
+$fontset{'slovak'} = "-*-fixed-medium-r-normal--14-*-*-*-*-*-iso8859-2";
+$fontset{'swedish'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-1";
+$fontset{'ukrainian'} = "-*-helvetica-medium-r-normal--14-*-*-*-*-*-koi8-r";
+
+$locale{'chinese'} = "zh_TW.Big5";
+$locale{'czech'} = "cs_CZ.ISO8859-2";
+$locale{'danish'} = "da_DK.ISO_8859-1";
+$locale{'dutch'} = "nl_NL.ISO_8859-1";
+$locale{'english'} = "C";
+$locale{'finnish'} = "fi_FI.ISO_8859-1";
+$locale{'french'} = "fr_FR.ISO_8859-1";
+$locale{'german'} = "de_DE.ISO_8859-1";
+$locale{'hungarian'} = "hu_HU.ISO_8859-2";
+$locale{'italian'} = "it_IT.ISO_8859-1";
+$locale{'japanese'} = "ja_JP.EUC";
+$locale{'korean'} = "ko_KR.EUC";
+$locale{'norwegian'} = "no_NO.ISO_8859-1";
+$locale{'polish'} = "pl_PL.ISO_8859-2";
+$locale{'russian'} = "ru_SU.KOI8-R";
+$locale{'slovak'} = "sk_SK.ISO_8859-2";
+$locale{'swedish'} = "sv_SE.ISO_8859-1";
+$locale{'ukrainian'} = "uk_UA.KOI8-U";
+
+# Show usage
+sub usage() {
+ print <<EOF;
+Usage: gimp.setfont <language>
+
+----------------------------------------------------------------
+[language] [fontset]
+ chinese -*-helvetica-(iso8859-1),-*-kai-(big5-0)
+ czech -*-fixed-(iso8859-2)
+ danish -*-helvetica-(iso8859-1)
+ dutch -*-helvetica-(iso8859-1)
+ english -*-helvetica-(iso8859-1)
+ finnish -*-helvetica-(iso8859-1)
+ french -*-helvetica-(iso8859-1)
+ german -*-helvetica-(iso8859-1)
+ hungarian -*-fixed-(iso8859-2)
+ italian -*-helvetica-(iso8859-1)
+ japanese -*-fixed-(iso8859-1,jisx0201,jisx0208)
+ korean -*-fixed-(iso8859-1),-daewoo-gothic-(ksc5601)
+ norwegian -*-helvetica-(iso8859-1)
+ polish -*-fixed-(iso8859-2)
+ russian -*-helvetica-(koi8-r)
+ slovak -*-fixed-(iso8869-2)
+ swedish -*-helvetica-(iso8859-1)
+ ukrainian -*-helvetica-(koi8-r)
+----------------------------------------------------------------
+
+If you need iso8859-2 fonts, please install etlfonts
+(x11-fonts/etlfonts).
+
+EOF
+}
+
+# Write gtkrc of user's .gimp-1.2 directory
+sub write_gtkrc($) {
+ my $fontset = shift;
+ my $path = "$ENV{'HOME'}/.gimp-1.2";
+
+ if (-d $path) {
+ if (-e "$path/gtkrc") {
+ chmod(0644, "$path/gtkrc");
+ print "Renaming $path/gtkrc to $path/gtkrc.old...\n";
+ rename("$path/gtkrc", "$path/gtkrc.old");
+ }
+
+ print "Writing $path/gtkrc...\n";
+ open(FILE, ">$path/gtkrc");
+ print FILE <<EOF;
+\# style <name> [= <name>]
+\# {
+\# <option>
+\# }
+\#
+\# widget <widget_set> style <style_name>
+\# widget_class <widget_class_set> style <style_name>
+
+style "default"
+{
+ fontset = "$fontset"
+}
+
+widget_class "*" style "default"
+EOF
+ close(FILE);
+ print "Done.\n\n";
+ } else {
+ print <<EOF;
+Directory $path is not found.
+Please execute "gimp" and install files into $path
+directory first.
+
+EOF
+ exit;
+ }
+}
+
+sub main() {
+ my $lang = $ARGV[0];
+ my $tmp = ucfirst($lang);
+
+ print <<EOF;
+
+$progname - Font setting utility for GIMP ($version)
+
+EOF
+
+ if (@ARGV != 1) {
+ usage();
+ exit;
+ }
+
+ print "Setting for $tmp language...\n\n";
+
+ print qq(Please set "LANG" environment variable to "$locale{$lang}" and execute "gimp".\n\n);
+
+ if ($lang eq "slovak") {
+ print <<EOF;
+And please make symbolic link from lt_LN.ISO_8859-2 to sk_SK.ISO_8859-2 in
+/usr/share/locale.
+
+EOF
+ }
+
+ write_gtkrc($fontset{$lang});
+
+ exit;
+}
+
+
+main();
diff --git a/graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::Makefile.in b/graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::Makefile.in
new file mode 100644
index 000000000..e9163f5a3
--- /dev/null
+++ b/graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::Makefile.in
@@ -0,0 +1,25 @@
+--- ../mpeg_lib-1.3.1/Makefile.in.orig Thu Nov 26 11:03:29 1998
++++ ../mpeg_lib-1.3.1/Makefile.in Tue Jul 9 22:28:11 2002
+@@ -19,7 +19,7 @@
+ exec_prefix = @exec_prefix@
+ INSTALL_INCLUDE = @includedir@
+ INSTALL_LIBRARY = @libdir@
+-INSTALL = @INSTALL@
++INSTALL_DATA = @INSTALL_DATA@
+
+ # Other miscellaneous programs
+ AR = @AR@
+@@ -67,10 +67,9 @@
+ $(CC) -shared -o $(SHLIB) $(LIBOBJ)
+
+ install: $(LIBRARY)
+- $(INSTALL) -d $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
+- $(INSTALL) -m 0644 $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
+- $(INSTALL) -m 0644 $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
+- @if test -f $(SHLIB) ; then echo "warning: $(SHLIB) *not* installed (installing shared libraries is too system-specific)" ; fi
++ $(MKDIR) $(INSTALL_INCLUDE) $(INSTALL_LIBRARY)
++ $(INSTALL_DATA) $(HEADER) $(INSTALL_INCLUDE)/$(HEADER)
++ $(INSTALL_DATA) $(LIBRARY) $(INSTALL_LIBRARY)/$(LIBRARY)
+
+ clean:
+ rm -f $(LIBRARY) $(EXTRAS) $(LIBOBJ) core
diff --git a/graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::video.c b/graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::video.c
new file mode 100644
index 000000000..5707b7503
--- /dev/null
+++ b/graphics/gimp1/files/patch-..::mpeg_lib-1.3.1::video.c
@@ -0,0 +1,23 @@
+--- ../mpeg_lib-1.3.1/video.c.orig Sat Jul 24 13:00:51 1999
++++ ../mpeg_lib-1.3.1/video.c Tue Aug 31 23:11:56 1999
+@@ -49,6 +49,10 @@
+ #include "proto.h"
+ #include "my_dmalloc.h"
+
++#ifdef _HAVE_PARAM_H
++#include <sys/param.h>
++#endif
++
+ /* Declarations of functions. */
+ static void ReconIMBlock(VidStream *,int);
+ static void ReconPMBlock(VidStream *,int,int,int,int);
+@@ -445,7 +449,9 @@
+ static int num_calls = 0;
+ unsigned int data;
+ int i, status;
++#if BSD < 199103
+ long int ftell (FILE *stream);
++#endif
+
+ /* If vid_stream is null, create new VidStream structure. */
+
diff --git a/graphics/gimp1/files/patch-aa b/graphics/gimp1/files/patch-aa
new file mode 100644
index 000000000..33a7ddbd8
--- /dev/null
+++ b/graphics/gimp1/files/patch-aa
@@ -0,0 +1,20 @@
+--- app/main.c.orig Thu Feb 10 14:41:02 2000
++++ app/main.c Sat Feb 19 13:51:36 2000
+@@ -22,6 +22,7 @@
+ #include <signal.h>
+ #include <string.h>
+ #include <sys/types.h>
++#include <floatingpoint.h>
+
+ #ifdef HAVE_SYS_WAIT_H
+ #include <sys/wait.h>
+@@ -129,6 +130,9 @@
+ /* Initialize variables */
+
+ prog_name = argv[0];
++
++ /* Ignore floating point exceptions */
++ fpsetmask(0);
+
+ /* Initialize i18n support */
+ INIT_LOCALE ("gimp");
diff --git a/graphics/gimp1/files/patch-ab b/graphics/gimp1/files/patch-ab
new file mode 100644
index 000000000..5c4081c0c
--- /dev/null
+++ b/graphics/gimp1/files/patch-ab
@@ -0,0 +1,13 @@
+--- plug-ins/common/url.c.orig Mon Nov 13 17:06:36 2000
++++ plug-ins/common/url.c Sun Dec 10 16:17:42 2000
+@@ -189,8 +189,8 @@
+ putenv ("LANG=C");
+ #endif
+
+- execlp ("wget", "wget", "-T", TIMEOUT, filename, "-O", tmpname, NULL);
+- g_message ("url: exec() failed: wget: %s", g_strerror (errno));
++ execlp ("fetch", "fetch", "-T", TIMEOUT, filename, "-p", "-o", tmpname, NULL);
++ g_message ("url: exec() failed: fetch: %s", g_strerror (errno));
+ g_free (tmpname);
+ _exit (127);
+ }
diff --git a/graphics/gimp1/files/patch-ac b/graphics/gimp1/files/patch-ac
new file mode 100644
index 000000000..22755b47e
--- /dev/null
+++ b/graphics/gimp1/files/patch-ac
@@ -0,0 +1,11 @@
+--- Makefile.in.orig Sat May 6 01:10:00 2000
++++ Makefile.in Sat May 6 01:10:12 2000
+@@ -196,7 +196,7 @@
+
+ man_MANS = gimp.1 gimptool.1 gimprc.5
+
+-m4datadir = $(datadir)/aclocal
++m4datadir = $(prefix)/share/aclocal
+ m4data_DATA = gimp.m4
+
+ scriptdata =
diff --git a/graphics/gimp1/files/patch-ae b/graphics/gimp1/files/patch-ae
new file mode 100644
index 000000000..a9cd977ed
--- /dev/null
+++ b/graphics/gimp1/files/patch-ae
@@ -0,0 +1,11 @@
+--- plug-ins/common/plugindetails.c.orig Fri Jan 14 17:26:07 2000
++++ plug-ins/common/plugindetails.c Fri Jan 14 17:26:21 2000
+@@ -27,7 +27,7 @@
+ #include <stdio.h>
+ #include <string.h>
+ #include <time.h>
+-
++#include <sys/types.h>
+ #include <gtk/gtk.h>
+
+ #include "libgimp/gimp.h"
diff --git a/graphics/gimp1/files/patch-am b/graphics/gimp1/files/patch-am
new file mode 100644
index 000000000..45c58cbe5
--- /dev/null
+++ b/graphics/gimp1/files/patch-am
@@ -0,0 +1,19 @@
+--- libgimp/gimp.c.orig Fri May 12 12:37:27 2000
++++ libgimp/gimp.c Thu May 18 16:42:21 2000
+@@ -26,6 +26,7 @@
+ #include <stdlib.h>
+ #include <string.h>
+ #include <sys/types.h>
++#include <floatingpoint.h>
+
+ #ifdef HAVE_SYS_TIME_H
+ #include <sys/time.h>
+@@ -211,6 +212,9 @@
+ }
+
+ progname = argv[0];
++
++ /* Ignore floating point exceptions */
++ fpsetmask(0);
+
+ g_set_prgname (g_basename (progname));
diff --git a/graphics/gimp1/files/patch-configure b/graphics/gimp1/files/patch-configure
new file mode 100644
index 000000000..4d64eb9d8
--- /dev/null
+++ b/graphics/gimp1/files/patch-configure
@@ -0,0 +1,30 @@
+--- configure.orig Mon May 19 18:46:21 2003
++++ configure Sat May 31 19:37:03 2003
+@@ -1475,7 +1475,7 @@
+ GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION
+
+ LT_RELEASE=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
+-LT_CURRENT=`expr $GIMP_MICRO_VERSION - $GIMP_INTERFACE_AGE`
++LT_CURRENT=2
+ LT_REVISION=$GIMP_INTERFACE_AGE
+ LT_AGE=`expr $GIMP_BINARY_AGE - $GIMP_INTERFACE_AGE`
+ LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
+@@ -7535,6 +7535,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+@@ -18639,8 +18640,8 @@
+
+ fi
+
+-gimpdatadir=$datadir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
+-gimpplugindir=$libdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
++gimpdatadir=$datadir/$PACKAGE
++gimpplugindir=$libexecdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
+ gimpsysconfdir=$sysconfdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
+
+ localedir='${prefix}/${DATADIRNAME}/locale'
diff --git a/graphics/gimp1/files/patch-gimptool-1.2.in b/graphics/gimp1/files/patch-gimptool-1.2.in
new file mode 100644
index 000000000..052cac1df
--- /dev/null
+++ b/graphics/gimp1/files/patch-gimptool-1.2.in
@@ -0,0 +1,26 @@
+--- gimptool-1.2.in.orig Wed Feb 20 14:04:01 2002
++++ gimptool-1.2.in Wed Feb 20 14:04:39 2002
+@@ -227,19 +227,19 @@
+ | --uninstall-script | --uninstall-admin-script )
+ case $1 in
+ --*install-bin)
+- install_cmd="@INSTALL_PROGRAM@"
++ install_cmd="@INSTALL_SCRIPT@"
+ install_dir="$HOME/@gimpdir@/plug-ins"
+ ;;
+ --install-bin-strip)
+- install_cmd="@INSTALL_PROGRAM@ -s"
++ install_cmd="@INSTALL_SCRIPT@ -s"
+ install_dir="$HOME/@gimpdir@/plug-ins"
+ ;;
+ --*install-admin-bin)
+- install_cmd="@INSTALL_PROGRAM@"
++ install_cmd="@INSTALL_SCRIPT@"
+ install_dir="$gimpplugindir/plug-ins"
+ ;;
+ --install-admin-bin-strip)
+- install_cmd="@INSTALL_PROGRAM@ -s"
++ install_cmd="@INSTALL_SCRIPT@ -s"
+ install_dir="$gimpplugindir/plug-ins"
+ ;;
+ --*install-script)
diff --git a/graphics/gimp1/files/patch-libgimp::Makefile.in b/graphics/gimp1/files/patch-libgimp::Makefile.in
new file mode 100644
index 000000000..f025eddbe
--- /dev/null
+++ b/graphics/gimp1/files/patch-libgimp::Makefile.in
@@ -0,0 +1,19 @@
+--- libgimp/Makefile.in.orig Mon May 19 19:07:25 2003
++++ libgimp/Makefile.in Sat May 31 19:41:48 2003
+@@ -226,13 +226,13 @@
+ gimpinclude_HEADERS = gimp.h ${PDB_WRAPPERS_H} gimpchainbutton.h gimpchannel.h gimpcolorbutton.h gimpcolordisplay.h gimpcolorselector.h gimpcolorspace.h gimpcompat.h gimpdrawable.h gimpdialog.h gimpenums.h gimpenv.h gimpexport.h gimpfeatures.h gimpfileselection.h gimpgradientselect.h gimphelpui.h gimpimage.h gimplayer.h gimplimits.h gimpmath.h gimpmatrix.h gimpmenu.h gimpmodule.h gimpparasite.h gimpparasiteio.h gimppatheditor.h gimppixelrgn.h gimppixmap.h gimpproceduraldb.h gimpquerybox.h gimpselection.h gimpsignal.h gimpsizeentry.h gimptile.h gimptypes.h gimpui.h gimpunit.h gimpunitmenu.h gimputils.h gimpvector.h gimpwidgets.h gimpintl.h
+
+
+-libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) $(no_undefined) $(libgimp_export_symbols)
++libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) $(no_undefined) $(libgimp_export_symbols)
+
+-libgimp_la_LIBADD = $(GLIB_LIBS) $(libmath)
++libgimp_la_LIBADD = $(GTK_LIBS) $(libmath)
+
+ libgimp_la_DEPENDENCIES = $(gimp_def)
+
+-libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) $(no_undefined) $(libgimpui_export_symbols)
++libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) $(no_undefined) $(libgimpui_export_symbols)
+
+
+ libgimpui_la_LIBADD = $(GTK_LIBS) $(conditional_libgimp_la)
diff --git a/graphics/gimp1/files/patch-plug-ins::libgck::gck::Makefile.in b/graphics/gimp1/files/patch-plug-ins::libgck::gck::Makefile.in
new file mode 100644
index 000000000..676401556
--- /dev/null
+++ b/graphics/gimp1/files/patch-plug-ins::libgck::gck::Makefile.in
@@ -0,0 +1,11 @@
+--- plug-ins/libgck/gck/Makefile.in.orig Tue Feb 12 05:46:23 2002
++++ plug-ins/libgck/gck/Makefile.in Wed Feb 20 14:00:02 2002
+@@ -193,7 +193,7 @@
+ gckinclude_HEADERS = gck.h
+
+
+-libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) $(no_undefined)
++libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) $(no_undefined)
+
+
+ INCLUDES = -I.. -I$(srcdir)/.. -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir)
diff --git a/graphics/gimp1/files/patch-plug-ins_Makefile.in b/graphics/gimp1/files/patch-plug-ins_Makefile.in
new file mode 100644
index 000000000..503a87e4f
--- /dev/null
+++ b/graphics/gimp1/files/patch-plug-ins_Makefile.in
@@ -0,0 +1,11 @@
+--- plug-ins/Makefile.in.orig Mon May 19 19:07:31 2003
++++ plug-ins/Makefile.in Sat May 31 19:44:38 2003
+@@ -111,7 +111,7 @@
+ GTK_CONFIG = @GTK_CONFIG@
+ GTK_LIBS = @GTK_LIBS@
+ HAVE_GTK_DOC = @HAVE_GTK_DOC@
+-HELPBROWSER = @HELPBROWSER@
++#HELPBROWSER = @HELPBROWSER@
+ HTML_DIR = @HTML_DIR@
+ INSTOBJEXT = @INSTOBJEXT@
+ INTLBISON = @INTLBISON@
diff --git a/graphics/gimp1/files/patch-plug-ins_print_print.c b/graphics/gimp1/files/patch-plug-ins_print_print.c
new file mode 100644
index 000000000..36f4bf714
--- /dev/null
+++ b/graphics/gimp1/files/patch-plug-ins_print_print.c
@@ -0,0 +1,11 @@
+--- plug-ins/print/print.c.orig Tue Dec 26 07:43:54 2000
++++ plug-ins/print/print.c Tue Dec 26 07:44:07 2000
+@@ -1417,7 +1417,7 @@
+
+ if (i < (sizeof(lpcs) / sizeof(lpcs[0])))
+ {
+- strcat(command, " status < /dev/null");
++ strcat(command, " status all < /dev/null");
+ type = PRINTERS_LPC;
+ }
+ else
diff --git a/graphics/gimp1/pkg-descr b/graphics/gimp1/pkg-descr
new file mode 100644
index 000000000..40b6009f8
--- /dev/null
+++ b/graphics/gimp1/pkg-descr
@@ -0,0 +1,21 @@
+The GIMP is designed to provide an intuitive graphical interface to a
+variety of image editing operations. Here is a list of the GIMP's
+major features:
+
+ Image editing
+ -------------
+
+ * Selection tools including rectangle, ellipse, free, fuzzy, bezier
+ and intelligent.
+ * Transformation tools including rotate, scale, shear and flip.
+ * Painting tools including bucket, brush, airbrush, clone, convolve,
+ blend and text.
+ * Effects filters (such as blur, edge detect).
+ * Channel & color operations (such as add, composite, decompose).
+ * Plug-ins which allow for the easy addition of new file formats and
+ new effect filters.
+ * Multiple undo/redo.
+
+To enable I18N extensions, execute "gimp.setfont" before you use GIMP.
+
+WWW: http://www.gimp.org/
diff --git a/graphics/gimp1/pkg-message b/graphics/gimp1/pkg-message
new file mode 100644
index 000000000..e86b05293
--- /dev/null
+++ b/graphics/gimp1/pkg-message
@@ -0,0 +1,6 @@
+***************************************************
+* *
+* For I18N support, please execute "gimp.setfont" *
+* before running the GIMP. *
+* *
+***************************************************
diff --git a/graphics/gimp1/pkg-plist b/graphics/gimp1/pkg-plist
new file mode 100644
index 000000000..3993fbf50
--- /dev/null
+++ b/graphics/gimp1/pkg-plist
@@ -0,0 +1,1563 @@
+bin/gimp
+bin/gimp-1.2
+bin/gimp-config
+bin/gimp-remote
+bin/gimp-remote-1.2
+bin/gimp.setfont
+bin/gimptool
+bin/gimptool-1.2
+etc/gimp/1.2/gimprc
+etc/gimp/1.2/gimprc_user
+etc/gimp/1.2/gtkrc
+etc/gimp/1.2/gtkrc_user
+etc/gimp/1.2/ps-menurc
+etc/gimp/1.2/unitrc
+include/gck/gck.h
+include/libgimp/gimp.h
+include/libgimp/gimp_pdb.h
+include/libgimp/gimpbrushes_pdb.h
+include/libgimp/gimpbrushselect_pdb.h
+include/libgimp/gimpchainbutton.h
+include/libgimp/gimpchannel.h
+include/libgimp/gimpchannel_pdb.h
+include/libgimp/gimpchannelops_pdb.h
+include/libgimp/gimpcolor_pdb.h
+include/libgimp/gimpcolorbutton.h
+include/libgimp/gimpcolordisplay.h
+include/libgimp/gimpcolorselector.h
+include/libgimp/gimpcolorspace.h
+include/libgimp/gimpcompat.h
+include/libgimp/gimpconvert_pdb.h
+include/libgimp/gimpdialog.h
+include/libgimp/gimpdisplay_pdb.h
+include/libgimp/gimpdrawable.h
+include/libgimp/gimpdrawable_pdb.h
+include/libgimp/gimpedit_pdb.h
+include/libgimp/gimpenums.h
+include/libgimp/gimpenv.h
+include/libgimp/gimpexport.h
+include/libgimp/gimpfeatures.h
+include/libgimp/gimpfileops_pdb.h
+include/libgimp/gimpfileselection.h
+include/libgimp/gimpfloatingsel_pdb.h
+include/libgimp/gimpgimprc_pdb.h
+include/libgimp/gimpgradients_pdb.h
+include/libgimp/gimpgradientselect.h
+include/libgimp/gimpgradientselect_pdb.h
+include/libgimp/gimpguides_pdb.h
+include/libgimp/gimphelp_pdb.h
+include/libgimp/gimphelpui.h
+include/libgimp/gimpimage.h
+include/libgimp/gimpimage_pdb.h
+include/libgimp/gimpintl.h
+include/libgimp/gimplayer.h
+include/libgimp/gimplayer_pdb.h
+include/libgimp/gimplimits.h
+include/libgimp/gimpmath.h
+include/libgimp/gimpmatrix.h
+include/libgimp/gimpmenu.h
+include/libgimp/gimpmessage_pdb.h
+include/libgimp/gimpmisc_pdb.h
+include/libgimp/gimpmodule.h
+include/libgimp/gimppalette_pdb.h
+include/libgimp/gimpparasite.h
+include/libgimp/gimpparasite_pdb.h
+include/libgimp/gimpparasiteio.h
+include/libgimp/gimppatheditor.h
+include/libgimp/gimppaths_pdb.h
+include/libgimp/gimppatterns_pdb.h
+include/libgimp/gimppatternselect_pdb.h
+include/libgimp/gimppixelrgn.h
+include/libgimp/gimppixmap.h
+include/libgimp/gimpplugin_pdb.h
+include/libgimp/gimpproceduraldb.h
+include/libgimp/gimpproceduraldb_pdb.h
+include/libgimp/gimpquerybox.h
+include/libgimp/gimpselection.h
+include/libgimp/gimpselection_pdb.h
+include/libgimp/gimpsignal.h
+include/libgimp/gimpsizeentry.h
+include/libgimp/gimptexttool_pdb.h
+include/libgimp/gimptile.h
+include/libgimp/gimptools_pdb.h
+include/libgimp/gimptypes.h
+include/libgimp/gimpui.h
+include/libgimp/gimpundo_pdb.h
+include/libgimp/gimpunit.h
+include/libgimp/gimpunit_pdb.h
+include/libgimp/gimpunitmenu.h
+include/libgimp/gimputils.h
+include/libgimp/gimpvector.h
+include/libgimp/gimpwidgets.h
+lib/libgck.a
+lib/libgck.la
+lib/libgck.so
+lib/libgck.so.%%SHLIBVER%%
+lib/libgimp.a
+lib/libgimp.la
+lib/libgimp.so
+lib/libgimp.so.%%SHLIBVER%%
+lib/libgimpui.a
+lib/libgimpui.la
+lib/libgimpui.so
+lib/libgimpui.so.%%SHLIBVER%%
+libexec/gimp/1.2/modules/libcolorsel_gtk.a
+libexec/gimp/1.2/modules/libcolorsel_gtk.la
+libexec/gimp/1.2/modules/libcolorsel_gtk.so
+libexec/gimp/1.2/modules/libcolorsel_triangle.a
+libexec/gimp/1.2/modules/libcolorsel_triangle.la
+libexec/gimp/1.2/modules/libcolorsel_triangle.so
+libexec/gimp/1.2/modules/libcolorsel_water.a
+libexec/gimp/1.2/modules/libcolorsel_water.la
+libexec/gimp/1.2/modules/libcolorsel_water.so
+libexec/gimp/1.2/plug-ins/AlienMap
+libexec/gimp/1.2/plug-ins/AlienMap2
+libexec/gimp/1.2/plug-ins/CEL
+libexec/gimp/1.2/plug-ins/CML_explorer
+libexec/gimp/1.2/plug-ins/FractalExplorer
+libexec/gimp/1.2/plug-ins/Lighting
+libexec/gimp/1.2/plug-ins/MapObject
+libexec/gimp/1.2/plug-ins/aa
+libexec/gimp/1.2/plug-ins/align_layers
+libexec/gimp/1.2/plug-ins/animationplay
+libexec/gimp/1.2/plug-ins/animoptimize
+libexec/gimp/1.2/plug-ins/apply_lens
+libexec/gimp/1.2/plug-ins/autocrop
+libexec/gimp/1.2/plug-ins/autostretch_hsv
+libexec/gimp/1.2/plug-ins/blinds
+libexec/gimp/1.2/plug-ins/blur
+libexec/gimp/1.2/plug-ins/bmp
+libexec/gimp/1.2/plug-ins/borderaverage
+libexec/gimp/1.2/plug-ins/bumpmap
+libexec/gimp/1.2/plug-ins/bz2
+libexec/gimp/1.2/plug-ins/c_astretch
+libexec/gimp/1.2/plug-ins/checkerboard
+libexec/gimp/1.2/plug-ins/color_enhance
+libexec/gimp/1.2/plug-ins/colorify
+libexec/gimp/1.2/plug-ins/colortoalpha
+libexec/gimp/1.2/plug-ins/compose
+libexec/gimp/1.2/plug-ins/convmatrix
+libexec/gimp/1.2/plug-ins/csource
+libexec/gimp/1.2/plug-ins/cubism
+libexec/gimp/1.2/plug-ins/curve_bend
+libexec/gimp/1.2/plug-ins/dbbrowser
+libexec/gimp/1.2/plug-ins/decompose
+libexec/gimp/1.2/plug-ins/deinterlace
+libexec/gimp/1.2/plug-ins/depthmerge
+libexec/gimp/1.2/plug-ins/despeckle
+libexec/gimp/1.2/plug-ins/destripe
+libexec/gimp/1.2/plug-ins/diffraction
+libexec/gimp/1.2/plug-ins/displace
+libexec/gimp/1.2/plug-ins/edge
+libexec/gimp/1.2/plug-ins/emboss
+libexec/gimp/1.2/plug-ins/engrave
+libexec/gimp/1.2/plug-ins/exchange
+libexec/gimp/1.2/plug-ins/faxg3
+libexec/gimp/1.2/plug-ins/film
+libexec/gimp/1.2/plug-ins/fits
+libexec/gimp/1.2/plug-ins/flame
+libexec/gimp/1.2/plug-ins/flarefx
+libexec/gimp/1.2/plug-ins/fp
+libexec/gimp/1.2/plug-ins/fractaltrace
+libexec/gimp/1.2/plug-ins/gap_decode_mpeg
+libexec/gimp/1.2/plug-ins/gap_filter
+libexec/gimp/1.2/plug-ins/gap_frontends
+libexec/gimp/1.2/plug-ins/gap_navigator_dialog
+libexec/gimp/1.2/plug-ins/gap_plugins
+libexec/gimp/1.2/plug-ins/gauss_iir
+libexec/gimp/1.2/plug-ins/gauss_rle
+libexec/gimp/1.2/plug-ins/gbr
+libexec/gimp/1.2/plug-ins/gdyntext
+libexec/gimp/1.2/plug-ins/gee
+libexec/gimp/1.2/plug-ins/gee_zoom
+libexec/gimp/1.2/plug-ins/gfig
+libexec/gimp/1.2/plug-ins/gflare
+libexec/gimp/1.2/plug-ins/gfli
+libexec/gimp/1.2/plug-ins/gicon
+libexec/gimp/1.2/plug-ins/gif
+libexec/gimp/1.2/plug-ins/gifload
+libexec/gimp/1.2/plug-ins/gih
+libexec/gimp/1.2/plug-ins/gimpressionist
+libexec/gimp/1.2/plug-ins/glasstile
+libexec/gimp/1.2/plug-ins/gqbist
+libexec/gimp/1.2/plug-ins/gradmap
+libexec/gimp/1.2/plug-ins/grid
+libexec/gimp/1.2/plug-ins/gtm
+libexec/gimp/1.2/plug-ins/guillotine
+libexec/gimp/1.2/plug-ins/gz
+libexec/gimp/1.2/plug-ins/header
+libexec/gimp/1.2/plug-ins/hot
+libexec/gimp/1.2/plug-ins/hrz
+libexec/gimp/1.2/plug-ins/ifscompose
+libexec/gimp/1.2/plug-ins/illusion
+libexec/gimp/1.2/plug-ins/imagemap
+libexec/gimp/1.2/plug-ins/iwarp
+libexec/gimp/1.2/plug-ins/jigsaw
+libexec/gimp/1.2/plug-ins/jpeg
+libexec/gimp/1.2/plug-ins/laplace
+libexec/gimp/1.2/plug-ins/lic
+libexec/gimp/1.2/plug-ins/mail
+libexec/gimp/1.2/plug-ins/mapcolor
+libexec/gimp/1.2/plug-ins/max_rgb
+libexec/gimp/1.2/plug-ins/maze
+libexec/gimp/1.2/plug-ins/mblur
+libexec/gimp/1.2/plug-ins/mosaic
+libexec/gimp/1.2/plug-ins/mpeg
+libexec/gimp/1.2/plug-ins/newsprint
+libexec/gimp/1.2/plug-ins/nlfilt
+libexec/gimp/1.2/plug-ins/noisify
+libexec/gimp/1.2/plug-ins/normalize
+libexec/gimp/1.2/plug-ins/nova
+libexec/gimp/1.2/plug-ins/oilify
+libexec/gimp/1.2/plug-ins/pagecurl
+libexec/gimp/1.2/plug-ins/papertile
+libexec/gimp/1.2/plug-ins/pat
+libexec/gimp/1.2/plug-ins/pcx
+libexec/gimp/1.2/plug-ins/pix
+libexec/gimp/1.2/plug-ins/pixelize
+libexec/gimp/1.2/plug-ins/plasma
+libexec/gimp/1.2/plug-ins/plugindetails
+libexec/gimp/1.2/plug-ins/png
+libexec/gimp/1.2/plug-ins/pnm
+libexec/gimp/1.2/plug-ins/polar
+%%PRINT%%libexec/gimp/1.2/plug-ins/print
+libexec/gimp/1.2/plug-ins/ps
+libexec/gimp/1.2/plug-ins/psd
+libexec/gimp/1.2/plug-ins/psp
+libexec/gimp/1.2/plug-ins/randomize
+libexec/gimp/1.2/plug-ins/rcm
+libexec/gimp/1.2/plug-ins/ripple
+libexec/gimp/1.2/plug-ins/rotate
+libexec/gimp/1.2/plug-ins/sample_colorize
+libexec/gimp/1.2/plug-ins/scatter_hsv
+libexec/gimp/1.2/plug-ins/screenshot
+libexec/gimp/1.2/plug-ins/script-fu
+libexec/gimp/1.2/plug-ins/sel2path
+libexec/gimp/1.2/plug-ins/sel_gauss
+libexec/gimp/1.2/plug-ins/semiflatten
+libexec/gimp/1.2/plug-ins/sgi
+libexec/gimp/1.2/plug-ins/sharpen
+libexec/gimp/1.2/plug-ins/shift
+libexec/gimp/1.2/plug-ins/sinus
+libexec/gimp/1.2/plug-ins/smooth_palette
+libexec/gimp/1.2/plug-ins/snoise
+libexec/gimp/1.2/plug-ins/sobel
+libexec/gimp/1.2/plug-ins/sparkle
+libexec/gimp/1.2/plug-ins/spread
+libexec/gimp/1.2/plug-ins/struc
+libexec/gimp/1.2/plug-ins/sunras
+libexec/gimp/1.2/plug-ins/tga
+libexec/gimp/1.2/plug-ins/threshold_alpha
+libexec/gimp/1.2/plug-ins/tiff
+libexec/gimp/1.2/plug-ins/tile
+libexec/gimp/1.2/plug-ins/tileit
+libexec/gimp/1.2/plug-ins/tiler
+libexec/gimp/1.2/plug-ins/uniteditor
+libexec/gimp/1.2/plug-ins/unsharp
+libexec/gimp/1.2/plug-ins/url
+libexec/gimp/1.2/plug-ins/video
+libexec/gimp/1.2/plug-ins/vinvert
+libexec/gimp/1.2/plug-ins/vpropagate
+libexec/gimp/1.2/plug-ins/warp
+libexec/gimp/1.2/plug-ins/waves
+libexec/gimp/1.2/plug-ins/webbrowser
+libexec/gimp/1.2/plug-ins/whirlpinch
+libexec/gimp/1.2/plug-ins/wind
+libexec/gimp/1.2/plug-ins/wmf
+libexec/gimp/1.2/plug-ins/xbm
+libexec/gimp/1.2/plug-ins/xjt
+libexec/gimp/1.2/plug-ins/xpm
+libexec/gimp/1.2/plug-ins/xwd
+libexec/gimp/1.2/plug-ins/zealouscrop
+share/aclocal/gimp.m4
+%%DATADIR%%/brushes/10x10square.gbr
+%%DATADIR%%/brushes/10x10squareBlur.gbr
+%%DATADIR%%/brushes/11circle.gbr
+%%DATADIR%%/brushes/11fcircle.gbr
+%%DATADIR%%/brushes/13circle.gbr
+%%DATADIR%%/brushes/13fcircle.gbr
+%%DATADIR%%/brushes/15circle.gbr
+%%DATADIR%%/brushes/15fcircle.gbr
+%%DATADIR%%/brushes/17circle.gbr
+%%DATADIR%%/brushes/17fcircle.gbr
+%%DATADIR%%/brushes/19circle.gbr
+%%DATADIR%%/brushes/19fcircle.gbr
+%%DATADIR%%/brushes/1circle.gbr
+%%DATADIR%%/brushes/20x20square.gbr
+%%DATADIR%%/brushes/20x20squareBlur.gbr
+%%DATADIR%%/brushes/3circle.gbr
+%%DATADIR%%/brushes/3fcircle.gbr
+%%DATADIR%%/brushes/5circle.gbr
+%%DATADIR%%/brushes/5fcircle.gbr
+%%DATADIR%%/brushes/5x5square.gbr
+%%DATADIR%%/brushes/5x5squareBlur.gbr
+%%DATADIR%%/brushes/7circle.gbr
+%%DATADIR%%/brushes/7fcircle.gbr
+%%DATADIR%%/brushes/9circle.gbr
+%%DATADIR%%/brushes/9fcircle.gbr
+%%DATADIR%%/brushes/DStar11.gbr
+%%DATADIR%%/brushes/DStar17.gbr
+%%DATADIR%%/brushes/DStar25.gbr
+%%DATADIR%%/brushes/SketchBrush-16.gih
+%%DATADIR%%/brushes/SketchBrush-32.gih
+%%DATADIR%%/brushes/SketchBrush-64.gih
+%%DATADIR%%/brushes/callig1.gbr
+%%DATADIR%%/brushes/callig2.gbr
+%%DATADIR%%/brushes/callig3.gbr
+%%DATADIR%%/brushes/callig4.gbr
+%%DATADIR%%/brushes/confetti.gbr
+%%DATADIR%%/brushes/confetti.gih
+%%DATADIR%%/brushes/dunes.gbr
+%%DATADIR%%/brushes/feltpen.gih
+%%DATADIR%%/brushes/hsparks.gih
+%%DATADIR%%/brushes/galaxy.gbr
+%%DATADIR%%/brushes/galaxy_big.gbr
+%%DATADIR%%/brushes/galaxy_small.gbr
+%%DATADIR%%/brushes/pepper.gbr
+%%DATADIR%%/brushes/pixel.gbr
+%%DATADIR%%/brushes/thegimp.gbr
+%%DATADIR%%/brushes/vine.gih
+%%DATADIR%%/brushes/xcf.gbr
+%%DATADIR%%/devel-docs/html/libgimp/gimpchainbutton.html
+%%DATADIR%%/devel-docs/html/libgimp/gimpcolorbutton.html
+%%DATADIR%%/devel-docs/html/libgimp/gimpdefinitions.html
+%%DATADIR%%/devel-docs/html/libgimp/gimpfileselection.html
+%%DATADIR%%/devel-docs/html/libgimp/gimpmodule.html
+%%DATADIR%%/devel-docs/html/libgimp/gimppatheditor.html
+%%DATADIR%%/devel-docs/html/libgimp/gimppixmap.html
+%%DATADIR%%/devel-docs/html/libgimp/gimpsizeentry.html
+%%DATADIR%%/devel-docs/html/libgimp/gimpunitmenu.html
+%%DATADIR%%/devel-docs/html/libgimp/index.html
+%%DATADIR%%/devel-docs/html/libgimp/index.sgml
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimp.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpbrushes.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpchannel.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpchannelops.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpcolor.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpcolordisplay.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpcolorselector.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpcolorspace.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpcompat.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpconvert.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpdialog.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpdisplay.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpdrawable.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpedit.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpenums.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpenv.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpexport.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpfeatures.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpfileops.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpfloatingsel.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpgimprc.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpgradients.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpguides.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimphelp.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimphelpui.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpimage.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimplayer.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimplimits.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpmath.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpmatrix.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpmenu.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpmessage.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpmisc.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpmodule.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimppalette.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpparasite.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpparasiteio.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimppatterns.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimppixelrgn.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpplugin.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpproceduraldb.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpprotocol.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpquerybox.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpselection.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpsignal.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimptexttool.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimptile.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimptools.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpui.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpundo.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpunit.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimputils.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpvector.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpwidgets.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp-gimpwire.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimp.html
+%%DATADIR%%/devel-docs/html/libgimp/libgimpui.html
+%%DATADIR%%/fractalexplorer/Asteroid_Field
+%%DATADIR%%/fractalexplorer/Bar_Code_Label
+%%DATADIR%%/fractalexplorer/Beauty_of_Nature
+%%DATADIR%%/fractalexplorer/Blue_Curtain
+%%DATADIR%%/fractalexplorer/Car_Track
+%%DATADIR%%/fractalexplorer/Energetic_Diamond
+%%DATADIR%%/fractalexplorer/Explosive
+%%DATADIR%%/fractalexplorer/Flower
+%%DATADIR%%/fractalexplorer/Fragments
+%%DATADIR%%/fractalexplorer/Hemp
+%%DATADIR%%/fractalexplorer/High_Voltage
+%%DATADIR%%/fractalexplorer/Hoops
+%%DATADIR%%/fractalexplorer/Ice_Crystal
+%%DATADIR%%/fractalexplorer/Leaves
+%%DATADIR%%/fractalexplorer/Lightning
+%%DATADIR%%/fractalexplorer/Mandelbrot
+%%DATADIR%%/fractalexplorer/Marble
+%%DATADIR%%/fractalexplorer/Marble2
+%%DATADIR%%/fractalexplorer/Medusa
+%%DATADIR%%/fractalexplorer/Nautilus
+%%DATADIR%%/fractalexplorer/Nebula
+%%DATADIR%%/fractalexplorer/Plant
+%%DATADIR%%/fractalexplorer/Rose
+%%DATADIR%%/fractalexplorer/Saturn
+%%DATADIR%%/fractalexplorer/Snow_Crystal
+%%DATADIR%%/fractalexplorer/Soma
+%%DATADIR%%/fractalexplorer/Spark
+%%DATADIR%%/fractalexplorer/Suns
+%%DATADIR%%/fractalexplorer/Tentacles
+%%DATADIR%%/fractalexplorer/The_Green_Place
+%%DATADIR%%/fractalexplorer/Wave
+%%DATADIR%%/fractalexplorer/Wood
+%%DATADIR%%/fractalexplorer/Zooming_Circle
+%%DATADIR%%/gfig/A_star
+%%DATADIR%%/gfig/curves
+%%DATADIR%%/gfig/polys
+%%DATADIR%%/gfig/ring
+%%DATADIR%%/gfig/ring+star
+%%DATADIR%%/gfig/simily
+%%DATADIR%%/gfig/spirals_and_stars
+%%DATADIR%%/gfig/sprial
+%%DATADIR%%/gfig/star2
+%%DATADIR%%/gfig/stars
+%%DATADIR%%/gflare/Bright_Star
+%%DATADIR%%/gflare/Classic
+%%DATADIR%%/gflare/Default
+%%DATADIR%%/gflare/Distant_Sun
+%%DATADIR%%/gflare/GFlare_101
+%%DATADIR%%/gflare/GFlare_102
+%%DATADIR%%/gflare/Hidden_Planet
+%%DATADIR%%/gimp_logo.ppm
+%%DATADIR%%/gimp_splash.ppm
+%%DATADIR%%/gimpressionist/Brushes/arrow01.pgm
+%%DATADIR%%/gimpressionist/Brushes/ball.ppm
+%%DATADIR%%/gimpressionist/Brushes/blob.ppm
+%%DATADIR%%/gimpressionist/Brushes/box.ppm
+%%DATADIR%%/gimpressionist/Brushes/chalk01.pgm
+%%DATADIR%%/gimpressionist/Brushes/cone.ppm
+%%DATADIR%%/gimpressionist/Brushes/crayon01.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon02.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon03.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon04.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon05.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon06.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon07.pgm
+%%DATADIR%%/gimpressionist/Brushes/crayon08.pgm
+%%DATADIR%%/gimpressionist/Brushes/defaultbrush.pgm
+%%DATADIR%%/gimpressionist/Brushes/dribble.pgm
+%%DATADIR%%/gimpressionist/Brushes/fabric.pgm
+%%DATADIR%%/gimpressionist/Brushes/fabric01.pgm
+%%DATADIR%%/gimpressionist/Brushes/fabric02.pgm
+%%DATADIR%%/gimpressionist/Brushes/fabric03.pgm
+%%DATADIR%%/gimpressionist/Brushes/flower01.pgm
+%%DATADIR%%/gimpressionist/Brushes/flower02.pgm
+%%DATADIR%%/gimpressionist/Brushes/flower03.pgm
+%%DATADIR%%/gimpressionist/Brushes/flower04.pgm
+%%DATADIR%%/gimpressionist/Brushes/grad01.pgm
+%%DATADIR%%/gimpressionist/Brushes/grad02.pgm
+%%DATADIR%%/gimpressionist/Brushes/grad03.pgm
+%%DATADIR%%/gimpressionist/Brushes/heart.ppm
+%%DATADIR%%/gimpressionist/Brushes/leaf01.pgm
+%%DATADIR%%/gimpressionist/Brushes/paintbrush.pgm
+%%DATADIR%%/gimpressionist/Brushes/paintbrush01.pgm
+%%DATADIR%%/gimpressionist/Brushes/paintbrush02.pgm
+%%DATADIR%%/gimpressionist/Brushes/paintbrush03.pgm
+%%DATADIR%%/gimpressionist/Brushes/paintbrush04.pgm
+%%DATADIR%%/gimpressionist/Brushes/paper01.pgm
+%%DATADIR%%/gimpressionist/Brushes/paper02.pgm
+%%DATADIR%%/gimpressionist/Brushes/paper03.pgm
+%%DATADIR%%/gimpressionist/Brushes/paper04.pgm
+%%DATADIR%%/gimpressionist/Brushes/pentagram.pgm
+%%DATADIR%%/gimpressionist/Brushes/scribble.pgm
+%%DATADIR%%/gimpressionist/Brushes/shape01.pgm
+%%DATADIR%%/gimpressionist/Brushes/shape02.pgm
+%%DATADIR%%/gimpressionist/Brushes/shape03.pgm
+%%DATADIR%%/gimpressionist/Brushes/shape04.pgm
+%%DATADIR%%/gimpressionist/Brushes/snow1.pgm
+%%DATADIR%%/gimpressionist/Brushes/sphere.ppm
+%%DATADIR%%/gimpressionist/Brushes/splat1.pgm
+%%DATADIR%%/gimpressionist/Brushes/splat2.pgm
+%%DATADIR%%/gimpressionist/Brushes/splat3.pgm
+%%DATADIR%%/gimpressionist/Brushes/spunge01.pgm
+%%DATADIR%%/gimpressionist/Brushes/spunge02.pgm
+%%DATADIR%%/gimpressionist/Brushes/spunge03.pgm
+%%DATADIR%%/gimpressionist/Brushes/spunge04.pgm
+%%DATADIR%%/gimpressionist/Brushes/spunge05.pgm
+%%DATADIR%%/gimpressionist/Brushes/strange01.pgm
+%%DATADIR%%/gimpressionist/Brushes/thegimp.pgm
+%%DATADIR%%/gimpressionist/Brushes/torus.ppm
+%%DATADIR%%/gimpressionist/Brushes/wavy.pgm
+%%DATADIR%%/gimpressionist/Brushes/weave.pgm
+%%DATADIR%%/gimpressionist/Brushes/worm.pgm
+%%DATADIR%%/gimpressionist/Paper/bricks.pgm
+%%DATADIR%%/gimpressionist/Paper/bricks2.pgm
+%%DATADIR%%/gimpressionist/Paper/burlap.pgm
+%%DATADIR%%/gimpressionist/Paper/canvas2.pgm
+%%DATADIR%%/gimpressionist/Paper/defaultpaper.pgm
+%%DATADIR%%/gimpressionist/Paper/marble.pgm
+%%DATADIR%%/gimpressionist/Paper/marble2.pgm
+%%DATADIR%%/gimpressionist/Paper/struc.pgm
+%%DATADIR%%/gimpressionist/Paper/stone.pgm
+%%DATADIR%%/gimpressionist/Presets/ApplyCanvas
+%%DATADIR%%/gimpressionist/Presets/Ballpark
+%%DATADIR%%/gimpressionist/Presets/Canvas
+%%DATADIR%%/gimpressionist/Presets/Crosshatch
+%%DATADIR%%/gimpressionist/Presets/Cubism
+%%DATADIR%%/gimpressionist/Presets/Dotify
+%%DATADIR%%/gimpressionist/Presets/Embroidery
+%%DATADIR%%/gimpressionist/Presets/Feathers
+%%DATADIR%%/gimpressionist/Presets/Felt-marker
+%%DATADIR%%/gimpressionist/Presets/Flowerbed
+%%DATADIR%%/gimpressionist/Presets/Furry
+%%DATADIR%%/gimpressionist/Presets/Line-art
+%%DATADIR%%/gimpressionist/Presets/Line-art-2
+%%DATADIR%%/gimpressionist/Presets/Maggot-invasion
+%%DATADIR%%/gimpressionist/Presets/MarbleMadness
+%%DATADIR%%/gimpressionist/Presets/Mossy
+%%DATADIR%%/gimpressionist/Presets/Painted_Rock
+%%DATADIR%%/gimpressionist/Presets/Parquette
+%%DATADIR%%/gimpressionist/Presets/Patchwork
+%%DATADIR%%/gimpressionist/Presets/Ringworks
+%%DATADIR%%/gimpressionist/Presets/Sample
+%%DATADIR%%/gimpressionist/Presets/Smash
+%%DATADIR%%/gimpressionist/Presets/Straws
+%%DATADIR%%/gimpressionist/Presets/Weave
+%%DATADIR%%/gimpressionist/Presets/Wormcan
+%%DATADIR%%/gradients/Abstract_1
+%%DATADIR%%/gradients/Abstract_2
+%%DATADIR%%/gradients/Abstract_3
+%%DATADIR%%/gradients/Aneurism
+%%DATADIR%%/gradients/Blinds
+%%DATADIR%%/gradients/Blue_Green
+%%DATADIR%%/gradients/Browns
+%%DATADIR%%/gradients/Brushed_Aluminium
+%%DATADIR%%/gradients/Burning_Paper
+%%DATADIR%%/gradients/Burning_Transparency
+%%DATADIR%%/gradients/CD
+%%DATADIR%%/gradients/CD_Half
+%%DATADIR%%/gradients/Caribbean_Blues
+%%DATADIR%%/gradients/Coffee
+%%DATADIR%%/gradients/Cold_Steel
+%%DATADIR%%/gradients/Cold_Steel_2
+%%DATADIR%%/gradients/Crown_molding
+%%DATADIR%%/gradients/Danish_flag
+%%DATADIR%%/gradients/Dark_1
+%%DATADIR%%/gradients/Deep_Sea
+%%DATADIR%%/gradients/Default
+%%DATADIR%%/gradients/Flare_Glow_Angular_1
+%%DATADIR%%/gradients/Flare_Glow_Radial_1
+%%DATADIR%%/gradients/Flare_Glow_Radial_2
+%%DATADIR%%/gradients/Flare_Glow_Radial_3
+%%DATADIR%%/gradients/Flare_Glow_Radial_4
+%%DATADIR%%/gradients/Flare_Radial_101
+%%DATADIR%%/gradients/Flare_Radial_102
+%%DATADIR%%/gradients/Flare_Radial_103
+%%DATADIR%%/gradients/Flare_Rays_Radial_1
+%%DATADIR%%/gradients/Flare_Rays_Radial_2
+%%DATADIR%%/gradients/Flare_Rays_Size_1
+%%DATADIR%%/gradients/Flare_Sizefac_101
+%%DATADIR%%/gradients/Four_bars
+%%DATADIR%%/gradients/French_flag
+%%DATADIR%%/gradients/French_flag_smooth
+%%DATADIR%%/gradients/Full_saturation_spectrum_CCW
+%%DATADIR%%/gradients/Full_saturation_spectrum_CW
+%%DATADIR%%/gradients/German_flag
+%%DATADIR%%/gradients/German_flag_smooth
+%%DATADIR%%/gradients/Golden
+%%DATADIR%%/gradients/Greens
+%%DATADIR%%/gradients/Horizon_1
+%%DATADIR%%/gradients/Horizon_2
+%%DATADIR%%/gradients/Incandescent
+%%DATADIR%%/gradients/Land_1
+%%DATADIR%%/gradients/Land_and_Sea
+%%DATADIR%%/gradients/Metallic_Something
+%%DATADIR%%/gradients/Mexican_flag
+%%DATADIR%%/gradients/Mexican_flag_smooth
+%%DATADIR%%/gradients/Nauseating_Headache
+%%DATADIR%%/gradients/Neon_Cyan
+%%DATADIR%%/gradients/Neon_Green
+%%DATADIR%%/gradients/Neon_Yellow
+%%DATADIR%%/gradients/Pastel_Rainbow
+%%DATADIR%%/gradients/Pastels
+%%DATADIR%%/gradients/Purples
+%%DATADIR%%/gradients/Radial_Eyeball_Blue
+%%DATADIR%%/gradients/Radial_Eyeball_Brown
+%%DATADIR%%/gradients/Radial_Eyeball_Green
+%%DATADIR%%/gradients/Radial_Glow_1
+%%DATADIR%%/gradients/Radial_Rainbow_Hoop
+%%DATADIR%%/gradients/Romanian_flag
+%%DATADIR%%/gradients/Romanian_flag_smooth
+%%DATADIR%%/gradients/Rounded_edge
+%%DATADIR%%/gradients/Shadows_1
+%%DATADIR%%/gradients/Shadows_2
+%%DATADIR%%/gradients/Shadows_3
+%%DATADIR%%/gradients/Skyline
+%%DATADIR%%/gradients/Skyline_polluted
+%%DATADIR%%/gradients/Square_Wood_Frame
+%%DATADIR%%/gradients/Sunrise
+%%DATADIR%%/gradients/Three_bars_sin
+%%DATADIR%%/gradients/Tropical_Colors
+%%DATADIR%%/gradients/Tube_Red
+%%DATADIR%%/gradients/Wood_1
+%%DATADIR%%/gradients/Wood_2
+%%DATADIR%%/gradients/Yellow_Contrast
+%%DATADIR%%/gradients/Yellow_Orange
+%%DATADIR%%/help/C/bug_submission.html
+%%DATADIR%%/help/C/channels/channel_to_selection.html
+%%DATADIR%%/help/C/channels/delete_channel.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/channels
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs/channels %D/%%DATADIR%%/help/C/channels/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/channels/dialogs
+%%DATADIR%%/help/C/channels/duplicate_channel.html
+%%DATADIR%%/help/C/channels/index.html
+%%DATADIR%%/help/C/channels/lower_channel.html
+%%DATADIR%%/help/C/channels/raise_channel.html
+%%DATADIR%%/help/C/command_line.html
+%%DATADIR%%/help/C/contents.html
+%%DATADIR%%/help/C/dialogs/about.html
+%%DATADIR%%/help/C/dialogs/border_selection.html
+%%DATADIR%%/help/C/dialogs/brush_editor.html
+%%DATADIR%%/help/C/dialogs/brush_selection.html
+%%DATADIR%%/help/C/dialogs/channels/channels.html
+%%DATADIR%%/help/C/dialogs/channels/edit_channel_attributes.html
+%%DATADIR%%/help/C/dialogs/channels/new_channel.html
+%%DATADIR%%/help/C/dialogs/color_selectors/built_in.html
+%%DATADIR%%/help/C/dialogs/color_selectors/gtk.html
+%%DATADIR%%/help/C/dialogs/color_selectors/triangle.html
+%%DATADIR%%/help/C/dialogs/color_selectors/watercolor.html
+%%DATADIR%%/help/C/dialogs/confirm_save.html
+%%DATADIR%%/help/C/dialogs/convert_to_indexed.html
+%%DATADIR%%/help/C/dialogs/copy_named.html
+%%DATADIR%%/help/C/dialogs/cut_named.html
+%%DATADIR%%/help/C/dialogs/device_status.html
+%%DATADIR%%/help/C/dialogs/document_index.html
+%%DATADIR%%/help/C/dialogs/edit_qmask_attributes.html
+%%DATADIR%%/help/C/dialogs/error_console.html
+%%DATADIR%%/help/C/dialogs/export_file.html
+%%DATADIR%%/help/C/dialogs/feather_selection.html
+%%DATADIR%%/help/C/dialogs/file_new.html
+%%DATADIR%%/help/C/dialogs/file_open.html
+%%DATADIR%%/help/C/dialogs/file_save.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/copy_gradient.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/delete_gradient.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/gradient_editor.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/new_gradient.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/rename_gradient.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/replicate_segment.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/save_as_povray.html
+%%DATADIR%%/help/C/dialogs/gradient_editor/split_segments_uniformly.html
+%%DATADIR%%/help/C/dialogs/gradient_selection.html
+%%DATADIR%%/help/C/dialogs/grow_selection.html
+%%DATADIR%%/help/C/dialogs/help.html
+%%DATADIR%%/help/C/dialogs/index.html
+%%DATADIR%%/help/C/dialogs/indexed_palette.html
+%%DATADIR%%/help/C/dialogs/info_window.html
+%%DATADIR%%/help/C/dialogs/input_devices.html
+%%DATADIR%%/help/C/dialogs/layers/add_layer_mask.html
+%%DATADIR%%/help/C/dialogs/layers/edit_layer_attributes.html
+%%DATADIR%%/help/C/dialogs/layers/layer_boundary_size.html
+%%DATADIR%%/help/C/dialogs/layers/layers.html
+%%DATADIR%%/help/C/dialogs/layers/merge_visible_layers.html
+%%DATADIR%%/help/C/dialogs/layers/new_layer.html
+%%DATADIR%%/help/C/dialogs/layers/scale_layer.html
+%%DATADIR%%/help/C/dialogs/layers_and_channels.html
+%%DATADIR%%/help/C/dialogs/module_browser.html
+%%DATADIR%%/help/C/dialogs/navigation_window.html
+%%DATADIR%%/help/C/dialogs/offset.html
+%%DATADIR%%/help/C/dialogs/palette_editor/delete_palette.html
+%%DATADIR%%/help/C/dialogs/palette_editor/import_palette.html
+%%DATADIR%%/help/C/dialogs/palette_editor/merge_palette.html
+%%DATADIR%%/help/C/dialogs/palette_editor/new_palette.html
+%%DATADIR%%/help/C/dialogs/palette_editor/palette_editor.html
+%%DATADIR%%/help/C/dialogs/palette_selection.html
+%%DATADIR%%/help/C/dialogs/paste_named.html
+%%DATADIR%%/help/C/dialogs/paths/edit_path_attributes.html
+%%DATADIR%%/help/C/dialogs/paths/export_path.html
+%%DATADIR%%/help/C/dialogs/paths/import_path.html
+%%DATADIR%%/help/C/dialogs/paths/paths.html
+%%DATADIR%%/help/C/dialogs/pattern_selection.html
+%%DATADIR%%/help/C/dialogs/preferences/directories.html
+%%DATADIR%%/help/C/dialogs/preferences/display.html
+%%DATADIR%%/help/C/dialogs/preferences/environment.html
+%%DATADIR%%/help/C/dialogs/preferences/interface.html
+%%DATADIR%%/help/C/dialogs/preferences/monitor.html
+%%DATADIR%%/help/C/dialogs/preferences/new_file.html
+%%DATADIR%%/help/C/dialogs/preferences/preferences.html
+%%DATADIR%%/help/C/dialogs/preferences/session.html
+%%DATADIR%%/help/C/dialogs/really_close.html
+%%DATADIR%%/help/C/dialogs/really_quit.html
+%%DATADIR%%/help/C/dialogs/scale_image.html
+%%DATADIR%%/help/C/dialogs/scale_layer_warn.html
+%%DATADIR%%/help/C/dialogs/set_canvas_size.html
+%%DATADIR%%/help/C/dialogs/shrink_selection.html
+%%DATADIR%%/help/C/dialogs/tip_of_the_day.html
+%%DATADIR%%/help/C/dialogs/tool_options.html
+%%DATADIR%%/help/C/dialogs/undo_history.html
+%%DATADIR%%/help/C/file/close.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/file
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/file/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/file/dialogs
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/file/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/file/filters
+%%DATADIR%%/help/C/file/index.html
+%%DATADIR%%/help/C/file/last_opened.html
+@exec ln -sf %D/%%DATADIR%%/help/C/open %D/%%DATADIR%%/help/C/file/open
+@unexec rm -f %D/%%DATADIR%%/help/C/file/open
+%%DATADIR%%/help/C/file/revert.html
+%%DATADIR%%/help/C/file/quit.html
+@exec ln -sf %D/%%DATADIR%%/help/C/save %D/%%DATADIR%%/help/C/file/save
+@unexec rm -f %D/%%DATADIR%%/help/C/file/save
+%%DATADIR%%/help/C/file_formats.html
+%%DATADIR%%/help/C/filters/alienmap.html
+%%DATADIR%%/help/C/filters/alienmap2.html
+%%DATADIR%%/help/C/filters/align_layers.html
+%%DATADIR%%/help/C/filters/animate_cells.html
+%%DATADIR%%/help/C/filters/animationplay.html
+%%DATADIR%%/help/C/filters/animoptimize.html
+%%DATADIR%%/help/C/filters/apply_lens.html
+%%DATADIR%%/help/C/filters/applycanvas.html
+%%DATADIR%%/help/C/filters/autocrop.html
+%%DATADIR%%/help/C/filters/autostretch_hsv.html
+%%DATADIR%%/help/C/filters/blended2.html
+%%DATADIR%%/help/C/filters/blinds.html
+%%DATADIR%%/help/C/filters/blur.html
+%%DATADIR%%/help/C/filters/blowinout.html
+%%DATADIR%%/help/C/filters/border.html
+%%DATADIR%%/help/C/filters/borderaverage.html
+%%DATADIR%%/help/C/filters/bumpmap.html
+%%DATADIR%%/help/C/filters/burst.html
+%%DATADIR%%/help/C/filters/bz2.html
+%%DATADIR%%/help/C/filters/c_astretch.html
+%%DATADIR%%/help/C/filters/centerguide.html
+%%DATADIR%%/help/C/filters/checkerboard.html
+%%DATADIR%%/help/C/filters/cml_explorer.html
+%%DATADIR%%/help/C/filters/color_enhance.html
+%%DATADIR%%/help/C/filters/colorify.html
+%%DATADIR%%/help/C/filters/colortoalpha.html
+%%DATADIR%%/help/C/filters/convmatrix.html
+%%DATADIR%%/help/C/filters/compose.html
+%%DATADIR%%/help/C/filters/cubism.html
+%%DATADIR%%/help/C/filters/curve_bend.html
+%%DATADIR%%/help/C/filters/decompose.html
+%%DATADIR%%/help/C/filters/deinterlace.html
+%%DATADIR%%/help/C/filters/depthmerge.html
+%%DATADIR%%/help/C/filters/despeckle.html
+%%DATADIR%%/help/C/filters/destripe.html
+%%DATADIR%%/help/C/filters/diffraction.html
+%%DATADIR%%/help/C/filters/displace.html
+%%DATADIR%%/help/C/filters/ditherize.html
+%%DATADIR%%/help/C/filters/dust.html
+%%DATADIR%%/help/C/filters/edge.html
+%%DATADIR%%/help/C/filters/emboss.html
+%%DATADIR%%/help/C/filters/engrave.html
+%%DATADIR%%/help/C/filters/exchange.html
+%%DATADIR%%/help/C/filters/fade-alpha.html
+%%DATADIR%%/help/C/filters/film.html
+%%DATADIR%%/help/C/filters/fire.html
+%%DATADIR%%/help/C/filters/fit-text.html
+%%DATADIR%%/help/C/filters/fits.html
+%%DATADIR%%/help/C/filters/flame.html
+%%DATADIR%%/help/C/filters/flarefx.html
+%%DATADIR%%/help/C/filters/fractalexplorer.html
+%%DATADIR%%/help/C/filters/fractaltrace.html
+%%DATADIR%%/help/C/filters/fp.html
+%%DATADIR%%/help/C/filters/frame_filter.html
+%%DATADIR%%/help/C/filters/gap_filter.html
+%%DATADIR%%/help/C/filters/gap_frontends.html
+%%DATADIR%%/help/C/filters/gap_navigator_dialog.html
+%%DATADIR%%/help/C/filters/gap_plugins.html
+%%DATADIR%%/help/C/filters/gauss_iir.html
+%%DATADIR%%/help/C/filters/gauss_rle.html
+%%DATADIR%%/help/C/filters/gee_zoom.html
+%%DATADIR%%/help/C/filters/gdyntext.html
+%%DATADIR%%/help/C/filters/gfig.html
+%%DATADIR%%/help/C/filters/gflare.html
+%%DATADIR%%/help/C/filters/gih.html
+%%DATADIR%%/help/C/filters/gimpressionist.html
+%%DATADIR%%/help/C/filters/glasstile.html
+%%DATADIR%%/help/C/filters/glowing_steel.html
+%%DATADIR%%/help/C/filters/gouge.html
+%%DATADIR%%/help/C/filters/gradmap.html
+%%DATADIR%%/help/C/filters/grid.html
+%%DATADIR%%/help/C/filters/gqbist.html
+%%DATADIR%%/help/C/filters/gtm.html
+%%DATADIR%%/help/C/filters/guide_remove.html
+%%DATADIR%%/help/C/filters/guidegrid.html
+%%DATADIR%%/help/C/filters/guides_to_selection.html
+%%DATADIR%%/help/C/filters/guillotine.html
+%%DATADIR%%/help/C/filters/gz.html
+%%DATADIR%%/help/C/filters/hot.html
+%%DATADIR%%/help/C/filters/hrz.html
+%%DATADIR%%/help/C/filters/ifscompose.html
+%%DATADIR%%/help/C/filters/illusion.html
+%%DATADIR%%/help/C/filters/image_tile.html
+%%DATADIR%%/help/C/filters/imagemap.html
+%%DATADIR%%/help/C/filters/iwarp.html
+%%DATADIR%%/help/C/filters/index.html
+%%DATADIR%%/help/C/filters/jigsaw.html
+%%DATADIR%%/help/C/filters/jpeg.html
+%%DATADIR%%/help/C/filters/laplace.html
+%%DATADIR%%/help/C/filters/layerfuncs.html
+%%DATADIR%%/help/C/filters/lic.html
+%%DATADIR%%/help/C/filters/lighting.html
+%%DATADIR%%/help/C/filters/logulator.html
+%%DATADIR%%/help/C/filters/mail.html
+%%DATADIR%%/help/C/filters/map_to_gradient.html
+%%DATADIR%%/help/C/filters/mapcolor.html
+%%DATADIR%%/help/C/filters/mapobject.html
+%%DATADIR%%/help/C/filters/max_rgb.html
+%%DATADIR%%/help/C/filters/maze.html
+%%DATADIR%%/help/C/filters/mblur.html
+%%DATADIR%%/help/C/filters/miff.html
+%%DATADIR%%/help/C/filters/mirrorsplit.html
+%%DATADIR%%/help/C/filters/mosaic.html
+%%DATADIR%%/help/C/filters/newsprint.html
+%%DATADIR%%/help/C/filters/nlfilt.html
+%%DATADIR%%/help/C/filters/nova.html
+%%DATADIR%%/help/C/filters/noisify.html
+%%DATADIR%%/help/C/filters/none.html
+%%DATADIR%%/help/C/filters/normalize.html
+%%DATADIR%%/help/C/filters/oilify.html
+%%DATADIR%%/help/C/filters/pagecurl.html
+%%DATADIR%%/help/C/filters/papertile.html
+%%DATADIR%%/help/C/filters/pat.html
+%%DATADIR%%/help/C/filters/perlotine.html
+%%DATADIR%%/help/C/filters/pixelmap.html
+%%DATADIR%%/help/C/filters/pixelize.html
+%%DATADIR%%/help/C/filters/plasma.html
+%%DATADIR%%/help/C/filters/polar.html
+%%DATADIR%%/help/C/filters/prep4gif.html
+%%DATADIR%%/help/C/filters/png.html
+%%DATADIR%%/help/C/filters/pnm.html
+%%DATADIR%%/help/C/filters/print.html
+%%DATADIR%%/help/C/filters/psd.html
+%%DATADIR%%/help/C/filters/psp.html
+%%DATADIR%%/help/C/filters/randomblends.html
+%%DATADIR%%/help/C/filters/randomize.html
+%%DATADIR%%/help/C/filters/rcm.html
+%%DATADIR%%/help/C/filters/repdup.html
+%%DATADIR%%/help/C/filters/repeat_last.html
+%%DATADIR%%/help/C/filters/reshow_last.html
+%%DATADIR%%/help/C/filters/resynth.html
+%%DATADIR%%/help/C/filters/ripple.html
+%%DATADIR%%/help/C/filters/rotate.html
+%%DATADIR%%/help/C/filters/roundsel.html
+%%DATADIR%%/help/C/filters/sample_colorize.html
+%%DATADIR%%/help/C/filters/scatter_hsv.html
+%%DATADIR%%/help/C/filters/scratches.html
+%%DATADIR%%/help/C/filters/sel2path.html
+%%DATADIR%%/help/C/filters/sel_gauss.html
+%%DATADIR%%/help/C/filters/semiflatten.html
+%%DATADIR%%/help/C/filters/sharpen.html
+%%DATADIR%%/help/C/filters/shift.html
+%%DATADIR%%/help/C/filters/sgi.html
+%%DATADIR%%/help/C/filters/sinus.html
+%%DATADIR%%/help/C/filters/smooth_palette.html
+%%DATADIR%%/help/C/filters/snoise.html
+%%DATADIR%%/help/C/filters/sobel.html
+%%DATADIR%%/help/C/filters/sparkle.html
+%%DATADIR%%/help/C/filters/spread.html
+%%DATADIR%%/help/C/filters/stampify.html
+%%DATADIR%%/help/C/filters/struc.html
+%%DATADIR%%/help/C/filters/sunras.html
+%%DATADIR%%/help/C/filters/terral_text.html
+%%DATADIR%%/help/C/filters/tex-to-float.html
+%%DATADIR%%/help/C/filters/tga.html
+%%DATADIR%%/help/C/filters/threshold_alpha.html
+%%DATADIR%%/help/C/filters/tiff.html
+%%DATADIR%%/help/C/filters/tile.html
+%%DATADIR%%/help/C/filters/tileit.html
+%%DATADIR%%/help/C/filters/tiler.html
+%%DATADIR%%/help/C/filters/tileable_blur.html
+%%DATADIR%%/help/C/filters/translogo.html
+%%DATADIR%%/help/C/filters/unsharp.html
+%%DATADIR%%/help/C/filters/url.html
+%%DATADIR%%/help/C/filters/video.html
+%%DATADIR%%/help/C/filters/vinvert.html
+%%DATADIR%%/help/C/filters/vpropagate.html
+%%DATADIR%%/help/C/filters/warp-sharp.html
+%%DATADIR%%/help/C/filters/warp.html
+%%DATADIR%%/help/C/filters/waves.html
+%%DATADIR%%/help/C/filters/webify.html
+%%DATADIR%%/help/C/filters/whirlpinch.html
+%%DATADIR%%/help/C/filters/wind.html
+%%DATADIR%%/help/C/filters/windify.html
+%%DATADIR%%/help/C/filters/wmf.html
+%%DATADIR%%/help/C/filters/xachlego.html
+%%DATADIR%%/help/C/filters/xachshadow.html
+%%DATADIR%%/help/C/filters/xachvision.html
+%%DATADIR%%/help/C/filters/xwd.html
+%%DATADIR%%/help/C/filters/zealouscrop.html
+%%DATADIR%%/help/C/gimp_license.html
+%%DATADIR%%/help/C/gimp_remote.html
+%%DATADIR%%/help/C/gimptool.html
+%%DATADIR%%/help/C/glossary.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/image
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/dialogs
+%%DATADIR%%/help/C/image/edit/clear.html
+%%DATADIR%%/help/C/image/edit/copy.html
+%%DATADIR%%/help/C/image/edit/cut.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/image/edit
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/edit/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/edit/dialogs
+%%DATADIR%%/help/C/image/edit/fill.html
+%%DATADIR%%/help/C/image/edit/paste.html
+%%DATADIR%%/help/C/image/edit/paste_as_new.html
+%%DATADIR%%/help/C/image/edit/paste_into.html
+%%DATADIR%%/help/C/image/edit/redo.html
+%%DATADIR%%/help/C/image/edit/stroke.html
+%%DATADIR%%/help/C/image/edit/undo.html
+@exec ln -sf %D/%%DATADIR%%/help/C/file %D/%%DATADIR%%/help/C/image/file
+@unexec rm -f %D/%%DATADIR%%/help/C/image/file
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/image/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/image/filters
+%%DATADIR%%/help/C/image/image/colors/auto/equalize.html
+%%DATADIR%%/help/C/image/image/colors/desaturate.html
+%%DATADIR%%/help/C/image/image/colors/invert.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/image/image
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/image/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/image/dialogs
+%%DATADIR%%/help/C/image/image/duplicate.html
+%%DATADIR%%/help/C/image/image/mode/convert_to_grayscale.html
+%%DATADIR%%/help/C/image/image/mode/convert_to_rgb.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/image/image/mode
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/image/mode/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/image/mode/dialogs
+@exec mkdir -p %D/%%DATADIR%%/help/C/image/image/transforms
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/image/transforms/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/image/transforms/dialogs
+%%DATADIR%%/help/C/image/image_window.html
+%%DATADIR%%/help/C/image/index.html
+@exec ln -sf %D/%%DATADIR%%/help/C/layers %D/%%DATADIR%%/help/C/image/layers
+@unexec rm -f %D/%%DATADIR%%/help/C/image/layers
+%%DATADIR%%/help/C/image/select/all.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/image/select
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/select/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/select/dialogs
+%%DATADIR%%/help/C/image/select/float.html
+%%DATADIR%%/help/C/image/select/invert.html
+%%DATADIR%%/help/C/image/select/none.html
+%%DATADIR%%/help/C/image/select/save_to_channel.html
+%%DATADIR%%/help/C/image/select/sharpen.html
+@exec ln -sf %D/%%DATADIR%%/help/C/toolbox %D/%%DATADIR%%/help/C/image/toolbox
+@unexec rm -f %D/%%DATADIR%%/help/C/image/toolbox
+@exec ln -sf %D/%%DATADIR%%/help/C/tools %D/%%DATADIR%%/help/C/image/tools
+@unexec rm -f %D/%%DATADIR%%/help/C/image/tools
+@exec mkdir -p %D/%%DATADIR%%/help/C/image/view
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/image/view/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/image/view/dialogs
+%%DATADIR%%/help/C/image/view/dot_for_dot.html
+%%DATADIR%%/help/C/image/view/new_view.html
+%%DATADIR%%/help/C/image/view/shrink_wrap.html
+%%DATADIR%%/help/C/image/view/snap_to_guides.html
+%%DATADIR%%/help/C/image/view/toggle_guides.html
+%%DATADIR%%/help/C/image/view/toggle_rulers.html
+%%DATADIR%%/help/C/image/view/toggle_selection.html
+%%DATADIR%%/help/C/image/view/toggle_statusbar.html
+%%DATADIR%%/help/C/image/view/zoom.html
+%%DATADIR%%/help/C/images/add_point.png
+%%DATADIR%%/help/C/images/anchor_layer.png
+%%DATADIR%%/help/C/images/channel_to_selection.png
+%%DATADIR%%/help/C/images/delete_channel.png
+%%DATADIR%%/help/C/images/delete_directory.png
+%%DATADIR%%/help/C/images/delete_layer.png
+%%DATADIR%%/help/C/images/delete_path.png
+%%DATADIR%%/help/C/images/dotted_square.png
+%%DATADIR%%/help/C/images/duplicate_channel.png
+%%DATADIR%%/help/C/images/duplicate_layer.png
+%%DATADIR%%/help/C/images/duplicate_path.png
+%%DATADIR%%/help/C/images/edit_point.png
+%%DATADIR%%/help/C/images/eye.png
+%%DATADIR%%/help/C/images/examples/border-selection-01.png
+%%DATADIR%%/help/C/images/examples/border-selection-02.png
+%%DATADIR%%/help/C/images/glossary/modes-addition.png
+%%DATADIR%%/help/C/images/glossary/modes-color.png
+%%DATADIR%%/help/C/images/glossary/modes-darken.png
+%%DATADIR%%/help/C/images/glossary/modes-difference.png
+%%DATADIR%%/help/C/images/glossary/modes-dissolve.png
+%%DATADIR%%/help/C/images/glossary/modes-divide.png
+%%DATADIR%%/help/C/images/glossary/modes-hue.png
+%%DATADIR%%/help/C/images/glossary/modes-lighten.png
+%%DATADIR%%/help/C/images/glossary/modes-multiply.png
+%%DATADIR%%/help/C/images/glossary/modes-normal.png
+%%DATADIR%%/help/C/images/glossary/modes-normal2.png
+%%DATADIR%%/help/C/images/glossary/modes-overlay.png
+%%DATADIR%%/help/C/images/glossary/modes-saturation.png
+%%DATADIR%%/help/C/images/glossary/modes-screen.png
+%%DATADIR%%/help/C/images/glossary/modes-subtract.png
+%%DATADIR%%/help/C/images/glossary/modes-value.png
+%%DATADIR%%/help/C/images/geezoom.png
+%%DATADIR%%/help/C/images/image_menu.png
+%%DATADIR%%/help/C/images/image_window.png
+%%DATADIR%%/help/C/images/layers_dialog.png
+%%DATADIR%%/help/C/images/layers_example.png
+%%DATADIR%%/help/C/images/layers_menu.png
+%%DATADIR%%/help/C/images/layers_overview.png
+%%DATADIR%%/help/C/images/lower_channel.png
+%%DATADIR%%/help/C/images/lower_directory.png
+%%DATADIR%%/help/C/images/lower_layer.png
+%%DATADIR%%/help/C/images/new_channel.png
+%%DATADIR%%/help/C/images/new_directory.png
+%%DATADIR%%/help/C/images/new_path.png
+%%DATADIR%%/help/C/images/new_point.png
+%%DATADIR%%/help/C/images/path_to_selection.png
+%%DATADIR%%/help/C/images/preview_box.png
+%%DATADIR%%/help/C/images/print_color.png
+%%DATADIR%%/help/C/images/print_main.png
+%%DATADIR%%/help/C/images/print_setup.png
+%%DATADIR%%/help/C/images/raise_channel.png
+%%DATADIR%%/help/C/images/raise_directory.png
+%%DATADIR%%/help/C/images/raise_layer.png
+%%DATADIR%%/help/C/images/red_square.png
+%%DATADIR%%/help/C/images/remove_point.png
+%%DATADIR%%/help/C/images/selection_to_path.png
+%%DATADIR%%/help/C/images/stroke_path.png
+%%DATADIR%%/help/C/images/tool_options.png
+%%DATADIR%%/help/C/images/toolbox.png
+%%DATADIR%%/help/C/images/tools/tool-opt-increment.png
+%%DATADIR%%/help/C/images/tools/tool-opt-nonincrement.png
+%%DATADIR%%/help/C/images/tools/tool_airbrush.png
+%%DATADIR%%/help/C/images/tools/tool_apartheid.png
+%%DATADIR%%/help/C/images/tools/tool_bezier.png
+%%DATADIR%%/help/C/images/tools/tool_blend.png
+%%DATADIR%%/help/C/images/tools/tool_burndodge.png
+%%DATADIR%%/help/C/images/tools/tool_convolver.png
+%%DATADIR%%/help/C/images/tools/tool_crop.png
+%%DATADIR%%/help/C/images/tools/tool_dodgeburn.png
+%%DATADIR%%/help/C/images/tools/tool_ellipse_sel.png
+%%DATADIR%%/help/C/images/tools/tool_eraser.png
+%%DATADIR%%/help/C/images/tools/tool_fill.png
+%%DATADIR%%/help/C/images/tools/tool_flip.png
+%%DATADIR%%/help/C/images/tools/tool_free_sel.png
+%%DATADIR%%/help/C/images/tools/tool_fuzzy_sel.png
+%%DATADIR%%/help/C/images/tools/tool_gradient.png
+%%DATADIR%%/help/C/images/tools/tool_ink.png
+%%DATADIR%%/help/C/images/tools/tool_measure.png
+%%DATADIR%%/help/C/images/tools/tool_move.png
+%%DATADIR%%/help/C/images/tools/tool_paintbrush.png
+%%DATADIR%%/help/C/images/tools/tool_pencil.png
+%%DATADIR%%/help/C/images/tools/tool_picker.png
+%%DATADIR%%/help/C/images/tools/tool_rect_sel.png
+%%DATADIR%%/help/C/images/tools/tool_scissors.png
+%%DATADIR%%/help/C/images/tools/tool_smudge.png
+%%DATADIR%%/help/C/images/tools/tool_smuge.png
+%%DATADIR%%/help/C/images/tools/tool_text.png
+%%DATADIR%%/help/C/images/tools/tool_transform.png
+%%DATADIR%%/help/C/images/tools/tool_zoom.png
+%%DATADIR%%/help/C/images/triangle.png
+%%DATADIR%%/help/C/images/wilber.png
+%%DATADIR%%/help/C/index.html
+%%DATADIR%%/help/C/introduction.html
+%%DATADIR%%/help/C/keyboard_shortcuts.html
+%%DATADIR%%/help/C/layers/add_alpha_channel.html
+%%DATADIR%%/help/C/layers/alpha_to_selection.html
+%%DATADIR%%/help/C/layers/anchor_layer.html
+%%DATADIR%%/help/C/layers/apply_mask.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/layers
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs/layers %D/%%DATADIR%%/help/C/layers/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/layers/dialogs
+%%DATADIR%%/help/C/layers/delete_layer.html
+%%DATADIR%%/help/C/layers/delete_mask.html
+%%DATADIR%%/help/C/layers/duplicate_layer.html
+%%DATADIR%%/help/C/layers/flatten_image.html
+%%DATADIR%%/help/C/layers/index.html
+%%DATADIR%%/help/C/layers/layer_to_image_size.html
+%%DATADIR%%/help/C/layers/mask_to_selection.html
+%%DATADIR%%/help/C/layers/merge_down.html
+%%DATADIR%%/help/C/layers/stack/stack.html
+%%DATADIR%%/help/C/layers/using_layers.html
+%%DATADIR%%/help/C/ln7.html
+%%DATADIR%%/help/C/main_interface.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/open
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/open/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/open/dialogs
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/open/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/open/filters
+%%DATADIR%%/help/C/open/index.html
+%%DATADIR%%/help/C/open/open_by_extension.html
+%%DATADIR%%/help/C/paths/copy_path.html
+%%DATADIR%%/help/C/paths/delete_path.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/paths
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/paths/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/paths/dialogs
+%%DATADIR%%/help/C/paths/duplicate_path.html
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/paths/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/paths/filters
+%%DATADIR%%/help/C/paths/index.html
+%%DATADIR%%/help/C/paths/new_path.html
+%%DATADIR%%/help/C/paths/paste_path.html
+%%DATADIR%%/help/C/paths/path_to_selection.html
+%%DATADIR%%/help/C/paths/stroke_path.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/save
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/save/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/save/dialogs
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/save/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/save/filters
+%%DATADIR%%/help/C/save/index.html
+%%DATADIR%%/help/C/save/save_by_extension.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/toolbox
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/toolbox/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/toolbox/dialogs
+@exec ln -sf %D/%%DATADIR%%/help/C/file %D/%%DATADIR%%/help/C/toolbox/file
+@unexec rm -f %D/%%DATADIR%%/help/C/toolbox/file
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/toolbox/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/toolbox/filters
+%%DATADIR%%/help/C/toolbox/help/context_help.html
+@exec mkdir -p %D/%%DATADIR%%/help/C/toolbox/help
+@exec ln -sf %D/%%DATADIR%%/help/C/dialogs %D/%%DATADIR%%/help/C/toolbox/help/dialogs
+@unexec rm -f %D/%%DATADIR%%/help/C/toolbox/help/dialogs
+@exec ln -sf %D/%%DATADIR%%/help/C/filters %D/%%DATADIR%%/help/C/toolbox/help/filters
+@unexec rm -f %D/%%DATADIR%%/help/C/toolbox/help/filters
+%%DATADIR%%/help/C/stylesheet-images/note.gif
+%%DATADIR%%/help/C/stylesheet-images/tip.gif
+%%DATADIR%%/help/C/stylesheet-images/warning.gif
+%%DATADIR%%/help/C/toolbox/index.html
+%%DATADIR%%/help/C/toolbox/toolbox.html
+%%DATADIR%%/help/C/tools/airbrush.html
+%%DATADIR%%/help/C/tools/bezier_select.html
+%%DATADIR%%/help/C/tools/blend.html
+%%DATADIR%%/help/C/tools/brightness_contrast.html
+%%DATADIR%%/help/C/tools/bucket_fill.html
+%%DATADIR%%/help/C/tools/by_color_select.html
+%%DATADIR%%/help/C/tools/clone.html
+%%DATADIR%%/help/C/tools/color_balance.html
+%%DATADIR%%/help/C/tools/color_picker.html
+%%DATADIR%%/help/C/tools/convolve.html
+%%DATADIR%%/help/C/tools/crop.html
+%%DATADIR%%/help/C/tools/curves.html
+%%DATADIR%%/help/C/tools/dodgeburn.html
+%%DATADIR%%/help/C/tools/ellipse_select.html
+%%DATADIR%%/help/C/tools/eraser.html
+%%DATADIR%%/help/C/tools/flip.html
+%%DATADIR%%/help/C/tools/free_select.html
+%%DATADIR%%/help/C/tools/fuzzy_select.html
+%%DATADIR%%/help/C/tools/histogram.html
+%%DATADIR%%/help/C/tools/hue_saturation.html
+%%DATADIR%%/help/C/tools/index.html
+%%DATADIR%%/help/C/tools/ink.html
+%%DATADIR%%/help/C/tools/intelligent_scissors.html
+%%DATADIR%%/help/C/tools/levels.html
+%%DATADIR%%/help/C/tools/magnify.html
+%%DATADIR%%/help/C/tools/measure.html
+%%DATADIR%%/help/C/tools/move.html
+%%DATADIR%%/help/C/tools/paintbrush.html
+%%DATADIR%%/help/C/tools/pencil.html
+%%DATADIR%%/help/C/tools/posterize.html
+%%DATADIR%%/help/C/tools/rect_select.html
+%%DATADIR%%/help/C/tools/smudge.html
+%%DATADIR%%/help/C/tools/text.html
+%%DATADIR%%/help/C/tools/threshold.html
+%%DATADIR%%/help/C/tools/transform.html
+%%DATADIR%%/help/C/using_gimp.html
+%%DATADIR%%/help/C/why_gimp.html
+%%DATADIR%%/palettes/Bears
+%%DATADIR%%/palettes/Bgold
+%%DATADIR%%/palettes/Blues
+%%DATADIR%%/palettes/Borders
+%%DATADIR%%/palettes/Browns_And_Yellows
+%%DATADIR%%/palettes/Caramel
+%%DATADIR%%/palettes/Cascade
+%%DATADIR%%/palettes/China
+%%DATADIR%%/palettes/Coldfire
+%%DATADIR%%/palettes/Cool_Colors
+%%DATADIR%%/palettes/Cranes
+%%DATADIR%%/palettes/Dark_pastels
+%%DATADIR%%/palettes/Default
+%%DATADIR%%/palettes/Ega
+%%DATADIR%%/palettes/Firecode
+%%DATADIR%%/palettes/Gold
+%%DATADIR%%/palettes/GrayViolet
+%%DATADIR%%/palettes/Grayblue
+%%DATADIR%%/palettes/Grays
+%%DATADIR%%/palettes/Greens
+%%DATADIR%%/palettes/Hilite
+%%DATADIR%%/palettes/Kahki
+%%DATADIR%%/palettes/Lights
+%%DATADIR%%/palettes/Muted
+%%DATADIR%%/palettes/Named_Colors
+%%DATADIR%%/palettes/News3
+%%DATADIR%%/palettes/Op2
+%%DATADIR%%/palettes/Paintjet
+%%DATADIR%%/palettes/Pastels
+%%DATADIR%%/palettes/Plasma
+%%DATADIR%%/palettes/Reds
+%%DATADIR%%/palettes/Reds_And_Purples
+%%DATADIR%%/palettes/Royal
+%%DATADIR%%/palettes/Topographic
+%%DATADIR%%/palettes/Visibone
+%%DATADIR%%/palettes/Visibone2
+%%DATADIR%%/palettes/Volcano
+%%DATADIR%%/palettes/Warm_Colors
+%%DATADIR%%/palettes/Web
+%%DATADIR%%/patterns/3dgreen.pat
+%%DATADIR%%/patterns/Craters.pat
+%%DATADIR%%/patterns/Moonfoot.pat
+%%DATADIR%%/patterns/amethyst.pat
+%%DATADIR%%/patterns/bark.pat
+%%DATADIR%%/patterns/blue.pat
+%%DATADIR%%/patterns/bluegrid.pat
+%%DATADIR%%/patterns/bluesquares.pat
+%%DATADIR%%/patterns/blueweb.pat
+%%DATADIR%%/patterns/brick.pat
+%%DATADIR%%/patterns/burlap.pat
+%%DATADIR%%/patterns/burlwood.pat
+%%DATADIR%%/patterns/choc_swirl.pat
+%%DATADIR%%/patterns/corkboard.pat
+%%DATADIR%%/patterns/cracked.pat
+%%DATADIR%%/patterns/crinklepaper.pat
+%%DATADIR%%/patterns/electric.pat
+%%DATADIR%%/patterns/fibers.pat
+%%DATADIR%%/patterns/granite1.pat
+%%DATADIR%%/patterns/ground1.pat
+%%DATADIR%%/patterns/ice.pat
+%%DATADIR%%/patterns/java.pat
+%%DATADIR%%/patterns/leather.pat
+%%DATADIR%%/patterns/leaves.pat
+%%DATADIR%%/patterns/leopard.pat
+%%DATADIR%%/patterns/lightning.pat
+%%DATADIR%%/patterns/marble1.pat
+%%DATADIR%%/patterns/marble2.pat
+%%DATADIR%%/patterns/marble3.pat
+%%DATADIR%%/patterns/nops.pat
+%%DATADIR%%/patterns/paper.pat
+%%DATADIR%%/patterns/parque1.pat
+%%DATADIR%%/patterns/parque2.pat
+%%DATADIR%%/patterns/parque3.pat
+%%DATADIR%%/patterns/pastel.pat
+%%DATADIR%%/patterns/pine.pat
+%%DATADIR%%/patterns/pink_marble.pat
+%%DATADIR%%/patterns/pool.pat
+%%DATADIR%%/patterns/qube1.pat
+%%DATADIR%%/patterns/rain.pat
+%%DATADIR%%/patterns/recessed.pat
+%%DATADIR%%/patterns/redcube.pat
+%%DATADIR%%/patterns/rock.pat
+%%DATADIR%%/patterns/sky.pat
+%%DATADIR%%/patterns/slate.pat
+%%DATADIR%%/patterns/sm_squares.pat
+%%DATADIR%%/patterns/starfield.pat
+%%DATADIR%%/patterns/stone33.pat
+%%DATADIR%%/patterns/terra.pat
+%%DATADIR%%/patterns/walnut.pat
+%%DATADIR%%/patterns/warning.pat
+%%DATADIR%%/patterns/wood1.pat
+%%DATADIR%%/patterns/wood2.pat
+%%DATADIR%%/patterns/wood3.pat
+%%DATADIR%%/patterns/wood4.pat
+%%DATADIR%%/patterns/wood5.pat
+%%DATADIR%%/scripts/3d-outline.scm
+%%DATADIR%%/scripts/3dTruchet.scm
+%%DATADIR%%/scripts/add-bevel.scm
+%%DATADIR%%/scripts/addborder.scm
+%%DATADIR%%/scripts/alien-glow-arrow.scm
+%%DATADIR%%/scripts/alien-glow-bar.scm
+%%DATADIR%%/scripts/alien-glow-bullet.scm
+%%DATADIR%%/scripts/alien-glow-button.scm
+%%DATADIR%%/scripts/alien-glow-logo.scm
+%%DATADIR%%/scripts/alien-neon-logo.scm
+%%DATADIR%%/scripts/asc2img.scm
+%%DATADIR%%/scripts/basic1-logo.scm
+%%DATADIR%%/scripts/basic2-logo.scm
+%%DATADIR%%/scripts/beavis.jpg
+%%DATADIR%%/scripts/beveled-button.scm
+%%DATADIR%%/scripts/beveled-pattern-arrow.scm
+%%DATADIR%%/scripts/beveled-pattern-bullet.scm
+%%DATADIR%%/scripts/beveled-pattern-button.scm
+%%DATADIR%%/scripts/beveled-pattern-heading.scm
+%%DATADIR%%/scripts/beveled-pattern-hrule.scm
+%%DATADIR%%/scripts/blend-anim.scm
+%%DATADIR%%/scripts/blended-logo.scm
+%%DATADIR%%/scripts/bovinated-logo.scm
+%%DATADIR%%/scripts/camo.scm
+%%DATADIR%%/scripts/carve-it.scm
+%%DATADIR%%/scripts/carved-logo.scm
+%%DATADIR%%/scripts/chalk.scm
+%%DATADIR%%/scripts/chip-away.scm
+%%DATADIR%%/scripts/chrome-it.scm
+%%DATADIR%%/scripts/chrome-logo.scm
+%%DATADIR%%/scripts/circuit.scm
+%%DATADIR%%/scripts/clothify.scm
+%%DATADIR%%/scripts/coffee.scm
+%%DATADIR%%/scripts/comic-logo.scm
+%%DATADIR%%/scripts/coolmetal-logo.scm
+%%DATADIR%%/scripts/copy-visible.scm
+%%DATADIR%%/scripts/crystal-logo.scm
+%%DATADIR%%/scripts/distress_selection.scm
+%%DATADIR%%/scripts/drop-shadow.scm
+%%DATADIR%%/scripts/erase-rows.scm
+%%DATADIR%%/scripts/fade-outline.scm
+%%DATADIR%%/scripts/flatland.scm
+%%DATADIR%%/scripts/font-map.scm
+%%DATADIR%%/scripts/frosty-logo.scm
+%%DATADIR%%/scripts/fuzzyborder.scm
+%%DATADIR%%/scripts/gimp-headers.scm
+%%DATADIR%%/scripts/gimp-labels.scm
+%%DATADIR%%/scripts/glossy.scm
+%%DATADIR%%/scripts/glowing-logo.scm
+%%DATADIR%%/scripts/gradient-bevel-logo.scm
+%%DATADIR%%/scripts/gradient-example.scm
+%%DATADIR%%/scripts/grid-system.scm
+%%DATADIR%%/scripts/hsv-graph.scm
+%%DATADIR%%/scripts/i26-gunya2.scm
+%%DATADIR%%/scripts/image-structure.scm
+%%DATADIR%%/scripts/land.scm
+%%DATADIR%%/scripts/lava.scm
+%%DATADIR%%/scripts/line-nova.scm
+%%DATADIR%%/scripts/mkbrush.scm
+%%DATADIR%%/scripts/neon-logo.scm
+%%DATADIR%%/scripts/news-text.scm
+%%DATADIR%%/scripts/old_photo.scm
+%%DATADIR%%/scripts/perspective-shadow.scm
+%%DATADIR%%/scripts/predator.scm
+%%DATADIR%%/scripts/pupi-button.scm
+%%DATADIR%%/scripts/rendermap.scm
+%%DATADIR%%/scripts/ripply-anim.scm
+%%DATADIR%%/scripts/round-corners.scm
+%%DATADIR%%/scripts/script-fu-util.scm
+%%DATADIR%%/scripts/sel-to-anim-img.scm
+%%DATADIR%%/scripts/select_to_brush.scm
+%%DATADIR%%/scripts/select_to_image.scm
+%%DATADIR%%/scripts/selection-round.scm
+%%DATADIR%%/scripts/slide.scm
+%%DATADIR%%/scripts/sota-chrome-logo.scm
+%%DATADIR%%/scripts/speed-text.scm
+%%DATADIR%%/scripts/sphere.scm
+%%DATADIR%%/scripts/spinning_globe.scm
+%%DATADIR%%/scripts/starburst-logo.scm
+%%DATADIR%%/scripts/starscape-logo.scm
+%%DATADIR%%/scripts/swirltile.scm
+%%DATADIR%%/scripts/swirly-pattern.scm
+%%DATADIR%%/scripts/t-o-p-logo.scm
+%%DATADIR%%/scripts/text-circle.scm
+%%DATADIR%%/scripts/texture.jpg
+%%DATADIR%%/scripts/texture1.jpg
+%%DATADIR%%/scripts/texture2.jpg
+%%DATADIR%%/scripts/texture3.jpg
+%%DATADIR%%/scripts/textured-logo.scm
+%%DATADIR%%/scripts/tileblur.scm
+%%DATADIR%%/scripts/title-header.scm
+%%DATADIR%%/scripts/trochoid.scm
+%%DATADIR%%/scripts/truchet.scm
+%%DATADIR%%/scripts/unsharp-mask.scm
+%%DATADIR%%/scripts/waves-anim.scm
+%%DATADIR%%/scripts/weave.scm
+%%DATADIR%%/scripts/web-browser.scm
+%%DATADIR%%/scripts/xach-effect.scm
+%%DATADIR%%/tips/gimp_conseils.fr.txt
+%%DATADIR%%/tips/gimp_tips.cs.txt
+%%DATADIR%%/tips/gimp_tips.da.txt
+%%DATADIR%%/tips/gimp_tips.de.txt
+%%DATADIR%%/tips/gimp_tips.es.txt
+%%DATADIR%%/tips/gimp_tips.hu.txt
+%%DATADIR%%/tips/gimp_tips.it.txt
+%%DATADIR%%/tips/gimp_tips.ja.txt
+%%DATADIR%%/tips/gimp_tips.ko.txt
+%%DATADIR%%/tips/gimp_tips.lt.txt
+%%DATADIR%%/tips/gimp_tips.pl.txt
+%%DATADIR%%/tips/gimp_tips.ru.txt
+%%DATADIR%%/tips/gimp_tips.sk.txt
+%%DATADIR%%/tips/gimp_tips.sl.txt
+%%DATADIR%%/tips/gimp_tips.txt
+%%DATADIR%%/tips/gimp_tips.tr.txt
+%%DATADIR%%/tips/gimp_tips.uk.txt
+%%DATADIR%%/tips/gimp_tips.zh_CN.txt
+%%DATADIR%%/tips/gimp_tips.zh_TW.txt
+%%DATADIR%%/user_install
+share/locale/ca/LC_MESSAGES/gimp-libgimp.mo
+share/locale/ca/LC_MESSAGES/gimp-script-fu.mo
+share/locale/ca/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/ca/LC_MESSAGES/gimp.mo
+share/locale/cs/LC_MESSAGES/gimp-libgimp.mo
+share/locale/cs/LC_MESSAGES/gimp-script-fu.mo
+share/locale/cs/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/cs/LC_MESSAGES/gimp.mo
+share/locale/da/LC_MESSAGES/gimp-libgimp.mo
+share/locale/da/LC_MESSAGES/gimp-script-fu.mo
+share/locale/da/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/da/LC_MESSAGES/gimp.mo
+share/locale/de/LC_MESSAGES/gimp-libgimp.mo
+share/locale/de/LC_MESSAGES/gimp-script-fu.mo
+share/locale/de/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/de/LC_MESSAGES/gimp.mo
+share/locale/el/LC_MESSAGES/gimp-libgimp.mo
+share/locale/el/LC_MESSAGES/gimp-script-fu.mo
+share/locale/el/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/el/LC_MESSAGES/gimp.mo
+share/locale/en_GB/LC_MESSAGES/gimp-libgimp.mo
+share/locale/en_GB/LC_MESSAGES/gimp-script-fu.mo
+share/locale/en_GB/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/en_GB/LC_MESSAGES/gimp.mo
+share/locale/es/LC_MESSAGES/gimp-libgimp.mo
+share/locale/es/LC_MESSAGES/gimp-script-fu.mo
+share/locale/es/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/es/LC_MESSAGES/gimp.mo
+share/locale/fi/LC_MESSAGES/gimp-libgimp.mo
+share/locale/fi/LC_MESSAGES/gimp-script-fu.mo
+share/locale/fi/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/fi/LC_MESSAGES/gimp.mo
+share/locale/fr/LC_MESSAGES/gimp-libgimp.mo
+share/locale/fr/LC_MESSAGES/gimp-script-fu.mo
+share/locale/fr/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/fr/LC_MESSAGES/gimp.mo
+share/locale/ga/LC_MESSAGES/gimp-libgimp.mo
+share/locale/ga/LC_MESSAGES/gimp-script-fu.mo
+share/locale/ga/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/ga/LC_MESSAGES/gimp.mo
+share/locale/gl/LC_MESSAGES/gimp-libgimp.mo
+share/locale/gl/LC_MESSAGES/gimp-script-fu.mo
+share/locale/gl/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/gl/LC_MESSAGES/gimp.mo
+share/locale/hr/LC_MESSAGES/gimp-libgimp.mo
+share/locale/hr/LC_MESSAGES/gimp-script-fu.mo
+share/locale/hr/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/hr/LC_MESSAGES/gimp.mo
+share/locale/hu/LC_MESSAGES/gimp-libgimp.mo
+share/locale/hu/LC_MESSAGES/gimp-script-fu.mo
+share/locale/hu/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/hu/LC_MESSAGES/gimp.mo
+share/locale/it/LC_MESSAGES/gimp-libgimp.mo
+share/locale/it/LC_MESSAGES/gimp-script-fu.mo
+share/locale/it/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/it/LC_MESSAGES/gimp.mo
+share/locale/ja/LC_MESSAGES/gimp-libgimp.mo
+share/locale/ja/LC_MESSAGES/gimp-script-fu.mo
+share/locale/ja/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/ja/LC_MESSAGES/gimp.mo
+share/locale/ko/LC_MESSAGES/gimp-libgimp.mo
+share/locale/ko/LC_MESSAGES/gimp-script-fu.mo
+share/locale/ko/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/ko/LC_MESSAGES/gimp.mo
+share/locale/lt/LC_MESSAGES/gimp-libgimp.mo
+share/locale/lt/LC_MESSAGES/gimp-script-fu.mo
+share/locale/lt/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/lt/LC_MESSAGES/gimp.mo
+share/locale/nl/LC_MESSAGES/gimp-libgimp.mo
+share/locale/nl/LC_MESSAGES/gimp-script-fu.mo
+share/locale/nl/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/nl/LC_MESSAGES/gimp.mo
+share/locale/nn/LC_MESSAGES/gimp-libgimp.mo
+share/locale/nn/LC_MESSAGES/gimp-script-fu.mo
+share/locale/nn/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/nn/LC_MESSAGES/gimp.mo
+share/locale/no/LC_MESSAGES/gimp-libgimp.mo
+share/locale/no/LC_MESSAGES/gimp-script-fu.mo
+share/locale/no/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/no/LC_MESSAGES/gimp.mo
+share/locale/pl/LC_MESSAGES/gimp-libgimp.mo
+share/locale/pl/LC_MESSAGES/gimp-script-fu.mo
+share/locale/pl/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/pl/LC_MESSAGES/gimp.mo
+share/locale/pt/LC_MESSAGES/gimp-libgimp.mo
+share/locale/pt/LC_MESSAGES/gimp-script-fu.mo
+share/locale/pt/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/pt/LC_MESSAGES/gimp.mo
+share/locale/pt_BR/LC_MESSAGES/gimp-libgimp.mo
+share/locale/pt_BR/LC_MESSAGES/gimp-script-fu.mo
+share/locale/pt_BR/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/pt_BR/LC_MESSAGES/gimp.mo
+share/locale/ro/LC_MESSAGES/gimp-libgimp.mo
+share/locale/ro/LC_MESSAGES/gimp-script-fu.mo
+share/locale/ro/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/ro/LC_MESSAGES/gimp.mo
+share/locale/ru/LC_MESSAGES/gimp-libgimp.mo
+share/locale/ru/LC_MESSAGES/gimp-script-fu.mo
+share/locale/ru/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/ru/LC_MESSAGES/gimp.mo
+share/locale/sk/LC_MESSAGES/gimp-libgimp.mo
+share/locale/sk/LC_MESSAGES/gimp-script-fu.mo
+share/locale/sk/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/sk/LC_MESSAGES/gimp.mo
+share/locale/sl/LC_MESSAGES/gimp-libgimp.mo
+share/locale/sl/LC_MESSAGES/gimp-script-fu.mo
+share/locale/sl/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/sl/LC_MESSAGES/gimp.mo
+share/locale/sv/LC_MESSAGES/gimp-libgimp.mo
+share/locale/sv/LC_MESSAGES/gimp-script-fu.mo
+share/locale/sv/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/sv/LC_MESSAGES/gimp.mo
+share/locale/tr/LC_MESSAGES/gimp-libgimp.mo
+share/locale/tr/LC_MESSAGES/gimp-script-fu.mo
+share/locale/tr/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/tr/LC_MESSAGES/gimp.mo
+share/locale/uk/LC_MESSAGES/gimp-libgimp.mo
+share/locale/uk/LC_MESSAGES/gimp-script-fu.mo
+share/locale/uk/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/uk/LC_MESSAGES/gimp.mo
+share/locale/zh_CN/LC_MESSAGES/gimp-libgimp.mo
+share/locale/zh_CN/LC_MESSAGES/gimp-script-fu.mo
+share/locale/zh_CN/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/zh_CN/LC_MESSAGES/gimp.mo
+share/locale/zh_TW/LC_MESSAGES/gimp-libgimp.mo
+share/locale/zh_TW/LC_MESSAGES/gimp-script-fu.mo
+share/locale/zh_TW/LC_MESSAGES/gimp-std-plugins.mo
+share/locale/zh_TW/LC_MESSAGES/gimp.mo
+@dirrm etc/gimp/1.2
+@dirrm etc/gimp
+@dirrm include/gck
+@dirrm include/libgimp
+@dirrm libexec/gimp/1.2/plug-ins
+@dirrm libexec/gimp/1.2/modules
+@dirrm libexec/gimp/1.2
+@dirrm libexec/gimp
+@dirrm %%DATADIR%%/brushes
+@dirrm %%DATADIR%%/devel-docs/html/libgimp
+@dirrm %%DATADIR%%/devel-docs/html
+@dirrm %%DATADIR%%/devel-docs
+@dirrm %%DATADIR%%/fractalexplorer
+@dirrm %%DATADIR%%/gfig
+@dirrm %%DATADIR%%/gflare
+@dirrm %%DATADIR%%/gimpressionist/Brushes
+@dirrm %%DATADIR%%/gimpressionist/Paper
+@dirrm %%DATADIR%%/gimpressionist/Presets
+@dirrm %%DATADIR%%/gimpressionist
+@dirrm %%DATADIR%%/gradients
+@dirrm %%DATADIR%%/help/C/dialogs/layers
+@dirrm %%DATADIR%%/help/C/dialogs/channels
+@dirrm %%DATADIR%%/help/C/dialogs/paths
+@dirrm %%DATADIR%%/help/C/dialogs/palette_editor
+@dirrm %%DATADIR%%/help/C/dialogs/gradient_editor
+@dirrm %%DATADIR%%/help/C/dialogs/color_selectors
+@dirrm %%DATADIR%%/help/C/dialogs/preferences
+@dirrm %%DATADIR%%/help/C/dialogs
+@dirrm %%DATADIR%%/help/C/stylesheet-images
+@dirrm %%DATADIR%%/help/C/tools
+@dirrm %%DATADIR%%/help/C/layers/stack
+@dirrm %%DATADIR%%/help/C/layers
+@dirrm %%DATADIR%%/help/C/channels
+@dirrm %%DATADIR%%/help/C/paths
+@dirrm %%DATADIR%%/help/C/toolbox/help
+@dirrm %%DATADIR%%/help/C/toolbox
+@dirrm %%DATADIR%%/help/C/images/examples
+@dirrm %%DATADIR%%/help/C/images/glossary
+@dirrm %%DATADIR%%/help/C/images/tools
+@dirrm %%DATADIR%%/help/C/images
+@dirrm %%DATADIR%%/help/C/image/edit
+@dirrm %%DATADIR%%/help/C/image/select
+@dirrm %%DATADIR%%/help/C/image/view
+@dirrm %%DATADIR%%/help/C/image/image/colors/auto
+@dirrm %%DATADIR%%/help/C/image/image/colors
+@dirrm %%DATADIR%%/help/C/image/image/mode
+@dirrm %%DATADIR%%/help/C/image/image/transforms
+@dirrm %%DATADIR%%/help/C/image/image
+@dirrm %%DATADIR%%/help/C/image
+@dirrm %%DATADIR%%/help/C/open
+@dirrm %%DATADIR%%/help/C/save
+@dirrm %%DATADIR%%/help/C/filters
+@dirrm %%DATADIR%%/help/C/file
+@dirrm %%DATADIR%%/help/C
+@dirrm %%DATADIR%%/help
+@dirrm %%DATADIR%%/palettes
+@dirrm %%DATADIR%%/patterns
+@dirrm %%DATADIR%%/scripts
+@dirrm %%DATADIR%%/tips
+@dirrm %%DATADIR%%