diff options
-rw-r--r-- | graphics/gimp-current/Makefile | 39 | ||||
-rw-r--r-- | graphics/gimp-current/files/md5 | 3 | ||||
-rw-r--r-- | graphics/gimp-current/files/patch-sum | 9 | ||||
-rw-r--r-- | graphics/gimp-current/files/pdb_self_doc.c | 180 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-aa | 38 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-ab | 17 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-ac | 34 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-ad | 21 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-ae | 17 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-af | 14 | ||||
-rw-r--r-- | graphics/gimp-current/patches/patch-ag | 13 | ||||
-rw-r--r-- | graphics/gimp-current/pkg/COMMENT | 1 | ||||
-rw-r--r-- | graphics/gimp-current/pkg/DESCR | 6 | ||||
-rw-r--r-- | graphics/gimp-current/pkg/PLIST | 1144 |
14 files changed, 1536 insertions, 0 deletions
diff --git a/graphics/gimp-current/Makefile b/graphics/gimp-current/Makefile new file mode 100644 index 00000000000..ce569137d6d --- /dev/null +++ b/graphics/gimp-current/Makefile @@ -0,0 +1,39 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/11/27 04:08:31 hubertf Exp $ + +DISTNAME= gimp-1.1.13 +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.13/ \ + ftp://infosoc.uni-koeln.de/pub/ftp.gimp.org/pub/gimp/unstable/v1.1.13/ \ + ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.13/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.gimp.org/ + +DEPENDS+= jpeg-6b:../../graphics/jpeg +DEPENDS+= gtk+-1.2.*:../../x11/gtk +DEPENDS+= mpeg-1.2.1:../../graphics/mpeg-lib +DEPENDS+= png-1.0.3:../../graphics/png +DEPENDS+= tiff-*:../../graphics/tiff +DEPENDS+= xpm-3.4k:../../graphics/xpm +DEPENDS+= gettext-0.10.35:../../devel/gettext + +USE_X11BASE= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-gtk-prefix=${X11BASE} \ + --disable-perl \ + --disable-python +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" + +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +PLIST_SUBST+= LOCALBASE=${LOCALBASE} + +post-install: + ${TEST} ${PREFIX} = ${LOCALBASE} || \ + ${LN} -fs ${PREFIX}/share/aclocal/gimp.m4 \ + ${LOCALBASE}/share/aclocal/gimp.m4 + +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/gimp-current/files/md5 b/graphics/gimp-current/files/md5 new file mode 100644 index 00000000000..51322bad7fc --- /dev/null +++ b/graphics/gimp-current/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +MD5 (gimp-1.1.13.tar.bz2) = 092d118a57f37eeb4b2fcd2dccbdb245 diff --git a/graphics/gimp-current/files/patch-sum b/graphics/gimp-current/files/patch-sum new file mode 100644 index 00000000000..00c4f0a5259 --- /dev/null +++ b/graphics/gimp-current/files/patch-sum @@ -0,0 +1,9 @@ +$NetBSD: patch-sum,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +MD5 (patch-aa) = 892f8843394bd39ab54811de38d9e08f +MD5 (patch-ab) = e84a3fa8448a9574cf2f8efbbb5e5140 +MD5 (patch-ac) = 2b688e4ce5da5794af580957219d6a99 +MD5 (patch-ad) = 1c8d3910d553cc38f07ea6482f7348ba +MD5 (patch-ae) = 41944640063bf3b26c67dfe3fc3b2e2d +MD5 (patch-af) = c650297e60ef133bda47ef4263e544f6 +MD5 (patch-ag) = feeb364e09b5ce09c616fe9c5fcae16e diff --git a/graphics/gimp-current/files/pdb_self_doc.c b/graphics/gimp-current/files/pdb_self_doc.c new file mode 100644 index 00000000000..8906b66dddd --- /dev/null +++ b/graphics/gimp-current/files/pdb_self_doc.c @@ -0,0 +1,180 @@ +/* $NetBSD: pdb_self_doc.c,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ */ + +/* + * C version of pdb_self_doc.el, makes some assumptions about the structure + * of the pdb_dump file. + * + * Author: Todd Vierling <tv@pobox.com> + * Copyright: Do whatever you want with this code. I offer no guarantee or + * warranty of any kind. + */ + +#include <ctype.h> +#ifdef __NetBSD__ +#include <err.h> +#endif +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#ifndef __NetBSD__ +#include <stdarg.h> +void errx (int rc, char *fmt,...) +{ + va_list ap; + + va_start (ap, fmt); + fputs ("pdb_self_doc: ", stderr); + vfprintf (stderr, fmt, ap); + exit (rc); +} +#endif + +int depth, line; + +static struct ioarg { + struct ioarg *next; + char *hlist[3]; +} **curioargs, *curioarg; + +static struct procedure { + char *hlist[7]; + struct ioarg *iargs; + struct ioarg *oargs; +} procs[800], *curproc; + +static char **hlist; + +int hnum, hmax, inum, onum, iomode; +int nprocs; + +#define wsspan(p) strspn(p, " \t\r\n") + +static char *strndup(const char *x, int len) { + char *p = malloc(len + 1); + strncpy(p, x, len); + p[len] = 0; + return p; +} + +static int proccompar(const void *a, const void *b) { + return strcmp(((struct procedure *)a)->hlist[0], + ((struct procedure *)b)->hlist[0]); +} + +int main(int argc, char **argv) { + char buf[65536], *p; + int i; + + while (fgets(buf, 65536, stdin)) { + line++; + p = buf + wsspan(buf); + + while (*p) { + if (*p == '(') { + depth++; + p++; + if (!curproc && depth > 1) + errx(1, "depth > 1 without register-procedure on line %d\n", line); + if (depth > 3) + errx(1, "depth > 3 on line %d\n", line); + if (depth == 1) { + hnum = 0; + hmax = 7; + } else if (depth == 2) { + hmax = 3; + if (++iomode > 1) + curioargs = &curproc->oargs; + else + curioargs = &curproc->iargs; + } else if (depth == 3) { + struct ioarg *arg = calloc(1, sizeof(*arg)); + *curioargs = curioarg = arg; + curioargs = &arg->next; + hnum = 0; + hlist = arg->hlist; + } + } else if (*p == ')') { + depth--; + p++; + if (depth == 0) { + hnum = hmax = inum = onum = iomode = 0; + curproc = NULL; + hlist = NULL; + } else if (depth == 1) { + curioargs = NULL; + } else if (depth == 2) { + curioarg = NULL; + } + } else if (*p == '\"') { + char *eq = ++p, *neq; + + if ((depth != 1) && (depth != 3)) + errx(1, "string with depth != 1 or 3 on line %d: %s\n", line, --p); + if (!curproc) + errx(1, "string without register-procedure on line %d\n", line); + if (hnum >= hmax) + errx(1, "too many strings on line %d\n", line); + + while ((neq = strchr(eq, '\"')) && (neq > p) && (neq[-1] == '\\')) { + strcpy(neq - 1, neq); + eq = neq; + } + if (!neq) { + --p; + if (!fgets(buf + strlen(buf), 65536 - strlen(buf), stdin)) + errx(1, "EOF in string at line %d\n", line); + continue; + } + + hlist[hnum++] = strndup(p, neq - p); + p = ++neq; + } else if (!strncmp(p, "register-procedure", 18)) { + if (depth != 1) + errx(1, "register-procedure at depth %d, line %d\n", depth, line); + p += 18; + curproc = &procs[nprocs++]; + hlist = curproc->hlist; + } else { + errx(1, "unknown token on line: %s\n", line, p); + } + p += wsspan(p); + } + } + + qsort(procs, nprocs, sizeof(procs[0]), proccompar); + + for (i = 0; i < nprocs; i++) { + struct ioarg *arg; + + printf("@defun %s ", procs[i].hlist[0]); + for (arg = procs[i].iargs; arg; arg = arg->next) { + if (arg->next) + printf("%s, ", arg->hlist[0]); + else + printf("%s", arg->hlist[0]); + } + printf("\n%s--@strong{%s}", procs[i].hlist[2], procs[i].hlist[6]); + if (procs[i].iargs) { + puts("\n\n@strong{Inputs}\n@itemize @bullet"); + for (arg = procs[i].iargs; arg; arg = arg->next) { + arg->hlist[2][0] = toupper(arg->hlist[2][0]); + printf("@item @emph{%s} (%s)--%s\n", arg->hlist[0], + arg->hlist[1], arg->hlist[2]); + } + puts("@end itemize"); + } + if (procs[i].oargs) { + puts("\n\n@strong{Outputs}\n@itemize @bullet"); + for (arg = procs[i].oargs; arg; arg = arg->next) { + arg->hlist[2][0] = toupper(arg->hlist[2][0]); + printf("@item @emph{%s} (%s)--%s\n", arg->hlist[0], + arg->hlist[1], arg->hlist[2]); + } + puts("@end itemize"); + } + printf("@end defun\n@emph{%s}\n\n", procs[i].hlist[3]); + } + + return 0; +} diff --git a/graphics/gimp-current/patches/patch-aa b/graphics/gimp-current/patches/patch-aa new file mode 100644 index 00000000000..f9df524c6ce --- /dev/null +++ b/graphics/gimp-current/patches/patch-aa @@ -0,0 +1,38 @@ +$NetBSD: patch-aa,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- configure.orig Thu Nov 25 21:24:04 1999 ++++ configure Fri Nov 26 16:05:46 1999 +@@ -668,7 +668,7 @@ + # It thinks the first close brace ends the variable substitution. + test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' ++test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +@@ -1354,6 +1354,7 @@ + fi + + ++if false; then + # Check for any special flags to pass to ltconfig. + libtool_flags="--cache-file=$cache_file" + test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared" +@@ -1507,6 +1508,7 @@ + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++fi + + # Redirect the config.log output again, so that the ltconfig log is not + # clobbered by the next message. +@@ -4657,7 +4659,7 @@ + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-ltiff -lm $LIBS" ++LIBS="-ltiff -lz -ljpeg -lm $LIBS" + cat > conftest.$ac_ext <<EOF + #line 4663 "configure" + #include "confdefs.h" diff --git a/graphics/gimp-current/patches/patch-ab b/graphics/gimp-current/patches/patch-ab new file mode 100644 index 00000000000..5adfa2bfbc5 --- /dev/null +++ b/graphics/gimp-current/patches/patch-ab @@ -0,0 +1,17 @@ +$NetBSD: patch-ab,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- plug-ins/common/mail.c.orig Fri Nov 26 16:07:27 1999 ++++ plug-ins/common/mail.c Fri Nov 26 16:08:37 1999 +@@ -92,7 +92,12 @@ + * + */ + #ifndef MAILER ++#ifdef __NetBSD__ ++#include <paths.h> ++#define MAILER _PATH_SENDMAIL ++#else /* !__NetBSD__ */ + #define MAILER "/usr/lib/sendmail" ++#endif /* __NetBSD__ */ + #endif + + #ifndef UUENCODE diff --git a/graphics/gimp-current/patches/patch-ac b/graphics/gimp-current/patches/patch-ac new file mode 100644 index 00000000000..1ed1aa9f4d2 --- /dev/null +++ b/graphics/gimp-current/patches/patch-ac @@ -0,0 +1,34 @@ +$NetBSD: patch-ac,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- docs/Makefile.in.orig Sat Nov 27 02:01:55 1999 ++++ docs/Makefile.in Sat Nov 27 02:00:13 1999 +@@ -357,7 +357,7 @@ + install-exec-am: + install-exec: install-exec-am + +-install-data-am: install-info-am ++install-data-am: #HF# install-info-am + install-data: install-data-am + + install-am: all-am +@@ -365,7 +365,7 @@ + install: install-am + uninstall-am: uninstall-info + uninstall: uninstall-am +-all-am: Makefile $(INFO_DEPS) ++all-am: Makefile #HF# $(INFO_DEPS) + all-redirect: all-am + install-strip: + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install +@@ -412,9 +412,8 @@ + maintainer-clean-generic clean mostlyclean distclean maintainer-clean + + +-pdb_dump.texi: $(srcdir)/pdb_self_doc.el $(srcdir)/pdb_dump +- cd $(srcdir) && \ +- @EMACS@ --batch -l pdb_self_doc.el -f make-docs-noargs ++pdb_dump.texi: $(srcdir)/pdb_self_doc $(srcdir)/pdb_dump ++ $(srcdir)/pdb_self_doc <$(srcdir)/pdb_dump >pdb_dump.texi + + $(srcdir)/pdb_dump: $(top_srcdir)/app/*.c + $(top_builddir)/app/gimp --no-interface --batch '(gimp-procedural-db-dump "pdb_dump.tmp")' '(gimp-quit 0)' diff --git a/graphics/gimp-current/patches/patch-ad b/graphics/gimp-current/patches/patch-ad new file mode 100644 index 00000000000..19306677a63 --- /dev/null +++ b/graphics/gimp-current/patches/patch-ad @@ -0,0 +1,21 @@ +$NetBSD: patch-ad,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- libgimp/Makefile.in.orig Thu Nov 25 21:31:40 1999 ++++ libgimp/Makefile.in Fri Nov 26 16:35:36 1999 +@@ -207,11 +207,14 @@ + gimpinclude_HEADERS = color_display.h color_selector.h gimp.h gimpchainbutton.h gimpcolorbutton.h gimpcompat.h gimpenums.h gimpenv.h gimpexport.h gimpfeatures.h gimpfileselection.h gimplimits.h gimpmath.h gimpmatrix.h gimpmenu.h gimpmodule.h gimppatheditor.h gimpsizeentry.h gimpui.h gimpunit.h gimpunitmenu.h gimpintl.h gserialize.h parasite.h parasiteF.h parasiteP.h parasiteio.h + + +-libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++#HF# No idea which of -version-info and -release to add... guess! ++#HF#libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + + libgimp_la_LIBADD = $(GLIB_LIBS) -lm + +-libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++#HF#libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + + libgimpui_la_LIBADD = $(GTK_LIBS) + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/graphics/gimp-current/patches/patch-ae b/graphics/gimp-current/patches/patch-ae new file mode 100644 index 00000000000..31b754a2cb5 --- /dev/null +++ b/graphics/gimp-current/patches/patch-ae @@ -0,0 +1,17 @@ +$NetBSD: patch-ae,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- app/Makefile.in.orig Thu Nov 25 21:31:45 1999 ++++ app/Makefile.in Fri Nov 26 16:43:03 1999 +@@ -190,10 +190,10 @@ + gimp_SOURCES = about_dialog.c about_dialog.h airbrush.c airbrush.h airbrush_blob.c airbrush_blob.h app_procs.c app_procs.h appenv.h apptypes.h asupsample.c asupsample.h batch.c batch.h bezier_select.c bezier_select.h bezier_selectP.h blend.c blend.h blob.c blob.h boundary.c boundary.h boundaryF.h brightness_contrast.c brightness_contrast.h brush_edit.c brush_edit.h brush_header.h brush_scale.c brush_scale.h brush_select.c brush_select.h brush_select_cmds.c brushes_cmds.c bucket_fill.c bucket_fill.h buildmenu.c buildmenu.h by_color_select.c by_color_select.h channel.c channel.h channel_pvt.h channel_cmds.c channels_dialog.c channels_dialog.h channel_ops.c channel_ops.h channel_ops_cmds.c clone.c clone.h color_area.c color_area.h color_balance.c color_balance.h color_cmds.c color_notebook.c color_notebook.h color_panel.c color_panel.h color_picker.c color_picker.h color_select.c color_select.h color_transfer.c color_transfer.h colormaps.c colormaps.h colormap_dialog.c colormap_dialog.h commands.c commands.h context_manager.c context_manager.h convert.c convert.h convert_cmds.c convolve.c convolve.h crop.c crop.h cursorutil.c cursorutil.h curves.c curves.h datafiles.c datafiles.h desaturate.c desaturate.h devices.c devices.h dialog_types.h dialog_handler.c dialog_handler.h disp_callbacks.c disp_callbacks.h docindex.c docindex.h docindexif.c docindexif.h dodgeburn.c dodgeburn.h draw_core.c draw_core.h drawable.c drawable.h drawable_pvt.h drawable_cmds.c edit_cmds.c edit_selection.c edit_selection.h ellipse_select.c ellipse_select.h eraser.c eraser.h errorconsole.c errorconsole.h errors.c errors.h equalize.c equalize.h fileops.c fileops.h fileops_cmds.c flip_tool.c flip_tool.h floating_sel.c floating_sel.h floating_sel_cmds.c file_new_dialog.c file_new_dialog.h free_select.c free_select.h fsdither.h fuzzy_select.c fuzzy_select.h gdisplay.c gdisplay.h gdisplayP.h gdisplayF.h gdisplay_color.c gdisplay_color.h gdisplay_color_ui.c gdisplay_color_ui.h gdisplay_cmds.c gdisplay_ops.c gdisplay_ops.h general.c general.h gimage.c gimage.h gimage_cmds.c gimage_mask.c gimage_mask.h gimage_mask_cmds.c gimpbrush.c gimpbrush.h gimpbrushgenerated.c gimpbrushgenerated.h gimpbrushlist.c gimpbrushlist.h gimpbrushlistF.h gimpbrushlistP.h gimpbrushpipe.c gimpbrushpipe.h gimpbrushpipeP.h gimpcontext.c gimpcontext.h gimpcontextpreview.c gimpcontextpreview.h gimpdnd.c gimpdnd.h gimphelp.c gimphelp.h gimphistogram.c gimphistogram.h gimphistogramP.h gimphistogramF.h gimplist.c gimplist.h gimplistF.h gimplistP.h gimplut.c gimplut.h gimplutF.h gimplutP.h gimpparasite.c gimpparasite.h gimpprogress.c gimpprogress.h gimprc.c gimprc.h gimprc_cmds.c gimpui.c gimpui.h gimpunit.c global_edit.c global_edit.h gradient.c gradientP.h gradient_header.h gradient_select.h gradient_select.c gradient_select_cmds.c gradient.h gradient_cmds.c gtkwrapbox.c gtkwrapbox.h gtkhwrapbox.c gtkhwrapbox.h gtkvwrapbox.c gtkvwrapbox.h guides_cmds.c gximage.c gximage.h histogramwidget.c histogramwidget.h histogram_tool.c histogram_tool.h hue_saturation.c hue_saturation.h image_map.c image_map.h image_new.c image_new.h image_render.c image_render.h indicator_area.c indicator_area.h info_dialog.c info_dialog.h info_window.c info_window.h ink.c ink.h install.c install.h interface.c interface.h interface_cmds.c internal_procs.c internal_procs.h invert.c invert.h iscissors.c iscissors.h layer.c layer.h layerF.h layer_pvt.h layer_cmds.c layer_select.c layer_select.h layers_dialog.c layers_dialog.h layers_dialogP.h lc_dialog.c lc_dialog.h lc_dialogP.h levels.c levels.h lut_funcs.c lut_funcs.h magnify.c magnify.h main.c marching_ants.h measure.c measure.h menus.c menus.h misc_cmds.c module_db.c module_db.h move.c move.h nav_window.c nav_window.h ops_buttons.c ops_buttons.h palette.c palette_entries.h palette.h palette_cmds.c palette_select.c palette_select.h paletteP.h paint_core.c paint_core.h paint_funcs.c paint_funcs.h paint_options.h paintbrush.c paintbrush.h parasite_cmds.c parasitelist.c parasitelist.h parasitelistF.h parasitelistP.h path_bezier.c path_bezier.h path_curves.c path_curves.h path_tool.c path_tool.h path_toolP.h paths_cmds.c paths_dialog.c paths_dialog.h paths_dialogP.h pathsP.h pattern_header.h pattern_select.c pattern_select.h pattern_select_cmds.c patterns.c patterns.h patterns_cmds.c pencil.c pencil.h perspective_tool.c perspective_tool.h pixel_processor.c pixel_processor.h pixel_region.c pixel_region.h pixel_regionP.h pixmaps.h pixmaps2.h plug_in.c plug_in.h plug_in_cmds.c posterize.c posterize.h preferences_dialog.c preferences_dialog.h procedural_db.c procedural_db.h procedural_db_cmds.c qmask.c qmask.h rect_select.c rect_select.h rect_selectP.h regex.h regex.c resize.c resize.h rotate_tool.c rotate_tool.h scale.c scale.h scale_tool.c scale_tool.h scan_convert.c scan_convert.h scroll.c scroll.h selection.c selection.h selection_options.h session.h session.c shear_tool.c shear_tool.h smudge.c smudge.h temp_buf.c temp_buf.h text_tool.c text_tool.h text_tool_cmds.c threshold.c threshold.h tile.c tile.h tile_pvt.h tile_cache.c tile_cache.h tile_manager.c tile_manager.h tile_manager_pvt.h tile_swap.c tile_swap.h tips_dialog.c tips_dialog.h tool_options.c tool_options.h tool_options_ui.h tools.c tools.h toolsF.h tools_cmds.c transform_core.c transform_core.h transform_tool.c transform_tool.h undo.c undo.h undo_cmds.c undo_history.c undo_types.h unitrc.h unit_cmds.c wilber.h vector2d.c vector2d.h xcf.c xcf.h xinput_airbrush.c xinput_airbrush.h + + +-EXTRA_DIST = colormap_dialog.i.c colormap_dialog.i.h colormap_dialog.p.h colormap_dialog.t.h makefile.cygwin makefile.msc gimp.rc gimp.sym wilber.ico ++EXTRA_DIST = colormap_dialog.i.c colormap_dialog.i.h colormap_dialog.p.h colormap_dialog.t.h makefile.cygwin makefile.msc gimp.rc wilber.ico + + +-gimp_LDFLAGS = -export-dynamic -export-symbols $(srcdir)/gimp.sym ++gimp_LDFLAGS = -export-dynamic + + AM_CPPFLAGS = -DLIBDIR=\""$(gimpplugindir)"\" -DLOCALEDIR=\""$(localedir)"\" -DREGEX_MALLOC @GIMP_THREAD_FLAGS@ @GIMP_MP_FLAGS@ + diff --git a/graphics/gimp-current/patches/patch-af b/graphics/gimp-current/patches/patch-af new file mode 100644 index 00000000000..a3d9a680c83 --- /dev/null +++ b/graphics/gimp-current/patches/patch-af @@ -0,0 +1,14 @@ +$NetBSD: patch-af,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- plug-ins/libgck/gck/Makefile.in.BAK Fri Nov 26 16:44:57 1999 ++++ plug-ins/libgck/gck/Makefile.in Fri Nov 26 16:45:09 1999 +@@ -189,7 +189,8 @@ + gckinclude_HEADERS = gck.h gckcolor.h gckcommon.h gckimage.h gcklistbox.h gckmath.h gcktypes.h gckui.h gckvector.h + + +-libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++#HF#libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + + + INCLUDES = -I.. -I$(srcdir)/.. -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir) diff --git a/graphics/gimp-current/patches/patch-ag b/graphics/gimp-current/patches/patch-ag new file mode 100644 index 00000000000..5dbcaa6e29b --- /dev/null +++ b/graphics/gimp-current/patches/patch-ag @@ -0,0 +1,13 @@ +$NetBSD: patch-ag,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ + +--- plug-ins/common/Makefile.in.orig Thu Nov 25 21:32:25 1999 ++++ plug-ins/common/Makefile.in Fri Nov 26 21:18:39 1999 +@@ -106,7 +106,7 @@ + INCLUDE_LOCALE_H = @INCLUDE_LOCALE_H@ + INSTOBJEXT = @INSTOBJEXT@ + INTLDEPS = @INTLDEPS@ +-INTLLIBS = @INTLLIBS@ ++INTLLIBS = @INTLLIBS@ -lintl # ENOCLUE why this is not set - HF + INTLOBJS = @INTLOBJS@ + IN_GIMP = @IN_GIMP@ + JPEG = @JPEG@ diff --git a/graphics/gimp-current/pkg/COMMENT b/graphics/gimp-current/pkg/COMMENT new file mode 100644 index 00000000000..5ebd0767395 --- /dev/null +++ b/graphics/gimp-current/pkg/COMMENT @@ -0,0 +1 @@ +Image manipulation program similar to Photoshop[tm] diff --git a/graphics/gimp-current/pkg/DESCR b/graphics/gimp-current/pkg/DESCR new file mode 100644 index 00000000000..47c43df65ae --- /dev/null +++ b/graphics/gimp-current/pkg/DESCR @@ -0,0 +1,6 @@ +Powerful image manipulation program similar to "Adobe Photoshop"[tm]. +It supports layers, arbitrary image sizes and working on several images +at the same time. It comes with a lot of useful plug-ins. Missing is CMYK +support and more then 8 bits per channel. + +This is the development version of pkgsrc/graphics/gimp. diff --git a/graphics/gimp-current/pkg/PLIST b/graphics/gimp-current/pkg/PLIST new file mode 100644 index 00000000000..6849508ba57 --- /dev/null +++ b/graphics/gimp-current/pkg/PLIST @@ -0,0 +1,1144 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 1999/11/27 04:08:32 hubertf Exp $ +bin/gimp +bin/gimptool +include/libgimp/gimp.h +include/libgimp/gimpenums.h +include/libgimp/gimpfeatures.h +include/libgimp/gimpmenu.h +include/libgimp/gimpui.h +include/libgimp/color_display.h +include/libgimp/color_selector.h +include/libgimp/gimpchainbutton.h +include/libgimp/gimpcolorbutton.h +include/libgimp/gimpcompat.h +include/libgimp/gimpenv.h +include/libgimp/gimpexport.h +include/libgimp/gimpfileselection.h +include/libgimp/gimplimits.h +include/libgimp/gimpmath.h +include/libgimp/gimpmatrix.h +include/libgimp/gimpmodule.h +include/libgimp/gimppatheditor.h +include/libgimp/gimpsizeentry.h +include/libgimp/gimpunit.h +include/libgimp/gimpintl.h +include/libgimp/gimpunitmenu.h +include/libgimp/gserialize.h +include/libgimp/parasite.h +include/libgimp/parasiteF.h +include/libgimp/parasiteP.h +include/libgimp/parasiteio.h +include/gck/gck.h +include/gck/gckcolor.h +include/gck/gckcommon.h +include/gck/gckimage.h +include/gck/gcklistbox.h +include/gck/gckmath.h +include/gck/gcktypes.h +include/gck/gckui.h +include/gck/gckvector.h +lib/libgck.a +lib/libmegawidget.a +lib/libgpc.a +lib/gimp/1.1/plug-ins/dbbrowser +lib/gimp/1.1/plug-ins/script-fu +lib/gimp/1.1/plug-ins/AlienMap +lib/gimp/1.1/plug-ins/AlienMap2 +lib/gimp/1.1/plug-ins/FractalExplorer +lib/gimp/1.1/plug-ins/Lighting +lib/gimp/1.1/plug-ins/MapObject +lib/gimp/1.1/plug-ins/bmp +lib/gimp/1.1/plug-ins/borderaverage +lib/gimp/1.1/plug-ins/faxg3 +lib/gimp/1.1/plug-ins/fits +lib/gimp/1.1/plug-ins/flame +lib/gimp/1.1/plug-ins/fp +lib/gimp/1.1/plug-ins/gap_plugins +lib/gimp/1.1/plug-ins/gap_filter +lib/gimp/1.1/plug-ins/gdyntext +lib/gimp/1.1/plug-ins/gfig +lib/gimp/1.1/plug-ins/gflare +lib/gimp/1.1/plug-ins/gfli +lib/gimp/1.1/plug-ins/gimpressionist +lib/gimp/1.1/plug-ins/ifscompose +lib/gimp/1.1/plug-ins/imagemap +lib/gimp/1.1/plug-ins/maze +lib/gimp/1.1/plug-ins/mosaic +lib/gimp/1.1/plug-ins/pagecurl +lib/gimp/1.1/plug-ins/print +lib/gimp/1.1/plug-ins/rcm +lib/gimp/1.1/plug-ins/sgi +lib/gimp/1.1/plug-ins/sel2path +lib/gimp/1.1/plug-ins/sinus +lib/gimp/1.1/plug-ins/struc +lib/gimp/1.1/plug-ins/unsharp +lib/gimp/1.1/plug-ins/webbrowser +lib/gimp/1.1/plug-ins/xjt +lib/gimp/1.1/plug-ins/CEL +lib/gimp/1.1/plug-ins/CML_explorer +lib/gimp/1.1/plug-ins/align_layers +lib/gimp/1.1/plug-ins/animationplay +lib/gimp/1.1/plug-ins/animoptimize +lib/gimp/1.1/plug-ins/apply_lens +lib/gimp/1.1/plug-ins/autocrop +lib/gimp/1.1/plug-ins/autostretch_hsv +lib/gimp/1.1/plug-ins/blinds +lib/gimp/1.1/plug-ins/blur +lib/gimp/1.1/plug-ins/bumpmap +lib/gimp/1.1/plug-ins/bz2 +lib/gimp/1.1/plug-ins/c_astretch +lib/gimp/1.1/plug-ins/checkerboard +lib/gimp/1.1/plug-ins/color_enhance +lib/gimp/1.1/plug-ins/colorify +lib/gimp/1.1/plug-ins/colortoalpha +lib/gimp/1.1/plug-ins/compose +lib/gimp/1.1/plug-ins/convmatrix +lib/gimp/1.1/plug-ins/csource +lib/gimp/1.1/plug-ins/cubism +lib/gimp/1.1/plug-ins/curve_bend +lib/gimp/1.1/plug-ins/decompose +lib/gimp/1.1/plug-ins/deinterlace +lib/gimp/1.1/plug-ins/depthmerge +lib/gimp/1.1/plug-ins/despeckle +lib/gimp/1.1/plug-ins/destripe +lib/gimp/1.1/plug-ins/diffraction +lib/gimp/1.1/plug-ins/displace +lib/gimp/1.1/plug-ins/edge +lib/gimp/1.1/plug-ins/emboss +lib/gimp/1.1/plug-ins/engrave +lib/gimp/1.1/plug-ins/exchange +lib/gimp/1.1/plug-ins/film +lib/gimp/1.1/plug-ins/flarefx +lib/gimp/1.1/plug-ins/fractaltrace +lib/gimp/1.1/plug-ins/gauss_iir +lib/gimp/1.1/plug-ins/gauss_rle +lib/gimp/1.1/plug-ins/gbr +lib/gimp/1.1/plug-ins/gee +lib/gimp/1.1/plug-ins/gicon +lib/gimp/1.1/plug-ins/gif +lib/gimp/1.1/plug-ins/gifload +lib/gimp/1.1/plug-ins/glasstile +lib/gimp/1.1/plug-ins/gpb +lib/gimp/1.1/plug-ins/gqbist +lib/gimp/1.1/plug-ins/gradmap +lib/gimp/1.1/plug-ins/grid +lib/gimp/1.1/plug-ins/gtm +lib/gimp/1.1/plug-ins/guillotine +lib/gimp/1.1/plug-ins/gz +lib/gimp/1.1/plug-ins/header +lib/gimp/1.1/plug-ins/hot +lib/gimp/1.1/plug-ins/hrz +lib/gimp/1.1/plug-ins/illusion +lib/gimp/1.1/plug-ins/iwarp +lib/gimp/1.1/plug-ins/jigsaw +lib/gimp/1.1/plug-ins/jpeg +lib/gimp/1.1/plug-ins/laplace +lib/gimp/1.1/plug-ins/lic +lib/gimp/1.1/plug-ins/mail +lib/gimp/1.1/plug-ins/mapcolor +lib/gimp/1.1/plug-ins/max_rgb +lib/gimp/1.1/plug-ins/mblur +lib/gimp/1.1/plug-ins/mpeg +lib/gimp/1.1/plug-ins/newsprint +lib/gimp/1.1/plug-ins/nlfilt +lib/gimp/1.1/plug-ins/noisify +lib/gimp/1.1/plug-ins/normalize +lib/gimp/1.1/plug-ins/nova +lib/gimp/1.1/plug-ins/oilify +lib/gimp/1.1/plug-ins/papertile +lib/gimp/1.1/plug-ins/pat +lib/gimp/1.1/plug-ins/pcx +lib/gimp/1.1/plug-ins/pix +lib/gimp/1.1/plug-ins/pixelize +lib/gimp/1.1/plug-ins/plasma +lib/gimp/1.1/plug-ins/plugindetails +lib/gimp/1.1/plug-ins/png +lib/gimp/1.1/plug-ins/pnm +lib/gimp/1.1/plug-ins/polar +lib/gimp/1.1/plug-ins/ps +lib/gimp/1.1/plug-ins/psd +lib/gimp/1.1/plug-ins/psp +lib/gimp/1.1/plug-ins/randomize +lib/gimp/1.1/plug-ins/ripple +lib/gimp/1.1/plug-ins/rotate +lib/gimp/1.1/plug-ins/sample_colorize +lib/gimp/1.1/plug-ins/scatter_hsv +lib/gimp/1.1/plug-ins/screenshot +lib/gimp/1.1/plug-ins/sel_gauss +lib/gimp/1.1/plug-ins/semiflatten +lib/gimp/1.1/plug-ins/sharpen +lib/gimp/1.1/plug-ins/shift +lib/gimp/1.1/plug-ins/smooth_palette +lib/gimp/1.1/plug-ins/snoise +lib/gimp/1.1/plug-ins/sobel +lib/gimp/1.1/plug-ins/sparkle +lib/gimp/1.1/plug-ins/spheredesigner +lib/gimp/1.1/plug-ins/spread +lib/gimp/1.1/plug-ins/sunras +lib/gimp/1.1/plug-ins/tga +lib/gimp/1.1/plug-ins/threshold_alpha +lib/gimp/1.1/plug-ins/tiff +lib/gimp/1.1/plug-ins/tile +lib/gimp/1.1/plug-ins/tileit +lib/gimp/1.1/plug-ins/tiler +lib/gimp/1.1/plug-ins/url +lib/gimp/1.1/plug-ins/video +lib/gimp/1.1/plug-ins/vinvert +lib/gimp/1.1/plug-ins/vpropagate +lib/gimp/1.1/plug-ins/warp +lib/gimp/1.1/plug-ins/waves +lib/gimp/1.1/plug-ins/whirlpinch +lib/gimp/1.1/plug-ins/wind +lib/gimp/1.1/plug-ins/wmf +lib/gimp/1.1/plug-ins/xbm +lib/gimp/1.1/plug-ins/xpm +lib/gimp/1.1/plug-ins/xwd +lib/gimp/1.1/plug-ins/zealouscrop +lib/gimp/1.1/modules/libcolorsel_gtk.so.0.0 +lib/gimp/1.1/modules/libcolorsel_gtk.a +lib/gimp/1.1/modules/libcolorsel_triangle.so.0.0 +lib/gimp/1.1/modules/libcolorsel_triangle.a +lib/gimp/1.1/modules/libcolorsel_water.so.0.0 +lib/gimp/1.1/modules/libcolorsel_water.a +lib/gimp/1.1/modules/libcdisplay_gamma.so.0.0 +lib/gimp/1.1/modules/libcdisplay_gamma.a +lib/locale/da/LC_MESSAGES/gimp.mo +lib/locale/da/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/fi/LC_MESSAGES/gimp.mo +lib/locale/fi/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/ko/LC_MESSAGES/gimp.mo +lib/locale/ko/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/de/LC_MESSAGES/gimp.mo +lib/locale/de/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/fr/LC_MESSAGES/gimp.mo +lib/locale/fr/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/it/LC_MESSAGES/gimp.mo +lib/locale/it/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/ja/LC_MESSAGES/gimp.mo +lib/locale/ja/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/no/LC_MESSAGES/gimp.mo +lib/locale/no/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/hu/LC_MESSAGES/gimp.mo +lib/locale/hu/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/nl/LC_MESSAGES/gimp.mo +lib/locale/nl/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/cs/LC_MESSAGES/gimp.mo +lib/locale/cs/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/pl/LC_MESSAGES/gimp.mo +lib/locale/pl/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/ru/LC_MESSAGES/gimp.mo +lib/locale/ru/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/sk/LC_MESSAGES/gimp.mo +lib/locale/sk/LC_MESSAGES/gimp-std-plugins.mo +lib/locale/sv/LC_MESSAGES/gimp.mo +lib/locale/sv/LC_MESSAGES/gimp-std-plugins.mo +lib/libgimp.so.13.0 +lib/libgimp.a +lib/libgimpui.so.13.0 +lib/libgimpui.a +lib/libgck.so.13.0 +man/man1/gimp.1 +man/man1/gimptool.1 +man/man3/gpc.3 +man/man5/gimprc.5 +share/aclocal/gimp.m4 +share/gimp/scripts/3d-outline.scm +share/gimp/scripts/3dTruchet.scm +share/gimp/scripts/add-bevel.scm +share/gimp/scripts/addborder.scm +share/gimp/scripts/alien-glow-arrow.scm +share/gimp/scripts/alien-glow-bar.scm +share/gimp/scripts/alien-glow-bullet.scm +share/gimp/scripts/alien-glow-button.scm +share/gimp/scripts/alien-glow-logo.scm +share/gimp/scripts/asc2img.scm +share/gimp/scripts/basic1-logo.scm +share/gimp/scripts/basic2-logo.scm +share/gimp/scripts/beavis.jpg +share/gimp/scripts/beveled-button.scm +share/gimp/scripts/beveled-pattern-arrow.scm +share/gimp/scripts/beveled-pattern-bullet.scm +share/gimp/scripts/beveled-pattern-button.scm +share/gimp/scripts/beveled-pattern-heading.scm +share/gimp/scripts/beveled-pattern-hrule.scm +share/gimp/scripts/blend-anim.scm +share/gimp/scripts/blended-logo.scm +share/gimp/scripts/bovinated-logo.scm +share/gimp/scripts/camo.scm +share/gimp/scripts/carve-it.scm +share/gimp/scripts/carved-logo.scm +share/gimp/scripts/chalk.scm +share/gimp/scripts/chip-away.scm +share/gimp/scripts/chrome-it.scm +share/gimp/scripts/chrome-logo.scm +share/gimp/scripts/circuit.scm +share/gimp/scripts/clothify.scm +share/gimp/scripts/coffee.scm +share/gimp/scripts/color-cycling.scm +share/gimp/scripts/comic-logo.scm +share/gimp/scripts/coolmetal-logo.scm +share/gimp/scripts/copy-visible.scm +share/gimp/scripts/crystal-logo.scm +share/gimp/scripts/distress_selection.scm +share/gimp/scripts/drop-shadow.scm +share/gimp/scripts/erase-rows.scm +share/gimp/scripts/fade-outline.scm +share/gimp/scripts/flatland.scm +share/gimp/scripts/font-map.scm +share/gimp/scripts/frosty-logo.scm +share/gimp/scripts/fuzzyborder.scm +share/gimp/scripts/gimp-headers.scm +share/gimp/scripts/gimp-labels.scm +share/gimp/scripts/glossy.scm +share/gimp/scripts/glowing-logo.scm +share/gimp/scripts/gradient-bevel-logo.scm +share/gimp/scripts/gradient-example.scm +share/gimp/scripts/grid-system.scm +share/gimp/scripts/hsv-graph.scm +share/gimp/scripts/i26-gunya2.scm +share/gimp/scripts/image-structure.scm +share/gimp/scripts/land.scm +share/gimp/scripts/lava.scm +share/gimp/scripts/line-nova.scm +share/gimp/scripts/old_photo.scm +share/gimp/scripts/mkbrush.scm +share/gimp/scripts/neon-logo.scm +share/gimp/scripts/news-text.scm +share/gimp/scripts/perspective-shadow.scm +share/gimp/scripts/predator.scm +share/gimp/scripts/pupi-button.scm +share/gimp/scripts/rendermap.scm +share/gimp/scripts/ripply-anim.scm +share/gimp/scripts/round-corners.scm +share/gimp/scripts/select_to_brush.scm +share/gimp/scripts/select_to_image.scm +share/gimp/scripts/selection-round.scm +share/gimp/scripts/slide.scm +share/gimp/scripts/sota-chrome-logo.scm +share/gimp/scripts/speed-text.scm +share/gimp/scripts/sphere.scm +share/gimp/scripts/spinning_globe.scm +share/gimp/scripts/starburst-logo.scm +share/gimp/scripts/starscape-logo.scm +share/gimp/scripts/swirltile.scm +share/gimp/scripts/swirly-pattern.scm +share/gimp/scripts/t-o-p-logo.scm +share/gimp/scripts/text-circle.scm +share/gimp/scripts/texture.jpg +share/gimp/scripts/texture1.jpg +share/gimp/scripts/texture2.jpg +share/gimp/scripts/texture3.jpg +share/gimp/scripts/textured-logo.scm +share/gimp/scripts/title-header.scm +share/gimp/scripts/tileblur.scm +share/gimp/scripts/trochoid.scm +share/gimp/scripts/truchet.scm +share/gimp/scripts/unsharp-mask.scm +share/gimp/scripts/waves-anim.scm +share/gimp/scripts/weave.scm +share/gimp/scripts/xach-effect.scm +share/gimp/scripts/test-sphere.scm +share/gimp/scripts/sel-to-anim-img.scm +share/gimp/scripts/web-browser.scm +share/gimp/fractalexplorer/Asteroid_Field +share/gimp/fractalexplorer/Bar_Code_Label +share/gimp/fractalexplorer/Beauty_of_Nature +share/gimp/fractalexplorer/Blue_Curtain +share/gimp/fractalexplorer/Car_Track +share/gimp/fractalexplorer/Energetic_Diamond +share/gimp/fractalexplorer/Explosive +share/gimp/fractalexplorer/Flower +share/gimp/fractalexplorer/Fragments +share/gimp/fractalexplorer/Hemp +share/gimp/fractalexplorer/High_Voltage +share/gimp/fractalexplorer/Hoops +share/gimp/fractalexplorer/Ice_Crystal +share/gimp/fractalexplorer/Leaves +share/gimp/fractalexplorer/Lightning +share/gimp/fractalexplorer/Mandelbrot +share/gimp/fractalexplorer/Marble +share/gimp/fractalexplorer/Marble2 +share/gimp/fractalexplorer/Medusa +share/gimp/fractalexplorer/Nautilus +share/gimp/fractalexplorer/Nebula +share/gimp/fractalexplorer/Plant +share/gimp/fractalexplorer/Rose +share/gimp/fractalexplorer/Saturn +share/gimp/fractalexplorer/Soma +share/gimp/fractalexplorer/Snow_Crystal +share/gimp/fractalexplorer/Spark +share/gimp/fractalexplorer/Suns +share/gimp/fractalexplorer/Tentacles +share/gimp/fractalexplorer/The_Green_Place +share/gimp/fractalexplorer/Wave +share/gimp/fractalexplorer/Wood +share/gimp/fractalexplorer/Zooming_Circle +share/gimp/gfig/A_star +share/gimp/gfig/curves +share/gimp/gfig/polys +share/gimp/gfig/ring +share/gimp/gfig/ring+star +share/gimp/gfig/simily +share/gimp/gfig/spirals_and_stars +share/gimp/gfig/sprial +share/gimp/gfig/star2 +share/gimp/gfig/stars +share/gimp/gflare/Bright_Star +share/gimp/gflare/Classic +share/gimp/gflare/Distant_Sun +share/gimp/gflare/Default +share/gimp/gflare/GFlare_101 +share/gimp/gflare/GFlare_102 +share/gimp/gflare/Hidden_Planet +share/gimp/gimpressionist/Brushes/arrow01.pgm +share/gimp/gimpressionist/Brushes/ball.ppm +share/gimp/gimpressionist/Brushes/blob.ppm +share/gimp/gimpressionist/Brushes/box.ppm +share/gimp/gimpressionist/Brushes/chalk01.pgm +share/gimp/gimpressionist/Brushes/cone.ppm +share/gimp/gimpressionist/Brushes/crayon01.pgm +share/gimp/gimpressionist/Brushes/crayon02.pgm +share/gimp/gimpressionist/Brushes/crayon03.pgm +share/gimp/gimpressionist/Brushes/crayon04.pgm +share/gimp/gimpressionist/Brushes/crayon05.pgm +share/gimp/gimpressionist/Brushes/crayon06.pgm +share/gimp/gimpressionist/Brushes/crayon07.pgm +share/gimp/gimpressionist/Brushes/crayon08.pgm +share/gimp/gimpressionist/Brushes/defaultbrush.pgm +share/gimp/gimpressionist/Brushes/dribble.pgm +share/gimp/gimpressionist/Brushes/fabric.pgm +share/gimp/gimpressionist/Brushes/fabric01.pgm +share/gimp/gimpressionist/Brushes/fabric02.pgm +share/gimp/gimpressionist/Brushes/fabric03.pgm +share/gimp/gimpressionist/Brushes/flower01.pgm +share/gimp/gimpressionist/Brushes/flower02.pgm +share/gimp/gimpressionist/Brushes/flower03.pgm +share/gimp/gimpressionist/Brushes/flower04.pgm +share/gimp/gimpressionist/Brushes/grad01.pgm +share/gimp/gimpressionist/Brushes/grad02.pgm +share/gimp/gimpressionist/Brushes/grad03.pgm +share/gimp/gimpressionist/Brushes/heart.ppm +share/gimp/gimpressionist/Brushes/leaf01.pgm +share/gimp/gimpressionist/Brushes/paintbrush.pgm +share/gimp/gimpressionist/Brushes/paintbrush01.pgm +share/gimp/gimpressionist/Brushes/paintbrush02.pgm +share/gimp/gimpressionist/Brushes/paintbrush03.pgm +share/gimp/gimpressionist/Brushes/paintbrush04.pgm +share/gimp/gimpressionist/Brushes/paper01.pgm +share/gimp/gimpressionist/Brushes/paper02.pgm +share/gimp/gimpressionist/Brushes/paper03.pgm +share/gimp/gimpressionist/Brushes/paper04.pgm +share/gimp/gimpressionist/Brushes/pentagram.pgm +share/gimp/gimpressionist/Brushes/scribble.pgm +share/gimp/gimpressionist/Brushes/shape01.pgm +share/gimp/gimpressionist/Brushes/shape02.pgm +share/gimp/gimpressionist/Brushes/shape03.pgm +share/gimp/gimpressionist/Brushes/shape04.pgm +share/gimp/gimpressionist/Brushes/sphere.ppm +share/gimp/gimpressionist/Brushes/splat1.pgm +share/gimp/gimpressionist/Brushes/splat2.pgm +share/gimp/gimpressionist/Brushes/splat3.pgm +share/gimp/gimpressionist/Brushes/spunge01.pgm +share/gimp/gimpressionist/Brushes/spunge02.pgm +share/gimp/gimpressionist/Brushes/spunge03.pgm +share/gimp/gimpressionist/Brushes/spunge04.pgm +share/gimp/gimpressionist/Brushes/spunge05.pgm +share/gimp/gimpressionist/Brushes/strange01.pgm +share/gimp/gimpressionist/Brushes/thegimp.pgm +share/gimp/gimpressionist/Brushes/torus.ppm +share/gimp/gimpressionist/Brushes/wavy.pgm +share/gimp/gimpressionist/Brushes/weave.pgm +share/gimp/gimpressionist/Brushes/worm.pgm +share/gimp/gimpressionist/Paper/bricks.pgm +share/gimp/gimpressionist/Paper/bricks2.pgm +share/gimp/gimpressionist/Paper/burlap.pgm +share/gimp/gimpressionist/Paper/canvas2.pgm +share/gimp/gimpressionist/Paper/defaultpaper.pgm +share/gimp/gimpressionist/Paper/marble.pgm +share/gimp/gimpressionist/Paper/marble2.pgm +share/gimp/gimpressionist/Paper/stone.pgm +share/gimp/gimpressionist/Presets/Ballpark +share/gimp/gimpressionist/Presets/Canvas +share/gimp/gimpressionist/Presets/Crosshatch +share/gimp/gimpressionist/Presets/Cubism +share/gimp/gimpressionist/Presets/Dotify +share/gimp/gimpressionist/Presets/Embroidery +share/gimp/gimpressionist/Presets/Feathers +share/gimp/gimpressionist/Presets/Felt-marker +share/gimp/gimpressionist/Presets/Flowerbed +share/gimp/gimpressionist/Presets/Furry +share/gimp/gimpressionist/Presets/Line-art +share/gimp/gimpressionist/Presets/Line-art-2 +share/gimp/gimpressionist/Presets/Maggot-invasion +share/gimp/gimpressionist/Presets/MarbleMadness +share/gimp/gimpressionist/Presets/Mossy +share/gimp/gimpressionist/Presets/Painted_Rock +share/gimp/gimpressionist/Presets/Parquette +share/gimp/gimpressionist/Presets/Patchwork +share/gimp/gimpressionist/Presets/Ringworks +share/gimp/gimpressionist/Presets/Sample +share/gimp/gimpressionist/Presets/Smash +share/gimp/gimpressionist/Presets/Straws +share/gimp/gimpressionist/Presets/Weave +share/gimp/gimpressionist/Presets/Wormcan +share/gimp/brushes/10x10square.gbr +share/gimp/brushes/10x10squareBlur.gbr +share/gimp/brushes/11circle.gbr +share/gimp/brushes/11fcircle.gbr +share/gimp/brushes/13circle.gbr +share/gimp/brushes/13fcircle.gbr +share/gimp/brushes/15circle.gbr +share/gimp/brushes/15fcircle.gbr +share/gimp/brushes/17circle.gbr +share/gimp/brushes/17fcircle.gbr +share/gimp/brushes/19circle.gbr +share/gimp/brushes/19fcircle.gbr +share/gimp/brushes/1circle.gbr +share/gimp/brushes/20x20square.gbr +share/gimp/brushes/20x20squareBlur.gbr +share/gimp/brushes/3circle.gbr +share/gimp/brushes/3fcircle.gbr +share/gimp/brushes/5circle.gbr +share/gimp/brushes/5fcircle.gbr +share/gimp/brushes/5x5square.gbr +share/gimp/brushes/5x5squareBlur.gbr +share/gimp/brushes/7circle.gbr +share/gimp/brushes/7fcircle.gbr +share/gimp/brushes/9circle.gbr +share/gimp/brushes/9fcircle.gbr +share/gimp/brushes/DStar11.gbr +share/gimp/brushes/DStar17.gbr +share/gimp/brushes/DStar25.gbr +share/gimp/brushes/callig1.gbr +share/gimp/brushes/callig2.gbr +share/gimp/brushes/callig3.gbr +share/gimp/brushes/callig4.gbr +share/gimp/brushes/confetti.gbr +share/gimp/brushes/dunes.gbr +share/gimp/brushes/galaxy.gbr +share/gimp/brushes/galaxy_big.gbr +share/gimp/brushes/galaxy_small.gbr +share/gimp/brushes/pepper.gpb +share/gimp/brushes/pixel.gbr +share/gimp/brushes/thegimp.gbr +share/gimp/brushes/vine.gih +share/gimp/brushes/xcf.gbr +share/gimp/gradients/Abstract_1 +share/gimp/gradients/Abstract_2 +share/gimp/gradients/Abstract_3 +share/gimp/gradients/Aneurism +share/gimp/gradients/Blinds +share/gimp/gradients/Blue_Green +share/gimp/gradients/Browns +share/gimp/gradients/Brushed_Aluminium +share/gimp/gradients/Burning_Paper +share/gimp/gradients/Burning_Transparency +share/gimp/gradients/CD +share/gimp/gradients/CD_Half +share/gimp/gradients/Caribbean_Blues +share/gimp/gradients/Coffee +share/gimp/gradients/Cold_Steel +share/gimp/gradients/Cold_Steel_2 +share/gimp/gradients/Crown_molding +share/gimp/gradients/Dark_1 +share/gimp/gradients/Deep_Sea +share/gimp/gradients/Default +share/gimp/gradients/Flare_Glow_Angular_1 +share/gimp/gradients/Flare_Glow_Radial_1 +share/gimp/gradients/Four_bars +share/gimp/gradients/Flare_Glow_Radial_2 +share/gimp/gradients/Flare_Glow_Radial_3 +share/gimp/gradients/Flare_Glow_Radial_4 +share/gimp/gradients/Flare_Radial_101 +share/gimp/gradients/Flare_Radial_102 +share/gimp/gradients/Flare_Radial_103 +share/gimp/gradients/Flare_Rays_Radial_1 +share/gimp/gradients/Flare_Rays_Radial_2 +share/gimp/gradients/Flare_Rays_Size_1 +share/gimp/gradients/Flare_Sizefac_101 +share/gimp/gradients/French_flag +share/gimp/gradients/French_flag_smooth +share/gimp/gradients/Full_saturation_spectrum_CCW +share/gimp/gradients/Full_saturation_spectrum_CW +share/gimp/gradients/German_flag +share/gimp/gradients/German_flag_smooth +share/gimp/gradients/Golden +share/gimp/gradients/Greens +share/gimp/gradients/Horizon_1 +share/gimp/gradients/Horizon_2 +share/gimp/gradients/Incandescent +share/gimp/gradients/Land_1 +share/gimp/gradients/Land_and_Sea +share/gimp/gradients/Metallic_Something +share/gimp/gradients/Mexican_flag +share/gimp/gradients/Mexican_flag_smooth +share/gimp/gradients/Nauseating_Headache +share/gimp/gradients/Neon_Cyan +share/gimp/gradients/Neon_Green +share/gimp/gradients/Neon_Yellow +share/gimp/gradients/Pastel_Rainbow +share/gimp/gradients/Pastels +share/gimp/gradients/Purples +share/gimp/gradients/Radial_Eyeball_Blue +share/gimp/gradients/Radial_Eyeball_Brown +share/gimp/gradients/Radial_Eyeball_Green +share/gimp/gradients/Radial_Glow_1 +share/gimp/gradients/Radial_Rainbow_Hoop +share/gimp/gradients/Romanian_flag +share/gimp/gradients/Romanian_flag_smooth +share/gimp/gradients/Rounded_edge +share/gimp/gradients/Shadows_1 +share/gimp/gradients/Shadows_2 +share/gimp/gradients/Shadows_3 +share/gimp/gradients/Skyline +share/gimp/gradients/Skyline_polluted +share/gimp/gradients/Square_Wood_Frame +share/gimp/gradients/Sunrise +share/gimp/gradients/Three_bars_sin +share/gimp/gradients/Tropical_Colors +share/gimp/gradients/Tube_Red +share/gimp/gradients/Wood_1 +share/gimp/gradients/Wood_2 +share/gimp/gradients/Yellow_Contrast +share/gimp/gradients/Yellow_Orange +share/gimp/palettes/Bears +share/gimp/palettes/Bgold +share/gimp/palettes/Blues +share/gimp/palettes/Borders +share/gimp/palettes/Browns_And_Yellows +share/gimp/palettes/Caramel +share/gimp/palettes/Cascade +share/gimp/palettes/China +share/gimp/palettes/Coldfire +share/gimp/palettes/Cool_Colors +share/gimp/palettes/Cranes +share/gimp/palettes/Dark_pastels +share/gimp/palettes/Default +share/gimp/palettes/Ega +share/gimp/palettes/Firecode +share/gimp/palettes/Gold +share/gimp/palettes/GrayViolet +share/gimp/palettes/Grayblue +share/gimp/palettes/Grays +share/gimp/palettes/Greens +share/gimp/palettes/Hilite +share/gimp/palettes/Kahki +share/gimp/palettes/Lights +share/gimp/palettes/Muted +share/gimp/palettes/Named_Colors +share/gimp/palettes/News3 +share/gimp/palettes/Op2 +share/gimp/palettes/Pastels +share/gimp/palettes/Paintjet +share/gimp/palettes/Plasma +share/gimp/palettes/Reds +share/gimp/palettes/Reds_And_Purples +share/gimp/palettes/Royal +share/gimp/palettes/Topographic +share/gimp/palettes/Visibone +share/gimp/palettes/Visibone2 +share/gimp/palettes/Volcano +share/gimp/palettes/Warm_Colors +share/gimp/palettes/Web +share/gimp/patterns/3dgreen.pat +share/gimp/patterns/Craters.pat +share/gimp/patterns/Moonfoot.pat +share/gimp/patterns/amethyst.pat +share/gimp/patterns/bark.pat +share/gimp/patterns/blue.pat +share/gimp/patterns/bluegrid.pat +share/gimp/patterns/bluesquares.pat +share/gimp/patterns/blueweb.pat +share/gimp/patterns/brick.pat +share/gimp/patterns/burlap.pat +share/gimp/patterns/burlwood.pat +share/gimp/patterns/choc_swirl.pat +share/gimp/patterns/corkboard.pat +share/gimp/patterns/cracked.pat +share/gimp/patterns/crinklepaper.pat +share/gimp/patterns/electric.pat +share/gimp/patterns/fibers.pat +share/gimp/patterns/granite1.pat +share/gimp/patterns/ground1.pat +share/gimp/patterns/ice.pat +share/gimp/patterns/java.pat +share/gimp/patterns/leather.pat +share/gimp/patterns/leaves.pat +share/gimp/patterns/leopard.pat +share/gimp/patterns/lightning.pat +share/gimp/patterns/marble1.pat +share/gimp/patterns/marble2.pat +share/gimp/patterns/marble3.pat +share/gimp/patterns/nops.pat +share/gimp/patterns/paper.pat +share/gimp/patterns/parque1.pat +share/gimp/patterns/parque2.pat +share/gimp/patterns/parque3.pat +share/gimp/patterns/pastel.pat +share/gimp/patterns/pine.pat +share/gimp/patterns/pink_marble.pat +share/gimp/patterns/pool.pat +share/gimp/patterns/qube1.pat +share/gimp/patterns/rain.pat +share/gimp/patterns/recessed.pat +share/gimp/patterns/redcube.pat +share/gimp/patterns/rock.pat +share/gimp/patterns/sky.pat +share/gimp/patterns/slate.pat +share/gimp/patterns/sm_squares.pat +share/gimp/patterns/stone33.pat +share/gimp/patterns/starfield.pat +share/gimp/patterns/terra.pat +share/gimp/patterns/walnut.pat +share/gimp/patterns/warning.pat +share/gimp/patterns/wood1.pat +share/gimp/patterns/wood2.pat +share/gimp/patterns/wood3.pat +share/gimp/patterns/wood4.pat +share/gimp/patterns/wood5.pat +share/gimp/tips/gimp_tips.txt +share/gimp/tips/gimp_tips.de.txt +share/gimp/tips/gimp_tips.ja.txt +share/gimp/tips/gimp_tips.it.txt +share/gimp/tips/gimp_tips.ko.txt +share/gimp/tips/gimp_conseils.fr.txt +share/gimp/tips/gimp_tips.ru.txt +share/gimp/tips/gimp_tips.pl.txt +share/gimp/help/C/dialogs/layers/add_mask.html +share/gimp/help/C/dialogs/layers/apply_mask.html +share/gimp/help/C/dialogs/layers/edit_layer_attributes.html +share/gimp/help/C/dialogs/layers/index.html +share/gimp/help/C/dialogs/layers/layers.html +share/gimp/help/C/dialogs/layers/merge_visible_layers.html +share/gimp/help/C/dialogs/layers/new_layer.html +share/gimp/help/C/dialogs/layers/resize_layer.html +share/gimp/help/C/dialogs/layers/scale_layer.html +share/gimp/help/C/dialogs/channels/channels.html +share/gimp/help/C/dialogs/channels/edit_channel_attributes.html +share/gimp/help/C/dialogs/channels/index.html +share/gimp/help/C/dialogs/channels/new_channel.html +share/gimp/help/C/dialogs/paths/export_path.html +share/gimp/help/C/dialogs/paths/import_path.html +share/gimp/help/C/dialogs/paths/index.html +share/gimp/help/C/dialogs/paths/paths.html +share/gimp/help/C/dialogs/paths/rename_path.html +share/gimp/help/C/dialogs/palette_editor/import_palette.html +share/gimp/help/C/dialogs/palette_editor/index.html +share/gimp/help/C/dialogs/palette_editor/merge_palette.html +share/gimp/help/C/dialogs/palette_editor/new_palette.html +share/gimp/help/C/dialogs/palette_editor/palette_editor.html +share/gimp/help/C/dialogs/gradient_editor/copy_gradient.html +share/gimp/help/C/dialogs/gradient_editor/delete_gradient.html +share/gimp/help/C/dialogs/gradient_editor/gradient_editor.html +share/gimp/help/C/dialogs/gradient_editor/index.html +share/gimp/help/C/dialogs/gradient_editor/new_gradient.html +share/gimp/help/C/dialogs/gradient_editor/rename_gradient.html +share/gimp/help/C/dialogs/gradient_editor/replicate_segment.html +share/gimp/help/C/dialogs/gradient_editor/save_as_pov_ray.html +share/gimp/help/C/dialogs/gradient_editor/split_segments_uniformly.html +share/gimp/help/C/dialogs/display_filters/display_filters.html +share/gimp/help/C/dialogs/display_filters/gamma.html +share/gimp/help/C/dialogs/display_filters/index.html +share/gimp/help/C/dialogs/color_selectors/built_in.html +share/gimp/help/C/dialogs/color_selectors/gtk.html +share/gimp/help/C/dialogs/color_selectors/index.html +share/gimp/help/C/dialogs/color_selectors/triangle.html +share/gimp/help/C/dialogs/color_selectors/watercolor.html +share/gimp/help/C/dialogs/preferences/directories.html +share/gimp/help/C/dialogs/preferences/display.html +share/gimp/help/C/dialogs/preferences/environment.html +share/gimp/help/C/dialogs/preferences/index.html +share/gimp/help/C/dialogs/preferences/interface.html +share/gimp/help/C/dialogs/preferences/monitor.html +share/gimp/help/C/dialogs/preferences/new_file.html +share/gimp/help/C/dialogs/preferences/preferences.html +share/gimp/help/C/dialogs/preferences/session.html +share/gimp/help/C/dialogs/about.html +share/gimp/help/C/dialogs/border_selection.html +share/gimp/help/C/dialogs/brush_editor.html +share/gimp/help/C/dialogs/brush_selection.html +share/gimp/help/C/dialogs/convert_to_indexed.html +share/gimp/help/C/dialogs/copy_named.html +share/gimp/help/C/dialogs/cut_named.html +share/gimp/help/C/dialogs/device_status.html +share/gimp/help/C/dialogs/document_index.html +share/gimp/help/C/dialogs/edit_qmask_attributes.html +share/gimp/help/C/dialogs/error_console.html +share/gimp/help/C/dialogs/feather_selection.html +share/gimp/help/C/dialogs/file_new.html +share/gimp/help/C/dialogs/file_open.html +share/gimp/help/C/dialogs/file_save.html +share/gimp/help/C/dialogs/gradient_selection.html +share/gimp/help/C/dialogs/grow_selection.html +share/gimp/help/C/dialogs/help.html +share/gimp/help/C/dialogs/index.html +share/gimp/help/C/dialogs/indexed_palette.html +share/gimp/help/C/dialogs/info_window.html +share/gimp/help/C/dialogs/input_devices.html +share/gimp/help/C/dialogs/layers_and_channels.html +share/gimp/help/C/dialogs/module_browser.html +share/gimp/help/C/dialogs/navigation_window.html +share/gimp/help/C/dialogs/offset.html +share/gimp/help/C/dialogs/palette_selection.html +share/gimp/help/C/dialogs/paste_named.html +share/gimp/help/C/dialogs/pattern_selection.html +share/gimp/help/C/dialogs/really_close.html +share/gimp/help/C/dialogs/really_quit.html +share/gimp/help/C/dialogs/resize_image.html +share/gimp/help/C/dialogs/scale_image.html +share/gimp/help/C/dialogs/shrink_selection.html +share/gimp/help/C/dialogs/tip_of_the_day.html +share/gimp/help/C/dialogs/tool_options.html +share/gimp/help/C/dialogs/undo_history.html +share/gimp/help/C/tools/airbrush.html +share/gimp/help/C/tools/bezier_select.html +share/gimp/help/C/tools/blend.html +share/gimp/help/C/tools/brightness_contrast.html +share/gimp/help/C/tools/bucket_fill.html +share/gimp/help/C/tools/by_color_select.html +share/gimp/help/C/tools/clone.html +share/gimp/help/C/tools/color_balance.html +share/gimp/help/C/tools/color_picker.html +share/gimp/help/C/tools/convolve.html +share/gimp/help/C/tools/crop.html +share/gimp/help/C/tools/curves.html +share/gimp/help/C/tools/dodgeburn.html +share/gimp/help/C/tools/ellipse_select.html +share/gimp/help/C/tools/eraser.html +share/gimp/help/C/tools/flip.html +share/gimp/help/C/tools/free_select.html +share/gimp/help/C/tools/fuzzy_select.html +share/gimp/help/C/tools/histogram.html +share/gimp/help/C/tools/hue_saturation.html +share/gimp/help/C/tools/index.html +share/gimp/help/C/tools/ink.html +share/gimp/help/C/tools/intelligent_scissors.html +share/gimp/help/C/tools/levels.html +share/gimp/help/C/tools/magnify.html +share/gimp/help/C/tools/measure.html +share/gimp/help/C/tools/move.html +share/gimp/help/C/tools/paintbrush.html +share/gimp/help/C/tools/path.html +share/gimp/help/C/tools/pencil.html +share/gimp/help/C/tools/posterize.html +share/gimp/help/C/tools/rect_select.html +share/gimp/help/C/tools/smudge.html +share/gimp/help/C/tools/text.html +share/gimp/help/C/tools/threshold.html +share/gimp/help/C/tools/transform.html +share/gimp/help/C/tools/transform_perspective.html +share/gimp/help/C/tools/transform_rotate.html +share/gimp/help/C/tools/transform_scale.html +share/gimp/help/C/tools/transform_shear.html +share/gimp/help/C/tools/xinput_airbrush.html +share/gimp/help/C/layers/stack/index.html +share/gimp/help/C/layers/stack/stack.html +share/gimp/help/C/layers/add_alpha_channel.html +share/gimp/help/C/layers/alpha_to_selection.html +share/gimp/help/C/layers/anchor_layer.html +share/gimp/help/C/layers/delete_layer.html +share/gimp/help/C/layers/duplicate_layer.html +share/gimp/help/C/layers/flatten_image.html +share/gimp/help/C/layers/index.html +share/gimp/help/C/layers/mask_to_selection.html +share/gimp/help/C/layers/merge_down.html +share/gimp/help/C/channels/channel_to_selection.html +share/gimp/help/C/channels/channels.html +share/gimp/help/C/channels/delete_channel.html +share/gimp/help/C/channels/duplicate_channel.html +share/gimp/help/C/channels/index.html +share/gimp/help/C/channels/lower_channel.html +share/gimp/help/C/channels/raise_channel.html +share/gimp/help/C/paths/copy_path.html +share/gimp/help/C/paths/delete_path.html +share/gimp/help/C/paths/duplicate_path.html +share/gimp/help/C/paths/index.html +share/gimp/help/C/paths/new_path.html +share/gimp/help/C/paths/paste_path.html +share/gimp/help/C/paths/path_to_selection.html +share/gimp/help/C/paths/stroke_path.html +share/gimp/help/C/toolbox/index.html +share/gimp/help/C/toolbox/toolbox.html +share/gimp/help/C/image/edit/clear.html +share/gimp/help/C/image/edit/copy.html +share/gimp/help/C/image/edit/cut.html +share/gimp/help/C/image/edit/fill.html +share/gimp/help/C/image/edit/index.html +share/gimp/help/C/image/edit/paste.html +share/gimp/help/C/image/edit/paste_as_new.html +share/gimp/help/C/image/edit/paste_into.html +share/gimp/help/C/image/edit/redo.html +share/gimp/help/C/image/edit/stroke.html +share/gimp/help/C/image/edit/undo.html +share/gimp/help/C/image/select/all.html +share/gimp/help/C/image/select/float.html +share/gimp/help/C/image/select/index.html +share/gimp/help/C/image/select/invert.html +share/gimp/help/C/image/select/none.html +share/gimp/help/C/image/select/save_to_channel.html +share/gimp/help/C/image/select/sharpen.html +share/gimp/help/C/image/view/dot_for_dot.html +share/gimp/help/C/image/view/index.html +share/gimp/help/C/image/view/new_view.html +share/gimp/help/C/image/view/shrink_wrap.html +share/gimp/help/C/image/view/snap_to_guides.html +share/gimp/help/C/image/view/toggle_guides.html +share/gimp/help/C/image/view/toggle_rulers.html +share/gimp/help/C/image/view/toggle_selection.html +share/gimp/help/C/image/view/toggle_statusbar.html +share/gimp/help/C/image/view/zoom.html +share/gimp/help/C/image/image/transforms/index.html +share/gimp/help/C/image/image/colors/desaturate.html +share/gimp/help/C/image/image/colors/equalize.html +share/gimp/help/C/image/image/colors/index.html +share/gimp/help/C/image/image/colors/invert.html +share/gimp/help/C/image/image/convert_to_grayscale.html +share/gimp/help/C/image/image/convert_to_rgb.html +share/gimp/help/C/image/image/duplicate.html +share/gimp/help/C/image/image/index.html +share/gimp/help/C/image/image_window.html +share/gimp/help/C/image/index.html +share/gimp/help/C/open/index.html +share/gimp/help/C/open/open_by_extension.html +share/gimp/help/C/save/index.html +share/gimp/help/C/save/save_by_extension.html +share/gimp/help/C/filters/alienmap.html +share/gimp/help/C/filters/alienmap2.html +share/gimp/help/C/filters/align_layers.html +share/gimp/help/C/filters/animationplay.html +share/gimp/help/C/filters/animoptimize.html +share/gimp/help/C/filters/apply_lens.html +share/gimp/help/C/filters/autocrop.html +share/gimp/help/C/filters/autostretch_hsv.html +share/gimp/help/C/filters/blinds.html +share/gimp/help/C/filters/blur.html +share/gimp/help/C/filters/bmp.html +share/gimp/help/C/filters/borderaverage.html +share/gimp/help/C/filters/bumpmap.html +share/gimp/help/C/filters/bz2.html +share/gimp/help/C/filters/c_astretch.html +share/gimp/help/C/filters/cel.html +share/gimp/help/C/filters/checkerboard.html +share/gimp/help/C/filters/cml_explorer.html +share/gimp/help/C/filters/color_enhance.html +share/gimp/help/C/filters/fp.html +share/gimp/help/C/filters/colorify.html +share/gimp/help/C/filters/compose.html +share/gimp/help/C/filters/convmatrix.html +share/gimp/help/C/filters/csource.html +share/gimp/help/C/filters/cubism.html +share/gimp/help/C/filters/curve_bend.html +share/gimp/help/C/filters/dbbrowser.html +share/gimp/help/C/filters/decompose.html +share/gimp/help/C/filters/deinterlace.html +share/gimp/help/C/filters/depthmerge.html +share/gimp/help/C/filters/despeckle.html +share/gimp/help/C/filters/destripe.html +share/gimp/help/C/filters/diffraction.html +share/gimp/help/C/filters/displace.html +share/gimp/help/C/filters/edge.html +share/gimp/help/C/filters/emboss.html +share/gimp/help/C/filters/engrave.html +share/gimp/help/C/filters/exchange.html +share/gimp/help/C/filters/faxg3.html +share/gimp/help/C/filters/film.html +share/gimp/help/C/filters/fits.html +share/gimp/help/C/filters/flame.html +share/gimp/help/C/filters/flarefx.html +share/gimp/help/C/filters/fractalexplorer.html +share/gimp/help/C/filters/fractaltrace.html +share/gimp/help/C/filters/gap_filter.html +share/gimp/help/C/filters/gap_plugins.html +share/gimp/help/C/filters/gauss_iir.html +share/gimp/help/C/filters/gauss_rle.html +share/gimp/help/C/filters/gbr.html +share/gimp/help/C/filters/gdyntext.html +share/gimp/help/C/filters/gee.html +share/gimp/help/C/filters/gfig.html +share/gimp/help/C/filters/gflare.html +share/gimp/help/C/filters/gfli.html +share/gimp/help/C/filters/gicon.html +share/gimp/help/C/filters/gif.html +share/gimp/help/C/filters/gifload.html +share/gimp/help/C/filters/gimpressionist.html +share/gimp/help/C/filters/glasstile.html +share/gimp/help/C/filters/gpb.html +share/gimp/help/C/filters/gqbist.html +share/gimp/help/C/filters/gradmap.html +share/gimp/help/C/filters/grid.html +share/gimp/help/C/filters/gtm.html +share/gimp/help/C/filters/guillotine.html +share/gimp/help/C/filters/gz.html +share/gimp/help/C/filters/header.html +share/gimp/help/C/filters/hot.html +share/gimp/help/C/filters/hrz.html +share/gimp/help/C/filters/ifscompose.html +share/gimp/help/C/filters/illusion.html +share/gimp/help/C/filters/imagemap.html +share/gimp/help/C/filters/index.html +share/gimp/help/C/filters/iwarp.html +share/gimp/help/C/filters/jigsaw.html +share/gimp/help/C/filters/jpeg.html +share/gimp/help/C/filters/laplace.html +share/gimp/help/C/filters/lic.html +share/gimp/help/C/filters/lighting.html +share/gimp/help/C/filters/mail.html +share/gimp/help/C/filters/mapcolor.html +share/gimp/help/C/filters/mapobject.html +share/gimp/help/C/filters/max_rgb.html +share/gimp/help/C/filters/maze.html +share/gimp/help/C/filters/mblur.html +share/gimp/help/C/filters/mosaic.html +share/gimp/help/C/filters/nlfilt.html +share/gimp/help/C/filters/newsprint.html +share/gimp/help/C/filters/noisify.html +share/gimp/help/C/filters/normalize.html +share/gimp/help/C/filters/nova.html +share/gimp/help/C/filters/oilify.html +share/gimp/help/C/filters/pagecurl.html +share/gimp/help/C/filters/papertile.html +share/gimp/help/C/filters/pat.html +share/gimp/help/C/filters/pcx.html +share/gimp/help/C/filters/pix.html +share/gimp/help/C/filters/pixelize.html +share/gimp/help/C/filters/plasma.html +share/gimp/help/C/filters/plugindetails.html +share/gimp/help/C/filters/png.html +share/gimp/help/C/filters/pnm.html +share/gimp/help/C/filters/polar.html +share/gimp/help/C/filters/print.html +share/gimp/help/C/filters/ps.html +share/gimp/help/C/filters/psd.html +share/gimp/help/C/filters/psp.html +share/gimp/help/C/filters/randomize.html +share/gimp/help/C/filters/rcm.html +share/gimp/help/C/filters/repeat_last.html +share/gimp/help/C/filters/reshow_last.html +share/gimp/help/C/filters/ripple.html +share/gimp/help/C/filters/rotate.html +share/gimp/help/C/filters/rotators.html +share/gimp/help/C/filters/sample_colorize.html +share/gimp/help/C/filters/scatter_hsv.html +share/gimp/help/C/filters/screenshot.html +share/gimp/help/C/filters/script-fu.html +share/gimp/help/C/filters/sel2path.html +share/gimp/help/C/filters/sel_gauss.html +share/gimp/help/C/filters/semiflatten.html +share/gimp/help/C/filters/sgi.html +share/gimp/help/C/filters/sharpen.html +share/gimp/help/C/filters/shift.html +share/gimp/help/C/filters/sinus.html +share/gimp/help/C/filters/smooth_palette.html +share/gimp/help/C/filters/snoise.html +share/gimp/help/C/filters/sobel.html +share/gimp/help/C/filters/sparkle.html +share/gimp/help/C/filters/spheredesigner.html +share/gimp/help/C/filters/spread.html +share/gimp/help/C/filters/struc.html +share/gimp/help/C/filters/sunras.html +share/gimp/help/C/filters/tga.html +share/gimp/help/C/filters/threshold_alpha.html +share/gimp/help/C/filters/tiff.html +share/gimp/help/C/filters/tile.html +share/gimp/help/C/filters/tileit.html +share/gimp/help/C/filters/tiler.html +share/gimp/help/C/filters/unsharp.html +share/gimp/help/C/filters/url.html +share/gimp/help/C/filters/video.html +share/gimp/help/C/filters/vinvert.html +share/gimp/help/C/filters/vpropagate.html +share/gimp/help/C/filters/warp.html +share/gimp/help/C/filters/waves.html +share/gimp/help/C/filters/webbrowser.html +share/gimp/help/C/filters/whirlpinch.html +share/gimp/help/C/filters/wind.html +share/gimp/help/C/filters/wmf.html +share/gimp/help/C/filters/xbm.html +share/gimp/help/C/filters/xjt.html +share/gimp/help/C/filters/xpm.html +share/gimp/help/C/filters/xwd.html +share/gimp/help/C/filters/zealouscrop.html +share/gimp/help/C/file/close.html +share/gimp/help/C/file/index.html +share/gimp/help/C/file/last_opened.html +share/gimp/help/C/file/quit.html +share/gimp/help/C/file/revert.html +share/gimp/help/C/contents.html +share/gimp/help/C/index.html +share/gimp/help/C/welcome.html +share/gimp/help/C/modes.html +share/gimp/help/images/eek.png +share/gimp/help/images/wilber.png +share/gimp/user_install +@exec test %D = ${LOCALBASE} || ln -s %D/share/aclocal/gimp.m4 ${LOCALBASE}/share/aclocal/gimp.m4 +@unexec test %D = ${LOCALBASE} || rm ${LOCALBASE}/share/aclocal/gimp.m4 +share/gimp/gimprc +share/gimp/gimprc_user +share/gimp/gtkrc +share/gimp/unitrc +share/gimp/gimp_logo.ppm +share/gimp/gimp_splash.ppm +share/gimp/gimp1_1_splash.ppm +share/gimp/ps-menurc +share/gimp/gtkrc.forest2 +@dirrm share/gimp/tips +@dirrm share/gimp/scripts +@dirrm share/gimp/patterns +@dirrm share/gimp/palettes +@dirrm share/gimp/help/images +@dirrm share/gimp/help/C/tools +@dirrm share/gimp/help/C/toolbox +@dirrm share/gimp/help/C/save +@dirrm share/gimp/help/C/paths +@dirrm share/gimp/help/C/open +@dirrm share/gimp/help/C/layers/stack +@dirrm share/gimp/help/C/layers +@dirrm share/gimp/help/C/image/view +@dirrm share/gimp/help/C/image/select +@dirrm share/gimp/help/C/image/image/transforms +@dirrm share/gimp/help/C/image/image/colors +@dirrm share/gimp/help/C/image/image +@dirrm share/gimp/help/C/image/edit +@dirrm share/gimp/help/C/image +@dirrm share/gimp/help/C/filters +@dirrm share/gimp/help/C/file +@dirrm share/gimp/help/C/dialogs/preferences +@dirrm share/gimp/help/C/dialogs/paths +@dirrm share/gimp/help/C/dialogs/palette_editor +@dirrm share/gimp/help/C/dialogs/layers +@dirrm share/gimp/help/C/dialogs/gradient_editor +@dirrm share/gimp/help/C/dialogs/display_filters +@dirrm share/gimp/help/C/dialogs/color_selectors +@dirrm share/gimp/help/C/dialogs/channels +@dirrm share/gimp/help/C/dialogs +@dirrm share/gimp/help/C/channels +@dirrm share/gimp/help/C +@dirrm share/gimp/gradients +@dirrm share/gimp/gimpressionist/Presets +@dirrm share/gimp/gimpressionist/Paper +@dirrm share/gimp/gimpressionist/Brushes +@dirrm share/gimp/gflare +@dirrm share/gimp/gfig +@dirrm share/gimp/fractalexplorer +@dirrm share/gimp/brushes +@dirrm share/gimp +@dirrm share/aclocal +@dirrm lib/locale/sv/LC_MESSAGES +@dirrm lib/locale/sk/LC_MESSAGES +@dirrm lib/locale/ru/LC_MESSAGES +@dirrm lib/locale/pl/LC_MESSAGES +@dirrm lib/locale/no/LC_MESSAGES +@dirrm lib/locale/nl/LC_MESSAGES +@dirrm lib/locale/ko/LC_MESSAGES +@dirrm lib/locale/ja/LC_MESSAGES +@dirrm lib/locale/it/LC_MESSAGES +@dirrm lib/locale/hu/LC_MESSAGES +@dirrm lib/locale/fr/LC_MESSAGES +@dirrm lib/locale/fi/LC_MESSAGES +@dirrm lib/locale/de/LC_MESSAGES +@dirrm lib/locale/da/LC_MESSAGES +@dirrm lib/locale/cs/LC_MESSAGES +@dirrm lib/gimp/1.1/plug-ins +@dirrm lib/gimp/1.1/modules +@dirrm include/libgimp +@dirrm include/gck |