summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2008-11-26 12:19:56 +0000
committerdrochner <drochner@pkgsrc.org>2008-11-26 12:19:56 +0000
commitb959a189a44087ee3722a033f03e0342665854c0 (patch)
treea2f558d11d00447627bfbab43507447b600bc883
parenta23705a97e441f36bd60f43dbaab1191663df4c8 (diff)
downloadpkgsrc-b959a189a44087ee3722a033f03e0342665854c0.tar.gz
add gimp-2.6.3
first cut on a pkg for gimp-2.6 (might replace gimp-2.4 after some testing)
-rw-r--r--graphics/gimp26/DESCR4
-rw-r--r--graphics/gimp26/Makefile88
-rw-r--r--graphics/gimp26/PLIST2047
-rw-r--r--graphics/gimp26/buildlink3.mk48
-rw-r--r--graphics/gimp26/distinfo8
-rw-r--r--graphics/gimp26/files/msgfmtstrip18
-rw-r--r--graphics/gimp26/options.mk29
-rw-r--r--graphics/gimp26/patches/patch-aa13
-rw-r--r--graphics/gimp26/patches/patch-ab38
-rw-r--r--graphics/gimp26/patches/patch-ac13
10 files changed, 2306 insertions, 0 deletions
diff --git a/graphics/gimp26/DESCR b/graphics/gimp26/DESCR
new file mode 100644
index 00000000000..c2a0e3ed07f
--- /dev/null
+++ b/graphics/gimp26/DESCR
@@ -0,0 +1,4 @@
+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 than 8 bits per channel.
diff --git a/graphics/gimp26/Makefile b/graphics/gimp26/Makefile
new file mode 100644
index 00000000000..7f8dae630cb
--- /dev/null
+++ b/graphics/gimp26/Makefile
@@ -0,0 +1,88 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+
+DISTNAME= gimp-2.6.3
+CATEGORIES= graphics
+MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v2.6/ \
+ ${MASTER_SITE_GNU:=gimp/v2.6/} \
+ ftp://ftp.gwdg.de/pub/misc/grafik/gimp/gimp/v2.6/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= adam@NetBSD.org
+HOMEPAGE= http://www.gimp.org/
+COMMENT= The GNU image manipulation program
+
+BUILD_DEPENDS+= p5-XML-Parser>=2.31nb1:../../textproc/p5-XML-Parser
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+CONFLICTS+= gimp<=1.2.3
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+USE_LIBTOOL= yes
+USE_PKGLOCALEDIR= yes
+USE_TOOLS+= gmake intltool msgfmt pkg-config
+USE_DIRS+= xdg-1.1
+
+PKG_SYSCONFSUBDIR= gimp/2.0
+
+PKGCONFIG_OVERRIDE= gimp.pc.in
+
+.include "../../mk/bsd.prefs.mk"
+
+BUILDLINK_API_DEPENDS.fontconfig+= fontconfig>=2.2.0
+BUILDLINK_API_DEPENDS.lcms+= lcms>=1.12
+
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS+= --disable-perl
+CONFIGURE_ARGS+= --disable-python
+CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
+
+UNLIMIT_RESOURCES+= datasize
+
+EGDIR= ${PREFIX}/share/examples/gimp-2.0
+.for f in controllerrc gimprc gtkrc menurc ps-menurc sessionrc templaterc unitrc
+CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
+.endfor
+
+# Ensure we export symbols in the linked shared object.
+LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS}
+
+PLIST_VARS+= remote twain
+.if exists(/System/Library/Frameworks/TWAIN.framework)
+PLIST.twain= yes
+.endif
+
+.include "options.mk"
+
+# The gettext version in pkgsrc cannot handle the .po files, so
+# we strip out usage of the newer features (context and fuzzy matches)
+post-patch:
+ for f in ${WRKSRC}/po/*.po ${WRKSRC}/po-libgimp/*.po ${WRKSRC}/po-plug-ins/*.po; do \
+ mv $$f $$f.original ; \
+ ${AWK} -f ${FILESDIR}/msgfmtstrip $$f.original > $$f ; \
+ done
+
+.include "../../databases/shared-mime-info/mimedb.mk"
+.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../fonts/fontconfig/buildlink3.mk"
+.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
+.include "../../graphics/babl/buildlink3.mk"
+.include "../../graphics/gegl/buildlink3.mk"
+.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../graphics/lcms/buildlink3.mk"
+.include "../../graphics/libart/buildlink3.mk"
+.include "../../graphics/libexif/buildlink3.mk"
+.include "../../graphics/png/buildlink3.mk"
+.include "../../graphics/tiff/buildlink3.mk"
+.include "../../graphics/libwmf/buildlink3.mk"
+.include "../../x11/gtk2/buildlink3.mk"
+.if !empty(PKG_BUILD_OPTIONS.gtk2:Mx11)
+PLIST.remote= yes
+.include "../../x11/libICE/buildlink3.mk"
+.include "../../x11/libSM/buildlink3.mk"
+.include "../../x11/libXmu/buildlink3.mk"
+.endif
+.include "../../x11/libXpm/buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/graphics/gimp26/PLIST b/graphics/gimp26/PLIST
new file mode 100644
index 00000000000..eb442415ed7
--- /dev/null
+++ b/graphics/gimp26/PLIST
@@ -0,0 +1,2047 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+bin/gimp
+bin/gimp-2.6
+bin/gimp-console
+bin/gimp-console-2.6
+bin/gimptool-2.0
+include/gimp-2.0/libgimp/gimp.h
+include/gimp-2.0/libgimp/gimp_pdb.h
+include/gimp-2.0/libgimp/gimpaspectpreview.h
+include/gimp-2.0/libgimp/gimpbrush_pdb.h
+include/gimp-2.0/libgimp/gimpbrushes.h
+include/gimp-2.0/libgimp/gimpbrushes_pdb.h
+include/gimp-2.0/libgimp/gimpbrushmenu.h
+include/gimp-2.0/libgimp/gimpbrushselect.h
+include/gimp-2.0/libgimp/gimpbrushselect_pdb.h
+include/gimp-2.0/libgimp/gimpbrushselectbutton.h
+include/gimp-2.0/libgimp/gimpbuffer_pdb.h
+include/gimp-2.0/libgimp/gimpchannel.h
+include/gimp-2.0/libgimp/gimpchannel_pdb.h
+include/gimp-2.0/libgimp/gimpcolor_pdb.h
+include/gimp-2.0/libgimp/gimpcompat.h
+include/gimp-2.0/libgimp/gimpcontext_pdb.h
+include/gimp-2.0/libgimp/gimpconvert_pdb.h
+include/gimp-2.0/libgimp/gimpdisplay_pdb.h
+include/gimp-2.0/libgimp/gimpdrawable.h
+include/gimp-2.0/libgimp/gimpdrawable_pdb.h
+include/gimp-2.0/libgimp/gimpdrawablepreview.h
+include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h
+include/gimp-2.0/libgimp/gimpedit_pdb.h
+include/gimp-2.0/libgimp/gimpenums.h
+include/gimp-2.0/libgimp/gimpexport.h
+include/gimp-2.0/libgimp/gimpfileops_pdb.h
+include/gimp-2.0/libgimp/gimpfloatingsel_pdb.h
+include/gimp-2.0/libgimp/gimpfontmenu.h
+include/gimp-2.0/libgimp/gimpfonts_pdb.h
+include/gimp-2.0/libgimp/gimpfontselect.h
+include/gimp-2.0/libgimp/gimpfontselect_pdb.h
+include/gimp-2.0/libgimp/gimpfontselectbutton.h
+include/gimp-2.0/libgimp/gimpgimprc.h
+include/gimp-2.0/libgimp/gimpgimprc_pdb.h
+include/gimp-2.0/libgimp/gimpgradient_pdb.h
+include/gimp-2.0/libgimp/gimpgradientmenu.h
+include/gimp-2.0/libgimp/gimpgradients.h
+include/gimp-2.0/libgimp/gimpgradients_pdb.h
+include/gimp-2.0/libgimp/gimpgradientselect.h
+include/gimp-2.0/libgimp/gimpgradientselect_pdb.h
+include/gimp-2.0/libgimp/gimpgradientselectbutton.h
+include/gimp-2.0/libgimp/gimpgrid_pdb.h
+include/gimp-2.0/libgimp/gimpguides_pdb.h
+include/gimp-2.0/libgimp/gimphelp_pdb.h
+include/gimp-2.0/libgimp/gimpimage.h
+include/gimp-2.0/libgimp/gimpimage_pdb.h
+include/gimp-2.0/libgimp/gimpimagecombobox.h
+include/gimp-2.0/libgimp/gimpitemcombobox.h
+include/gimp-2.0/libgimp/gimplayer.h
+include/gimp-2.0/libgimp/gimplayer_pdb.h
+include/gimp-2.0/libgimp/gimpmenu.h
+include/gimp-2.0/libgimp/gimpmessage_pdb.h
+include/gimp-2.0/libgimp/gimpmisc_pdb.h
+include/gimp-2.0/libgimp/gimppainttools_pdb.h
+include/gimp-2.0/libgimp/gimppalette.h
+include/gimp-2.0/libgimp/gimppalette_pdb.h
+include/gimp-2.0/libgimp/gimppalettemenu.h
+include/gimp-2.0/libgimp/gimppalettes.h
+include/gimp-2.0/libgimp/gimppalettes_pdb.h
+include/gimp-2.0/libgimp/gimppaletteselect.h
+include/gimp-2.0/libgimp/gimppaletteselect_pdb.h
+include/gimp-2.0/libgimp/gimppaletteselectbutton.h
+include/gimp-2.0/libgimp/gimpparasite_pdb.h
+include/gimp-2.0/libgimp/gimppaths_pdb.h
+include/gimp-2.0/libgimp/gimppattern_pdb.h
+include/gimp-2.0/libgimp/gimppatternmenu.h
+include/gimp-2.0/libgimp/gimppatterns.h
+include/gimp-2.0/libgimp/gimppatterns_pdb.h
+include/gimp-2.0/libgimp/gimppatternselect.h
+include/gimp-2.0/libgimp/gimppatternselect_pdb.h
+include/gimp-2.0/libgimp/gimppatternselectbutton.h
+include/gimp-2.0/libgimp/gimppixbuf.h
+include/gimp-2.0/libgimp/gimppixelfetcher.h
+include/gimp-2.0/libgimp/gimppixelrgn.h
+include/gimp-2.0/libgimp/gimpplugin.h
+include/gimp-2.0/libgimp/gimpplugin_pdb.h
+include/gimp-2.0/libgimp/gimpprocbrowserdialog.h
+include/gimp-2.0/libgimp/gimpproceduraldb.h
+include/gimp-2.0/libgimp/gimpproceduraldb_pdb.h
+include/gimp-2.0/libgimp/gimpprocview.h
+include/gimp-2.0/libgimp/gimpprogress.h
+include/gimp-2.0/libgimp/gimpprogress_pdb.h
+include/gimp-2.0/libgimp/gimpprogressbar.h
+include/gimp-2.0/libgimp/gimpregioniterator.h
+include/gimp-2.0/libgimp/gimpselectbutton.h
+include/gimp-2.0/libgimp/gimpselection.h
+include/gimp-2.0/libgimp/gimpselection_pdb.h
+include/gimp-2.0/libgimp/gimpselectiontools_pdb.h
+include/gimp-2.0/libgimp/gimptextlayer_pdb.h
+include/gimp-2.0/libgimp/gimptexttool_pdb.h
+include/gimp-2.0/libgimp/gimptile.h
+include/gimp-2.0/libgimp/gimptransformtools_pdb.h
+include/gimp-2.0/libgimp/gimptypes.h
+include/gimp-2.0/libgimp/gimpui.h
+include/gimp-2.0/libgimp/gimpuitypes.h
+include/gimp-2.0/libgimp/gimpundo_pdb.h
+include/gimp-2.0/libgimp/gimpunit_pdb.h
+include/gimp-2.0/libgimp/gimpvectors_pdb.h
+include/gimp-2.0/libgimp/gimpzoompreview.h
+include/gimp-2.0/libgimpbase/gimpbase.h
+include/gimp-2.0/libgimpbase/gimpbaseenums.h
+include/gimp-2.0/libgimpbase/gimpbasetypes.h
+include/gimp-2.0/libgimpbase/gimpchecks.h
+include/gimp-2.0/libgimpbase/gimpcpuaccel.h
+include/gimp-2.0/libgimpbase/gimpdatafiles.h
+include/gimp-2.0/libgimpbase/gimpenv.h
+include/gimp-2.0/libgimpbase/gimplimits.h
+include/gimp-2.0/libgimpbase/gimpmemsize.h
+include/gimp-2.0/libgimpbase/gimpparam.h
+include/gimp-2.0/libgimpbase/gimpparasite.h
+include/gimp-2.0/libgimpbase/gimpparasiteio.h
+include/gimp-2.0/libgimpbase/gimprectangle.h
+include/gimp-2.0/libgimpbase/gimpsignal.h
+include/gimp-2.0/libgimpbase/gimpunit.h
+include/gimp-2.0/libgimpbase/gimputils.h
+include/gimp-2.0/libgimpbase/gimpversion.h
+include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h
+include/gimp-2.0/libgimpcolor/gimpbilinear.h
+include/gimp-2.0/libgimpcolor/gimpcmyk.h
+include/gimp-2.0/libgimpcolor/gimpcolor.h
+include/gimp-2.0/libgimpcolor/gimpcolormanaged.h
+include/gimp-2.0/libgimpcolor/gimpcolorspace.h
+include/gimp-2.0/libgimpcolor/gimpcolortypes.h
+include/gimp-2.0/libgimpcolor/gimphsl.h
+include/gimp-2.0/libgimpcolor/gimphsv.h
+include/gimp-2.0/libgimpcolor/gimprgb.h
+include/gimp-2.0/libgimpconfig/gimpcolorconfig-enums.h
+include/gimp-2.0/libgimpconfig/gimpcolorconfig.h
+include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h
+include/gimp-2.0/libgimpconfig/gimpconfig-error.h
+include/gimp-2.0/libgimpconfig/gimpconfig-iface.h
+include/gimp-2.0/libgimpconfig/gimpconfig-params.h
+include/gimp-2.0/libgimpconfig/gimpconfig-path.h
+include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h
+include/gimp-2.0/libgimpconfig/gimpconfig-utils.h
+include/gimp-2.0/libgimpconfig/gimpconfig.h
+include/gimp-2.0/libgimpconfig/gimpconfigtypes.h
+include/gimp-2.0/libgimpconfig/gimpconfigwriter.h
+include/gimp-2.0/libgimpconfig/gimpscanner.h
+include/gimp-2.0/libgimpmath/gimpmath.h
+include/gimp-2.0/libgimpmath/gimpmathtypes.h
+include/gimp-2.0/libgimpmath/gimpmatrix.h
+include/gimp-2.0/libgimpmath/gimpmd5.h
+include/gimp-2.0/libgimpmath/gimpvector.h
+include/gimp-2.0/libgimpmodule/gimpmodule.h
+include/gimp-2.0/libgimpmodule/gimpmoduledb.h
+include/gimp-2.0/libgimpmodule/gimpmoduletypes.h
+include/gimp-2.0/libgimpthumb/gimpthumb-enums.h
+include/gimp-2.0/libgimpthumb/gimpthumb-error.h
+include/gimp-2.0/libgimpthumb/gimpthumb-types.h
+include/gimp-2.0/libgimpthumb/gimpthumb-utils.h
+include/gimp-2.0/libgimpthumb/gimpthumb.h
+include/gimp-2.0/libgimpthumb/gimpthumbnail.h
+include/gimp-2.0/libgimpwidgets/gimpbrowser.h
+include/gimp-2.0/libgimpwidgets/gimpbutton.h
+include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h
+include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h
+include/gimp-2.0/libgimpwidgets/gimpcellrenderertoggle.h
+include/gimp-2.0/libgimpwidgets/gimpchainbutton.h
+include/gimp-2.0/libgimpwidgets/gimpcolorarea.h
+include/gimp-2.0/libgimpwidgets/gimpcolorbutton.h
+include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h
+include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h
+include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h
+include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h
+include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h
+include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h
+include/gimp-2.0/libgimpwidgets/gimpcolorscale.h
+include/gimp-2.0/libgimpwidgets/gimpcolorscales.h
+include/gimp-2.0/libgimpwidgets/gimpcolorselect.h
+include/gimp-2.0/libgimpwidgets/gimpcolorselection.h
+include/gimp-2.0/libgimpwidgets/gimpcolorselector.h
+include/gimp-2.0/libgimpwidgets/gimpcontroller.h
+include/gimp-2.0/libgimpwidgets/gimpdialog.h
+include/gimp-2.0/libgimpwidgets/gimpenumcombobox.h
+include/gimp-2.0/libgimpwidgets/gimpenumlabel.h
+include/gimp-2.0/libgimpwidgets/gimpenumstore.h
+include/gimp-2.0/libgimpwidgets/gimpenumwidgets.h
+include/gimp-2.0/libgimpwidgets/gimpfileentry.h
+include/gimp-2.0/libgimpwidgets/gimpframe.h
+include/gimp-2.0/libgimpwidgets/gimphelpui.h
+include/gimp-2.0/libgimpwidgets/gimphintbox.h
+include/gimp-2.0/libgimpwidgets/gimpintcombobox.h
+include/gimp-2.0/libgimpwidgets/gimpintstore.h
+include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h
+include/gimp-2.0/libgimpwidgets/gimpnumberpairentry.h
+include/gimp-2.0/libgimpwidgets/gimpoffsetarea.h
+include/gimp-2.0/libgimpwidgets/gimpoldwidgets.h
+include/gimp-2.0/libgimpwidgets/gimppageselector.h
+include/gimp-2.0/libgimpwidgets/gimppatheditor.h
+include/gimp-2.0/libgimpwidgets/gimppickbutton.h
+include/gimp-2.0/libgimpwidgets/gimppixmap.h
+include/gimp-2.0/libgimpwidgets/gimppreview.h
+include/gimp-2.0/libgimpwidgets/gimppreviewarea.h
+include/gimp-2.0/libgimpwidgets/gimppropwidgets.h
+include/gimp-2.0/libgimpwidgets/gimpquerybox.h
+include/gimp-2.0/libgimpwidgets/gimpruler.h
+include/gimp-2.0/libgimpwidgets/gimpscaleentry.h
+include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h
+include/gimp-2.0/libgimpwidgets/gimpsizeentry.h
+include/gimp-2.0/libgimpwidgets/gimpstock.h
+include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h
+include/gimp-2.0/libgimpwidgets/gimpunitmenu.h
+include/gimp-2.0/libgimpwidgets/gimpwidgets.h
+include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h
+include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h
+include/gimp-2.0/libgimpwidgets/gimpzoommodel.h
+lib/gimp/2.0/environ/default.env
+lib/gimp/2.0/interpreters/default.interp
+lib/gimp/2.0/modules/libcolor-selector-cmyk.la
+lib/gimp/2.0/modules/libcolor-selector-water.la
+lib/gimp/2.0/modules/libcolor-selector-wheel.la
+lib/gimp/2.0/modules/libcontroller-midi.la
+lib/gimp/2.0/modules/libdisplay-filter-color-blind.la
+lib/gimp/2.0/modules/libdisplay-filter-gamma.la
+lib/gimp/2.0/modules/libdisplay-filter-high-contrast.la
+lib/gimp/2.0/modules/libdisplay-filter-lcms.la
+lib/gimp/2.0/modules/libdisplay-filter-proof.la
+lib/gimp/2.0/plug-ins/alien-map
+lib/gimp/2.0/plug-ins/align-layers
+lib/gimp/2.0/plug-ins/animation-optimize
+lib/gimp/2.0/plug-ins/animation-play
+lib/gimp/2.0/plug-ins/antialias
+lib/gimp/2.0/plug-ins/apply-canvas
+lib/gimp/2.0/plug-ins/blinds
+lib/gimp/2.0/plug-ins/blur
+lib/gimp/2.0/plug-ins/blur-gauss
+lib/gimp/2.0/plug-ins/blur-gauss-selective
+lib/gimp/2.0/plug-ins/blur-motion
+lib/gimp/2.0/plug-ins/border-average
+lib/gimp/2.0/plug-ins/bump-map
+lib/gimp/2.0/plug-ins/cartoon
+lib/gimp/2.0/plug-ins/channel-mixer
+lib/gimp/2.0/plug-ins/checkerboard
+lib/gimp/2.0/plug-ins/cml-explorer
+lib/gimp/2.0/plug-ins/color-cube-analyze
+lib/gimp/2.0/plug-ins/color-enhance
+lib/gimp/2.0/plug-ins/color-exchange
+lib/gimp/2.0/plug-ins/color-rotate
+lib/gimp/2.0/plug-ins/color-to-alpha
+lib/gimp/2.0/plug-ins/colorify
+lib/gimp/2.0/plug-ins/colormap-remap
+lib/gimp/2.0/plug-ins/compose
+lib/gimp/2.0/plug-ins/contrast-normalize
+lib/gimp/2.0/plug-ins/contrast-retinex
+lib/gimp/2.0/plug-ins/contrast-stretch
+lib/gimp/2.0/plug-ins/contrast-stretch-hsv
+lib/gimp/2.0/plug-ins/convolution-matrix
+lib/gimp/2.0/plug-ins/crop-auto
+lib/gimp/2.0/plug-ins/crop-zealous
+lib/gimp/2.0/plug-ins/cubism
+lib/gimp/2.0/plug-ins/curve-bend
+lib/gimp/2.0/plug-ins/decompose
+lib/gimp/2.0/plug-ins/deinterlace
+lib/gimp/2.0/plug-ins/depth-merge
+lib/gimp/2.0/plug-ins/despeckle
+lib/gimp/2.0/plug-ins/destripe
+lib/gimp/2.0/plug-ins/diffraction
+lib/gimp/2.0/plug-ins/displace
+lib/gimp/2.0/plug-ins/edge
+lib/gimp/2.0/plug-ins/edge-dog
+lib/gimp/2.0/plug-ins/edge-laplace
+lib/gimp/2.0/plug-ins/edge-neon
+lib/gimp/2.0/plug-ins/edge-sobel
+lib/gimp/2.0/plug-ins/emboss
+lib/gimp/2.0/plug-ins/engrave
+lib/gimp/2.0/plug-ins/file-aa
+lib/gimp/2.0/plug-ins/file-bmp
+lib/gimp/2.0/plug-ins/file-cel
+lib/gimp/2.0/plug-ins/file-compressor
+lib/gimp/2.0/plug-ins/file-csource
+lib/gimp/2.0/plug-ins/file-desktop-link
+lib/gimp/2.0/plug-ins/file-dicom
+lib/gimp/2.0/plug-ins/file-faxg3
+lib/gimp/2.0/plug-ins/file-fits
+lib/gimp/2.0/plug-ins/file-fli
+lib/gimp/2.0/plug-ins/file-gbr
+lib/gimp/2.0/plug-ins/file-gif-load
+lib/gimp/2.0/plug-ins/file-gif-save
+lib/gimp/2.0/plug-ins/file-gih
+lib/gimp/2.0/plug-ins/file-glob
+lib/gimp/2.0/plug-ins/file-header
+lib/gimp/2.0/plug-ins/file-html-table
+lib/gimp/2.0/plug-ins/file-ico
+lib/gimp/2.0/plug-ins/file-jpeg
+lib/gimp/2.0/plug-ins/file-mng
+lib/gimp/2.0/plug-ins/file-pat
+lib/gimp/2.0/plug-ins/file-pcx
+lib/gimp/2.0/plug-ins/file-pix
+lib/gimp/2.0/plug-ins/file-png
+lib/gimp/2.0/plug-ins/file-pnm
+lib/gimp/2.0/plug-ins/file-ps
+lib/gimp/2.0/plug-ins/file-psd-load
+lib/gimp/2.0/plug-ins/file-psd-save
+lib/gimp/2.0/plug-ins/file-psp
+lib/gimp/2.0/plug-ins/file-raw
+lib/gimp/2.0/plug-ins/file-sgi
+lib/gimp/2.0/plug-ins/file-sunras
+lib/gimp/2.0/plug-ins/file-svg
+lib/gimp/2.0/plug-ins/file-tga
+lib/gimp/2.0/plug-ins/file-tiff-load
+lib/gimp/2.0/plug-ins/file-tiff-save
+lib/gimp/2.0/plug-ins/file-uri
+lib/gimp/2.0/plug-ins/file-wmf
+lib/gimp/2.0/plug-ins/file-xbm
+lib/gimp/2.0/plug-ins/file-xjt
+lib/gimp/2.0/plug-ins/file-xpm
+lib/gimp/2.0/plug-ins/file-xwd
+lib/gimp/2.0/plug-ins/film
+lib/gimp/2.0/plug-ins/filter-pack
+lib/gimp/2.0/plug-ins/flame
+lib/gimp/2.0/plug-ins/fractal-explorer
+lib/gimp/2.0/plug-ins/fractal-trace
+lib/gimp/2.0/plug-ins/gee
+lib/gimp/2.0/plug-ins/gee-zoom
+lib/gimp/2.0/plug-ins/gfig
+lib/gimp/2.0/plug-ins/gimpressionist
+lib/gimp/2.0/plug-ins/gradient-flare
+lib/gimp/2.0/plug-ins/gradient-map
+lib/gimp/2.0/plug-ins/grid
+lib/gimp/2.0/plug-ins/guillotine
+lib/gimp/2.0/plug-ins/help
+lib/gimp/2.0/plug-ins/hot
+lib/gimp/2.0/plug-ins/ifs-compose
+lib/gimp/2.0/plug-ins/illusion
+lib/gimp/2.0/plug-ins/imagemap
+lib/gimp/2.0/plug-ins/iwarp
+lib/gimp/2.0/plug-ins/jigsaw
+lib/gimp/2.0/plug-ins/lcms
+lib/gimp/2.0/plug-ins/lens-apply
+lib/gimp/2.0/plug-ins/lens-distortion
+lib/gimp/2.0/plug-ins/lens-flare
+lib/gimp/2.0/plug-ins/lighting
+lib/gimp/2.0/plug-ins/mail
+lib/gimp/2.0/plug-ins/map-object
+lib/gimp/2.0/plug-ins/max-rgb
+lib/gimp/2.0/plug-ins/maze
+lib/gimp/2.0/plug-ins/metadata
+lib/gimp/2.0/plug-ins/mosaic
+lib/gimp/2.0/plug-ins/newsprint
+lib/gimp/2.0/plug-ins/nl-filter
+lib/gimp/2.0/plug-ins/noise-hsv
+lib/gimp/2.0/plug-ins/noise-randomize
+lib/gimp/2.0/plug-ins/noise-rgb
+lib/gimp/2.0/plug-ins/noise-solid
+lib/gimp/2.0/plug-ins/noise-spread
+lib/gimp/2.0/plug-ins/nova
+lib/gimp/2.0/plug-ins/oilify
+lib/gimp/2.0/plug-ins/pagecurl
+lib/gimp/2.0/plug-ins/photocopy
+lib/gimp/2.0/plug-ins/pixelize
+lib/gimp/2.0/plug-ins/plasma
+lib/gimp/2.0/plug-ins/plugin-browser
+lib/gimp/2.0/plug-ins/polar-coords
+lib/gimp/2.0/plug-ins/print
+lib/gimp/2.0/plug-ins/procedure-browser
+lib/gimp/2.0/plug-ins/qbist
+lib/gimp/2.0/plug-ins/red-eye-removal
+lib/gimp/2.0/plug-ins/ripple
+lib/gimp/2.0/plug-ins/rotate
+lib/gimp/2.0/plug-ins/sample-colorize
+lib/gimp/2.0/plug-ins/screenshot
+lib/gimp/2.0/plug-ins/script-fu
+lib/gimp/2.0/plug-ins/selection-to-path
+lib/gimp/2.0/plug-ins/semi-flatten
+lib/gimp/2.0/plug-ins/sharpen
+lib/gimp/2.0/plug-ins/shift
+lib/gimp/2.0/plug-ins/sinus
+lib/gimp/2.0/plug-ins/smooth-palette
+lib/gimp/2.0/plug-ins/softglow
+lib/gimp/2.0/plug-ins/sparkle
+lib/gimp/2.0/plug-ins/sphere-designer
+lib/gimp/2.0/plug-ins/threshold-alpha
+lib/gimp/2.0/plug-ins/tile
+lib/gimp/2.0/plug-ins/tile-glass
+lib/gimp/2.0/plug-ins/tile-paper
+lib/gimp/2.0/plug-ins/tile-seamless
+lib/gimp/2.0/plug-ins/tile-small
+lib/gimp/2.0/plug-ins/unit-editor
+lib/gimp/2.0/plug-ins/unsharp-mask
+lib/gimp/2.0/plug-ins/value-invert
+lib/gimp/2.0/plug-ins/value-propagate
+lib/gimp/2.0/plug-ins/van-gogh-lic
+lib/gimp/2.0/plug-ins/video
+lib/gimp/2.0/plug-ins/warp
+lib/gimp/2.0/plug-ins/waves
+lib/gimp/2.0/plug-ins/web-browser
+lib/gimp/2.0/plug-ins/whirl-pinch
+lib/gimp/2.0/plug-ins/wind
+lib/libgimp-2.0.la
+lib/libgimpbase-2.0.la
+lib/libgimpcolor-2.0.la
+lib/libgimpconfig-2.0.la
+lib/libgimpmath-2.0.la
+lib/libgimpmodule-2.0.la
+lib/libgimpthumb-2.0.la
+lib/libgimpui-2.0.la
+lib/libgimpwidgets-2.0.la
+lib/pkgconfig/gimp-2.0.pc
+lib/pkgconfig/gimpthumb-2.0.pc
+lib/pkgconfig/gimpui-2.0.pc
+man/man1/gimp-2.6.1
+man/man1/gimp-console-2.6.1
+man/man1/gimp-console.1
+man/man1/gimp.1
+man/man1/gimptool-2.0.1
+man/man5/gimprc-2.6.5
+man/man5/gimprc.5
+share/aclocal/gimp-2.0.m4
+share/applications/gimp.desktop
+share/examples/gimp-2.0/controllerrc
+share/examples/gimp-2.0/gimprc
+share/examples/gimp-2.0/gtkrc
+share/examples/gimp-2.0/menurc
+share/examples/gimp-2.0/ps-menurc
+share/examples/gimp-2.0/sessionrc
+share/examples/gimp-2.0/templaterc
+share/examples/gimp-2.0/unitrc
+share/gimp/2.0/brushes/10x10square.gbr
+share/gimp/2.0/brushes/10x10squareBlur.gbr
+share/gimp/2.0/brushes/20x20square.gbr
+share/gimp/2.0/brushes/20x20squareBlur.gbr
+share/gimp/2.0/brushes/5x5square.gbr
+share/gimp/2.0/brushes/5x5squareBlur.gbr
+share/gimp/2.0/brushes/Calligraphic-Brush-0.vbr
+share/gimp/2.0/brushes/Calligraphic-Brush-1.vbr
+share/gimp/2.0/brushes/Calligraphic-Brush-2.vbr
+share/gimp/2.0/brushes/Calligraphic-Brush-3.vbr
+share/gimp/2.0/brushes/Circle-1.vbr
+share/gimp/2.0/brushes/Circle-11.vbr
+share/gimp/2.0/brushes/Circle-13.vbr
+share/gimp/2.0/brushes/Circle-15.vbr
+share/gimp/2.0/brushes/Circle-17.vbr
+share/gimp/2.0/brushes/Circle-19.vbr
+share/gimp/2.0/brushes/Circle-3.vbr
+share/gimp/2.0/brushes/Circle-5.vbr
+share/gimp/2.0/brushes/Circle-7.vbr
+share/gimp/2.0/brushes/Circle-9.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-11.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-13.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-15.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-17.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-19.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-3.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-5.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-7.vbr
+share/gimp/2.0/brushes/Circle-Fuzzy-9.vbr
+share/gimp/2.0/brushes/Diagonal-Star-11.vbr
+share/gimp/2.0/brushes/Diagonal-Star-17.vbr
+share/gimp/2.0/brushes/Diagonal-Star-25.vbr
+share/gimp/2.0/brushes/SketchBrush-16.gih
+share/gimp/2.0/brushes/SketchBrush-32.gih
+share/gimp/2.0/brushes/SketchBrush-64.gih
+share/gimp/2.0/brushes/confetti.gbr
+share/gimp/2.0/brushes/confetti.gih
+share/gimp/2.0/brushes/dunes.gbr
+share/gimp/2.0/brushes/feltpen.gih
+share/gimp/2.0/brushes/galaxy.gbr
+share/gimp/2.0/brushes/galaxy_big.gbr
+share/gimp/2.0/brushes/galaxy_small.gbr
+share/gimp/2.0/brushes/hsparks.gih
+share/gimp/2.0/brushes/pepper.gbr
+share/gimp/2.0/brushes/pixel.gbr
+share/gimp/2.0/brushes/vine.gih
+share/gimp/2.0/fractalexplorer/Asteroid_Field
+share/gimp/2.0/fractalexplorer/Bar_Code_Label
+share/gimp/2.0/fractalexplorer/Beauty_of_Nature
+share/gimp/2.0/fractalexplorer/Blue_Curtain
+share/gimp/2.0/fractalexplorer/Car_Track
+share/gimp/2.0/fractalexplorer/Energetic_Diamond
+share/gimp/2.0/fractalexplorer/Explosive
+share/gimp/2.0/fractalexplorer/Flower
+share/gimp/2.0/fractalexplorer/Fragments
+share/gimp/2.0/fractalexplorer/Hemp
+share/gimp/2.0/fractalexplorer/High_Voltage
+share/gimp/2.0/fractalexplorer/Hoops
+share/gimp/2.0/fractalexplorer/Ice_Crystal
+share/gimp/2.0/fractalexplorer/Leaves
+share/gimp/2.0/fractalexplorer/Lightning
+share/gimp/2.0/fractalexplorer/Mandelbrot
+share/gimp/2.0/fractalexplorer/Marble
+share/gimp/2.0/fractalexplorer/Marble2
+share/gimp/2.0/fractalexplorer/Medusa
+share/gimp/2.0/fractalexplorer/Nautilus
+share/gimp/2.0/fractalexplorer/Nebula
+share/gimp/2.0/fractalexplorer/Plant
+share/gimp/2.0/fractalexplorer/Rose
+share/gimp/2.0/fractalexplorer/Saturn
+share/gimp/2.0/fractalexplorer/Snow_Crystal
+share/gimp/2.0/fractalexplorer/Soma
+share/gimp/2.0/fractalexplorer/Spark
+share/gimp/2.0/fractalexplorer/Suns
+share/gimp/2.0/fractalexplorer/Tentacles
+share/gimp/2.0/fractalexplorer/The_Green_Place
+share/gimp/2.0/fractalexplorer/Wave
+share/gimp/2.0/fractalexplorer/Wood
+share/gimp/2.0/fractalexplorer/Zooming_Circle
+share/gimp/2.0/gfig/A_star
+share/gimp/2.0/gfig/curves
+share/gimp/2.0/gfig/polys
+share/gimp/2.0/gfig/ring
+share/gimp/2.0/gfig/ring+star
+share/gimp/2.0/gfig/simily
+share/gimp/2.0/gfig/spirals_and_stars
+share/gimp/2.0/gfig/sprial
+share/gimp/2.0/gfig/star2
+share/gimp/2.0/gfig/stars
+share/gimp/2.0/gflare/Bright_Star
+share/gimp/2.0/gflare/Classic
+share/gimp/2.0/gflare/Default
+share/gimp/2.0/gflare/Distant_Sun
+share/gimp/2.0/gflare/GFlare_101
+share/gimp/2.0/gflare/GFlare_102
+share/gimp/2.0/gflare/Hidden_Planet
+share/gimp/2.0/gimpressionist/Brushes/arrow01.pgm
+share/gimp/2.0/gimpressionist/Brushes/ball.ppm
+share/gimp/2.0/gimpressionist/Brushes/blob.ppm
+share/gimp/2.0/gimpressionist/Brushes/box.ppm
+share/gimp/2.0/gimpressionist/Brushes/chalk01.pgm
+share/gimp/2.0/gimpressionist/Brushes/cone.ppm
+share/gimp/2.0/gimpressionist/Brushes/crayon01.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon02.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon03.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon04.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon05.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon06.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon07.pgm
+share/gimp/2.0/gimpressionist/Brushes/crayon08.pgm
+share/gimp/2.0/gimpressionist/Brushes/defaultbrush.pgm
+share/gimp/2.0/gimpressionist/Brushes/dribble.pgm
+share/gimp/2.0/gimpressionist/Brushes/fabric.pgm
+share/gimp/2.0/gimpressionist/Brushes/fabric01.pgm
+share/gimp/2.0/gimpressionist/Brushes/fabric02.pgm
+share/gimp/2.0/gimpressionist/Brushes/fabric03.pgm
+share/gimp/2.0/gimpressionist/Brushes/flower01.pgm
+share/gimp/2.0/gimpressionist/Brushes/flower02.pgm
+share/gimp/2.0/gimpressionist/Brushes/flower03.pgm
+share/gimp/2.0/gimpressionist/Brushes/flower04.pgm
+share/gimp/2.0/gimpressionist/Brushes/grad01.pgm
+share/gimp/2.0/gimpressionist/Brushes/grad02.pgm
+share/gimp/2.0/gimpressionist/Brushes/grad03.pgm
+share/gimp/2.0/gimpressionist/Brushes/heart.ppm
+share/gimp/2.0/gimpressionist/Brushes/leaf01.pgm
+share/gimp/2.0/gimpressionist/Brushes/paintbrush.pgm
+share/gimp/2.0/gimpressionist/Brushes/paintbrush01.pgm
+share/gimp/2.0/gimpressionist/Brushes/paintbrush02.pgm
+share/gimp/2.0/gimpressionist/Brushes/paintbrush03.pgm
+share/gimp/2.0/gimpressionist/Brushes/paintbrush04.pgm
+share/gimp/2.0/gimpressionist/Brushes/paper01.pgm
+share/gimp/2.0/gimpressionist/Brushes/paper02.pgm
+share/gimp/2.0/gimpressionist/Brushes/paper03.pgm
+share/gimp/2.0/gimpressionist/Brushes/paper04.pgm
+share/gimp/2.0/gimpressionist/Brushes/pentagram.pgm
+share/gimp/2.0/gimpressionist/Brushes/scribble.pgm
+share/gimp/2.0/gimpressionist/Brushes/shape01.pgm
+share/gimp/2.0/gimpressionist/Brushes/shape02.pgm
+share/gimp/2.0/gimpressionist/Brushes/shape03.pgm
+share/gimp/2.0/gimpressionist/Brushes/shape04.pgm
+share/gimp/2.0/gimpressionist/Brushes/snow1.pgm
+share/gimp/2.0/gimpressionist/Brushes/sphere.ppm
+share/gimp/2.0/gimpressionist/Brushes/splat1.pgm
+share/gimp/2.0/gimpressionist/Brushes/splat2.pgm
+share/gimp/2.0/gimpressionist/Brushes/splat3.pgm
+share/gimp/2.0/gimpressionist/Brushes/spunge01.pgm
+share/gimp/2.0/gimpressionist/Brushes/spunge02.pgm
+share/gimp/2.0/gimpressionist/Brushes/spunge03.pgm
+share/gimp/2.0/gimpressionist/Brushes/spunge04.pgm
+share/gimp/2.0/gimpressionist/Brushes/spunge05.pgm
+share/gimp/2.0/gimpressionist/Brushes/strange01.pgm
+share/gimp/2.0/gimpressionist/Brushes/thegimp.pgm
+share/gimp/2.0/gimpressionist/Brushes/torus.ppm
+share/gimp/2.0/gimpressionist/Brushes/wavy.pgm
+share/gimp/2.0/gimpressionist/Brushes/weave.pgm
+share/gimp/2.0/gimpressionist/Brushes/worm.pgm
+share/gimp/2.0/gimpressionist/Paper/bricks.pgm
+share/gimp/2.0/gimpressionist/Paper/bricks2.pgm
+share/gimp/2.0/gimpressionist/Paper/burlap.pgm
+share/gimp/2.0/gimpressionist/Paper/canvas2.pgm
+share/gimp/2.0/gimpressionist/Paper/defaultpaper.pgm
+share/gimp/2.0/gimpressionist/Paper/marble.pgm
+share/gimp/2.0/gimpressionist/Paper/marble2.pgm
+share/gimp/2.0/gimpressionist/Paper/stone.pgm
+share/gimp/2.0/gimpressionist/Paper/struc.pgm
+share/gimp/2.0/gimpressionist/Presets/ApplyCanvas
+share/gimp/2.0/gimpressionist/Presets/Ballpark
+share/gimp/2.0/gimpressionist/Presets/Canvas
+share/gimp/2.0/gimpressionist/Presets/Crosshatch
+share/gimp/2.0/gimpressionist/Presets/Cubism
+share/gimp/2.0/gimpressionist/Presets/Dotify
+share/gimp/2.0/gimpressionist/Presets/Embroidery
+share/gimp/2.0/gimpressionist/Presets/Feathers
+share/gimp/2.0/gimpressionist/Presets/Felt-marker
+share/gimp/2.0/gimpressionist/Presets/Flowerbed
+share/gimp/2.0/gimpressionist/Presets/Furry
+share/gimp/2.0/gimpressionist/Presets/Line-art
+share/gimp/2.0/gimpressionist/Presets/Line-art-2
+share/gimp/2.0/gimpressionist/Presets/Maggot-invasion
+share/gimp/2.0/gimpressionist/Presets/MarbleMadness
+share/gimp/2.0/gimpressionist/Presets/Mossy
+share/gimp/2.0/gimpressionist/Presets/Painted_Rock
+share/gimp/2.0/gimpressionist/Presets/Parquette
+share/gimp/2.0/gimpressionist/Presets/Patchwork
+share/gimp/2.0/gimpressionist/Presets/Ringworks
+share/gimp/2.0/gimpressionist/Presets/Sample
+share/gimp/2.0/gimpressionist/Presets/Smash
+share/gimp/2.0/gimpressionist/Presets/Straws
+share/gimp/2.0/gimpressionist/Presets/Weave
+share/gimp/2.0/gimpressionist/Presets/Wormcan
+share/gimp/2.0/gradients/Abstract_1.ggr
+share/gimp/2.0/gradients/Abstract_2.ggr
+share/gimp/2.0/gradients/Abstract_3.ggr
+share/gimp/2.0/gradients/Aneurism.ggr
+share/gimp/2.0/gradients/Blinds.ggr
+share/gimp/2.0/gradients/Blue_Green.ggr
+share/gimp/2.0/gradients/Browns.ggr
+share/gimp/2.0/gradients/Brushed_Aluminium.ggr
+share/gimp/2.0/gradients/Burning_Paper.ggr
+share/gimp/2.0/gradients/Burning_Transparency.ggr
+share/gimp/2.0/gradients/CD.ggr
+share/gimp/2.0/gradients/CD_Half.ggr
+share/gimp/2.0/gradients/Caribbean_Blues.ggr
+share/gimp/2.0/gradients/Coffee.ggr
+share/gimp/2.0/gradients/Cold_Steel.ggr
+share/gimp/2.0/gradients/Cold_Steel_2.ggr
+share/gimp/2.0/gradients/Crown_molding.ggr
+share/gimp/2.0/gradients/Dark_1.ggr
+share/gimp/2.0/gradients/Deep_Sea.ggr
+share/gimp/2.0/gradients/Default.ggr
+share/gimp/2.0/gradients/Flare_Glow_Angular_1.ggr
+share/gimp/2.0/gradients/Flare_Glow_Radial_1.ggr
+share/gimp/2.0/gradients/Flare_Glow_Radial_2.ggr
+share/gimp/2.0/gradients/Flare_Glow_Radial_3.ggr
+share/gimp/2.0/gradients/Flare_Glow_Radial_4.ggr
+share/gimp/2.0/gradients/Flare_Radial_101.ggr
+share/gimp/2.0/gradients/Flare_Radial_102.ggr
+share/gimp/2.0/gradients/Flare_Radial_103.ggr
+share/gimp/2.0/gradients/Flare_Rays_Radial_1.ggr
+share/gimp/2.0/gradients/Flare_Rays_Radial_2.ggr
+share/gimp/2.0/gradients/Flare_Rays_Size_1.ggr
+share/gimp/2.0/gradients/Flare_Sizefac_101.ggr
+share/gimp/2.0/gradients/Four_bars.ggr
+share/gimp/2.0/gradients/French_flag.ggr
+share/gimp/2.0/gradients/French_flag_smooth.ggr
+share/gimp/2.0/gradients/Full_saturation_spectrum_CCW.ggr
+share/gimp/2.0/gradients/Full_saturation_spectrum_CW.ggr
+share/gimp/2.0/gradients/German_flag.ggr
+share/gimp/2.0/gradients/German_flag_smooth.ggr
+share/gimp/2.0/gradients/Golden.ggr
+share/gimp/2.0/gradients/Greens.ggr
+share/gimp/2.0/gradients/Horizon_1.ggr
+share/gimp/2.0/gradients/Horizon_2.ggr
+share/gimp/2.0/gradients/Incandescent.ggr
+share/gimp/2.0/gradients/Land_1.ggr
+share/gimp/2.0/gradients/Land_and_Sea.ggr
+share/gimp/2.0/gradients/Metallic_Something.ggr
+share/gimp/2.0/gradients/Mexican_flag.ggr
+share/gimp/2.0/gradients/Mexican_flag_smooth.ggr
+share/gimp/2.0/gradients/Nauseating_Headache.ggr
+share/gimp/2.0/gradients/Neon_Cyan.ggr
+share/gimp/2.0/gradients/Neon_Green.ggr
+share/gimp/2.0/gradients/Neon_Yellow.ggr
+share/gimp/2.0/gradients/Pastel_Rainbow.ggr
+share/gimp/2.0/gradients/Pastels.ggr
+share/gimp/2.0/gradients/Purples.ggr
+share/gimp/2.0/gradients/Radial_Eyeball_Blue.ggr
+share/gimp/2.0/gradients/Radial_Eyeball_Brown.ggr
+share/gimp/2.0/gradients/Radial_Eyeball_Green.ggr
+share/gimp/2.0/gradients/Radial_Glow_1.ggr
+share/gimp/2.0/gradients/Radial_Rainbow_Hoop.ggr
+share/gimp/2.0/gradients/Romanian_flag.ggr
+share/gimp/2.0/gradients/Romanian_flag_smooth.ggr
+share/gimp/2.0/gradients/Rounded_edge.ggr
+share/gimp/2.0/gradients/Shadows_1.ggr
+share/gimp/2.0/gradients/Shadows_2.ggr
+share/gimp/2.0/gradients/Shadows_3.ggr
+share/gimp/2.0/gradients/Skyline.ggr
+share/gimp/2.0/gradients/Skyline_polluted.ggr
+share/gimp/2.0/gradients/Square_Wood_Frame.ggr
+share/gimp/2.0/gradients/Sunrise.ggr
+share/gimp/2.0/gradients/Three_bars_sin.ggr
+share/gimp/2.0/gradients/Tropical_Colors.ggr
+share/gimp/2.0/gradients/Tube_Red.ggr
+share/gimp/2.0/gradients/Wood_1.ggr
+share/gimp/2.0/gradients/Wood_2.ggr
+share/gimp/2.0/gradients/Yellow_Contrast.ggr
+share/gimp/2.0/gradients/Yellow_Orange.ggr
+share/gimp/2.0/images/gimp-logo.png
+share/gimp/2.0/images/gimp-splash.png
+share/gimp/2.0/images/wilber.png
+share/gimp/2.0/menus/brush-editor-menu.xml
+share/gimp/2.0/menus/brushes-menu.xml
+share/gimp/2.0/menus/buffers-menu.xml
+share/gimp/2.0/menus/channels-menu.xml
+share/gimp/2.0/menus/colormap-menu.xml
+share/gimp/2.0/menus/cursor-info-menu.xml
+share/gimp/2.0/menus/dockable-menu.xml
+share/gimp/2.0/menus/documents-menu.xml
+share/gimp/2.0/menus/error-console-menu.xml
+share/gimp/2.0/menus/fonts-menu.xml
+share/gimp/2.0/menus/gradient-editor-menu.xml
+share/gimp/2.0/menus/gradients-menu.xml
+share/gimp/2.0/menus/image-menu.xml
+share/gimp/2.0/menus/images-menu.xml
+share/gimp/2.0/menus/layers-menu.xml
+share/gimp/2.0/menus/palette-editor-menu.xml
+share/gimp/2.0/menus/palettes-menu.xml
+share/gimp/2.0/menus/patterns-menu.xml
+share/gimp/2.0/menus/quick-mask-menu.xml
+share/gimp/2.0/menus/sample-points-menu.xml
+share/gimp/2.0/menus/selection-menu.xml
+share/gimp/2.0/menus/templates-menu.xml
+share/gimp/2.0/menus/text-editor-toolbar.xml
+share/gimp/2.0/menus/tool-options-menu.xml
+share/gimp/2.0/menus/tools-menu.xml
+share/gimp/2.0/menus/undo-menu.xml
+share/gimp/2.0/menus/vectors-menu.xml
+share/gimp/2.0/palettes/Bears.gpl
+share/gimp/2.0/palettes/Bgold.gpl
+share/gimp/2.0/palettes/Blues.gpl
+share/gimp/2.0/palettes/Borders.gpl
+share/gimp/2.0/palettes/Browns_And_Yellows.gpl
+share/gimp/2.0/palettes/Caramel.gpl
+share/gimp/2.0/palettes/Cascade.gpl
+share/gimp/2.0/palettes/China.gpl
+share/gimp/2.0/palettes/Coldfire.gpl
+share/gimp/2.0/palettes/Cool_Colors.gpl
+share/gimp/2.0/palettes/Cranes.gpl
+share/gimp/2.0/palettes/Dark_pastels.gpl
+share/gimp/2.0/palettes/Default.gpl
+share/gimp/2.0/palettes/Ega.gpl
+share/gimp/2.0/palettes/Firecode.gpl
+share/gimp/2.0/palettes/Gold.gpl
+share/gimp/2.0/palettes/GrayViolet.gpl
+share/gimp/2.0/palettes/Grayblue.gpl
+share/gimp/2.0/palettes/Grays.gpl
+share/gimp/2.0/palettes/Greens.gpl
+share/gimp/2.0/palettes/Hilite.gpl
+share/gimp/2.0/palettes/Khaki.gpl
+share/gimp/2.0/palettes/Lights.gpl
+share/gimp/2.0/palettes/Muted.gpl
+share/gimp/2.0/palettes/Named_Colors.gpl
+share/gimp/2.0/palettes/News3.gpl
+share/gimp/2.0/palettes/Op2.gpl
+share/gimp/2.0/palettes/Paintjet.gpl
+share/gimp/2.0/palettes/Pastels.gpl
+share/gimp/2.0/palettes/Plasma.gpl
+share/gimp/2.0/palettes/Reds.gpl
+share/gimp/2.0/palettes/Reds_And_Purples.gpl
+share/gimp/2.0/palettes/Royal.gpl
+share/gimp/2.0/palettes/Tango.gpl
+share/gimp/2.0/palettes/Topographic.gpl
+share/gimp/2.0/palettes/Visibone.gpl
+share/gimp/2.0/palettes/Visibone_2.gpl
+share/gimp/2.0/palettes/Volcano.gpl
+share/gimp/2.0/palettes/Warm_Colors.gpl
+share/gimp/2.0/palettes/Web.gpl
+share/gimp/2.0/patterns/3dgreen.pat
+share/gimp/2.0/patterns/Craters.pat
+share/gimp/2.0/patterns/Moonfoot.pat
+share/gimp/2.0/patterns/Stripes1px.pat
+share/gimp/2.0/patterns/Stripes2px.pat
+share/gimp/2.0/patterns/amethyst.pat
+share/gimp/2.0/patterns/bark.pat
+share/gimp/2.0/patterns/blue.pat
+share/gimp/2.0/patterns/bluegrid.pat
+share/gimp/2.0/patterns/bluesquares.pat
+share/gimp/2.0/patterns/blueweb.pat
+share/gimp/2.0/patterns/brick.pat
+share/gimp/2.0/patterns/burlap.pat
+share/gimp/2.0/patterns/burlwood.pat
+share/gimp/2.0/patterns/choc_swirl.pat
+share/gimp/2.0/patterns/corkboard.pat
+share/gimp/2.0/patterns/cracked.pat
+share/gimp/2.0/patterns/crinklepaper.pat
+share/gimp/2.0/patterns/electric.pat
+share/gimp/2.0/patterns/fibers.pat
+share/gimp/2.0/patterns/granite1.pat
+share/gimp/2.0/patterns/ground1.pat
+share/gimp/2.0/patterns/ice.pat
+share/gimp/2.0/patterns/java.pat
+share/gimp/2.0/patterns/leather.pat
+share/gimp/2.0/patterns/leaves.pat
+share/gimp/2.0/patterns/leopard.pat
+share/gimp/2.0/patterns/lightning.pat
+share/gimp/2.0/patterns/marble1.pat
+share/gimp/2.0/patterns/marble2.pat
+share/gimp/2.0/patterns/marble3.pat
+share/gimp/2.0/patterns/nops.pat
+share/gimp/2.0/patterns/paper.pat
+share/gimp/2.0/patterns/parque1.pat
+share/gimp/2.0/patterns/parque2.pat
+share/gimp/2.0/patterns/parque3.pat
+share/gimp/2.0/patterns/pastel.pat
+share/gimp/2.0/patterns/pine.pat
+share/gimp/2.0/patterns/pink_marble.pat
+share/gimp/2.0/patterns/pool.pat
+share/gimp/2.0/patterns/qube1.pat
+share/gimp/2.0/patterns/rain.pat
+share/gimp/2.0/patterns/recessed.pat
+share/gimp/2.0/patterns/redcube.pat
+share/gimp/2.0/patterns/rock.pat
+share/gimp/2.0/patterns/sky.pat
+share/gimp/2.0/patterns/slate.pat
+share/gimp/2.0/patterns/sm_squares.pat
+share/gimp/2.0/patterns/starfield.pat
+share/gimp/2.0/patterns/stone33.pat
+share/gimp/2.0/patterns/terra.pat
+share/gimp/2.0/patterns/walnut.pat
+share/gimp/2.0/patterns/warning.pat
+share/gimp/2.0/patterns/wood1.pat
+share/gimp/2.0/patterns/wood2.pat
+share/gimp/2.0/patterns/wood3.pat
+share/gimp/2.0/patterns/wood4.pat
+share/gimp/2.0/patterns/wood5.pat
+share/gimp/2.0/scripts/3d-outline.scm
+share/gimp/2.0/scripts/3dTruchet.scm
+share/gimp/2.0/scripts/add-bevel.scm
+share/gimp/2.0/scripts/addborder.scm
+share/gimp/2.0/scripts/alien-glow-arrow.scm
+share/gimp/2.0/scripts/alien-glow-bar.scm
+share/gimp/2.0/scripts/alien-glow-bullet.scm
+share/gimp/2.0/scripts/alien-glow-button.scm
+share/gimp/2.0/scripts/alien-glow-logo.scm
+share/gimp/2.0/scripts/alien-neon-logo.scm
+share/gimp/2.0/scripts/basic1-logo.scm
+share/gimp/2.0/scripts/basic2-logo.scm
+share/gimp/2.0/scripts/beveled-button.scm
+share/gimp/2.0/scripts/beveled-pattern-arrow.scm
+share/gimp/2.0/scripts/beveled-pattern-bullet.scm
+share/gimp/2.0/scripts/beveled-pattern-button.scm
+share/gimp/2.0/scripts/beveled-pattern-heading.scm
+share/gimp/2.0/scripts/beveled-pattern-hrule.scm
+share/gimp/2.0/scripts/blend-anim.scm
+share/gimp/2.0/scripts/blended-logo.scm
+share/gimp/2.0/scripts/bovinated-logo.scm
+share/gimp/2.0/scripts/burn-in-anim.scm
+share/gimp/2.0/scripts/camo.scm
+share/gimp/2.0/scripts/carve-it.scm
+share/gimp/2.0/scripts/carved-logo.scm
+share/gimp/2.0/scripts/chalk.scm
+share/gimp/2.0/scripts/chip-away.scm
+share/gimp/2.0/scripts/chrome-it.scm
+share/gimp/2.0/scripts/chrome-logo.scm
+share/gimp/2.0/scripts/circuit.scm
+share/gimp/2.0/scripts/clothify.scm
+share/gimp/2.0/scripts/coffee.scm
+share/gimp/2.0/scripts/comic-logo.scm
+share/gimp/2.0/scripts/coolmetal-logo.scm
+share/gimp/2.0/scripts/copy-visible.scm
+share/gimp/2.0/scripts/crystal-logo.scm
+share/gimp/2.0/scripts/difference-clouds.scm
+share/gimp/2.0/scripts/distress-selection.scm
+share/gimp/2.0/scripts/drop-shadow.scm
+share/gimp/2.0/scripts/erase-rows.scm
+share/gimp/2.0/scripts/flatland.scm
+share/gimp/2.0/scripts/font-map.scm
+share/gimp/2.0/scripts/frosty-logo.scm
+share/gimp/2.0/scripts/fuzzyborder.scm
+share/gimp/2.0/scripts/gimp-headers.scm
+share/gimp/2.0/scripts/gimp-labels.scm
+share/gimp/2.0/scripts/glossy.scm
+share/gimp/2.0/scripts/glowing-logo.scm
+share/gimp/2.0/scripts/gradient-bevel-logo.scm
+share/gimp/2.0/scripts/gradient-example.scm
+share/gimp/2.0/scripts/grid-system.scm
+share/gimp/2.0/scripts/guides-from-selection.scm
+share/gimp/2.0/scripts/guides-new-percent.scm
+share/gimp/2.0/scripts/guides-new.scm
+share/gimp/2.0/scripts/guides-remove-all.scm
+share/gimp/2.0/scripts/i26-gunya2.scm
+share/gimp/2.0/scripts/images/beavis.jpg
+share/gimp/2.0/scripts/images/texture.jpg
+share/gimp/2.0/scripts/images/texture1.jpg
+share/gimp/2.0/scripts/images/texture2.jpg
+share/gimp/2.0/scripts/images/texture3.jpg
+share/gimp/2.0/scripts/land.scm
+share/gimp/2.0/scripts/lava.scm
+share/gimp/2.0/scripts/line-nova.scm
+share/gimp/2.0/scripts/mkbrush.scm
+share/gimp/2.0/scripts/neon-logo.scm
+share/gimp/2.0/scripts/news-text.scm
+share/gimp/2.0/scripts/old-photo.scm
+share/gimp/2.0/scripts/paste-as-brush.scm
+share/gimp/2.0/scripts/paste-as-pattern.scm
+share/gimp/2.0/scripts/perspective-shadow.scm
+share/gimp/2.0/scripts/plug-in-compat.init
+share/gimp/2.0/scripts/predator.scm
+share/gimp/2.0/scripts/pupi-button.scm
+share/gimp/2.0/scripts/rendermap.scm
+share/gimp/2.0/scripts/reverse-layers.scm
+share/gimp/2.0/scripts/ripply-anim.scm
+share/gimp/2.0/scripts/round-corners.scm
+share/gimp/2.0/scripts/script-fu-compat.init
+share/gimp/2.0/scripts/script-fu-set-cmap.scm
+share/gimp/2.0/scripts/script-fu-util.scm
+share/gimp/2.0/scripts/script-fu.init
+share/gimp/2.0/scripts/select-to-brush.scm
+share/gimp/2.0/scripts/select-to-image.scm
+share/gimp/2.0/scripts/select-to-pattern.scm
+share/gimp/2.0/scripts/selection-round.scm
+share/gimp/2.0/scripts/slide.scm
+share/gimp/2.0/scripts/sota-chrome-logo.scm
+share/gimp/2.0/scripts/speed-text.scm
+share/gimp/2.0/scripts/spinning-globe.scm
+share/gimp/2.0/scripts/spyrogimp.scm
+share/gimp/2.0/scripts/starscape-logo.scm
+share/gimp/2.0/scripts/swirltile.scm
+share/gimp/2.0/scripts/swirly-pattern.scm
+share/gimp/2.0/scripts/t-o-p-logo.scm
+share/gimp/2.0/scripts/text-circle.scm
+share/gimp/2.0/scripts/textured-logo.scm
+share/gimp/2.0/scripts/tileblur.scm
+share/gimp/2.0/scripts/title-header.scm
+share/gimp/2.0/scripts/truchet.scm
+share/gimp/2.0/scripts/unsharp-mask.scm
+share/gimp/2.0/scripts/waves-anim.scm
+share/gimp/2.0/scripts/weave.scm
+share/gimp/2.0/scripts/web-browser.scm
+share/gimp/2.0/scripts/xach-effect.scm
+share/gimp/2.0/themes/Default/gtkrc
+share/gimp/2.0/themes/Default/images/preferences/color-management-22.png
+share/gimp/2.0/themes/Default/images/preferences/color-management.png
+share/gimp/2.0/themes/Default/images/preferences/controllers-22.png
+share/gimp/2.0/themes/Default/images/preferences/controllers.png
+share/gimp/2.0/themes/Default/images/preferences/default-comment.png
+share/gimp/2.0/themes/Default/images/preferences/default-grid-22.png
+share/gimp/2.0/themes/Default/images/preferences/default-grid.png
+share/gimp/2.0/themes/Default/images/preferences/display-22.png
+share/gimp/2.0/themes/Default/images/preferences/display.png
+share/gimp/2.0/themes/Default/images/preferences/environment-22.png
+share/gimp/2.0/themes/Default/images/preferences/environment.png
+share/gimp/2.0/themes/Default/images/preferences/folders-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-brushes-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-brushes.png
+share/gimp/2.0/themes/Default/images/preferences/folders-environ-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-environ.png
+share/gimp/2.0/themes/Default/images/preferences/folders-fonts-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-fonts.png
+share/gimp/2.0/themes/Default/images/preferences/folders-gradients-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-gradients.png
+share/gimp/2.0/themes/Default/images/preferences/folders-interp-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-interp.png
+share/gimp/2.0/themes/Default/images/preferences/folders-modules-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-modules.png
+share/gimp/2.0/themes/Default/images/preferences/folders-palettes-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-palettes.png
+share/gimp/2.0/themes/Default/images/preferences/folders-patterns-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-patterns.png
+share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins.png
+share/gimp/2.0/themes/Default/images/preferences/folders-scripts-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-scripts.png
+share/gimp/2.0/themes/Default/images/preferences/folders-themes-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-themes.png
+share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins.png
+share/gimp/2.0/themes/Default/images/preferences/folders-tools-22.png
+share/gimp/2.0/themes/Default/images/preferences/folders.png
+share/gimp/2.0/themes/Default/images/preferences/help-system-22.png
+share/gimp/2.0/themes/Default/images/preferences/help-system.png
+share/gimp/2.0/themes/Default/images/preferences/image-title-22.png
+share/gimp/2.0/themes/Default/images/preferences/image-title.png
+share/gimp/2.0/themes/Default/images/preferences/image-windows-22.png
+share/gimp/2.0/themes/Default/images/preferences/image-windows.png
+share/gimp/2.0/themes/Default/images/preferences/input-devices-22.png
+share/gimp/2.0/themes/Default/images/preferences/input-devices.png
+share/gimp/2.0/themes/Default/images/preferences/interface-22.png
+share/gimp/2.0/themes/Default/images/preferences/interface.png
+share/gimp/2.0/themes/Default/images/preferences/new-image-22.png
+share/gimp/2.0/themes/Default/images/preferences/new-image.png
+share/gimp/2.0/themes/Default/images/preferences/session-22.png
+share/gimp/2.0/themes/Default/images/preferences/session.png
+share/gimp/2.0/themes/Default/images/preferences/theme-22.png
+share/gimp/2.0/themes/Default/images/preferences/theme.png
+share/gimp/2.0/themes/Default/images/preferences/tool-options-22.png
+share/gimp/2.0/themes/Default/images/preferences/tool-options.png
+share/gimp/2.0/themes/Default/images/preferences/toolbox-22.png
+share/gimp/2.0/themes/Default/images/preferences/toolbox.png
+share/gimp/2.0/themes/Default/images/preferences/window-management-22.png
+share/gimp/2.0/themes/Default/images/preferences/window-management.png
+share/gimp/2.0/themes/Default/images/stock-error-64.png
+share/gimp/2.0/themes/Default/images/stock-info-64.png
+share/gimp/2.0/themes/Default/images/stock-question-64.png
+share/gimp/2.0/themes/Default/images/stock-warning-64.png
+share/gimp/2.0/themes/Small/gtkrc
+share/gimp/2.0/tips/gimp-tips.xml
+share/gtk-doc/html/libgimp/GimpAspectPreview.html
+share/gtk-doc/html/libgimp/GimpBrushSelectButton.html
+share/gtk-doc/html/libgimp/GimpDrawablePreview.html
+share/gtk-doc/html/libgimp/GimpFontSelectButton.html
+share/gtk-doc/html/libgimp/GimpGradientSelectButton.html
+share/gtk-doc/html/libgimp/GimpImageComboBox.html
+share/gtk-doc/html/libgimp/GimpPaletteSelectButton.html
+share/gtk-doc/html/libgimp/GimpPatternSelectButton.html
+share/gtk-doc/html/libgimp/GimpProcBrowserDialog.html
+share/gtk-doc/html/libgimp/GimpProgressBar.html
+share/gtk-doc/html/libgimp/GimpSelectButton.html
+share/gtk-doc/html/libgimp/GimpZoomPreview.html
+share/gtk-doc/html/libgimp/home.png
+share/gtk-doc/html/libgimp/index.html
+share/gtk-doc/html/libgimp/index.sgml
+share/gtk-doc/html/libgimp/left.png
+share/gtk-doc/html/libgimp/libgimp-GimpItemComboBox.html
+share/gtk-doc/html/libgimp/libgimp-data.html
+share/gtk-doc/html/libgimp/libgimp-general.html
+share/gtk-doc/html/libgimp/libgimp-gimp.html
+share/gtk-doc/html/libgimp/libgimp-gimpbrush.html
+share/gtk-doc/html/libgimp/libgimp-gimpbrushes.html
+share/gtk-doc/html/libgimp/libgimp-gimpbrushmenu.html
+share/gtk-doc/html/libgimp/libgimp-gimpbrushselect.html
+share/gtk-doc/html/libgimp/libgimp-gimpbuffer.html
+share/gtk-doc/html/libgimp/libgimp-gimpchannel.html
+share/gtk-doc/html/libgimp/libgimp-gimpcolor.html
+share/gtk-doc/html/libgimp/libgimp-gimpcontext.html
+share/gtk-doc/html/libgimp/libgimp-gimpconvert.html
+share/gtk-doc/html/libgimp/libgimp-gimpdisplay.html
+share/gtk-doc/html/libgimp/libgimp-gimpdrawable.html
+share/gtk-doc/html/libgimp/libgimp-gimpdrawabletransform.html
+share/gtk-doc/html/libgimp/libgimp-gimpedit.html
+share/gtk-doc/html/libgimp/libgimp-gimpenums.html
+share/gtk-doc/html/libgimp/libgimp-gimpexport.html
+share/gtk-doc/html/libgimp/libgimp-gimpfileops.html
+share/gtk-doc/html/libgimp/libgimp-gimpfloatingsel.html
+share/gtk-doc/html/libgimp/libgimp-gimpfontmenu.html
+share/gtk-doc/html/libgimp/libgimp-gimpfonts.html
+share/gtk-doc/html/libgimp/libgimp-gimpfontselect.html
+share/gtk-doc/html/libgimp/libgimp-gimpgimprc.html
+share/gtk-doc/html/libgimp/libgimp-gimpgradient.html
+share/gtk-doc/html/libgimp/libgimp-gimpgradientmenu.html
+share/gtk-doc/html/libgimp/libgimp-gimpgradients.html
+share/gtk-doc/html/libgimp/libgimp-gimpgradientselect.html
+share/gtk-doc/html/libgimp/libgimp-gimpgrid.html
+share/gtk-doc/html/libgimp/libgimp-gimpguides.html
+share/gtk-doc/html/libgimp/libgimp-gimphelp.html
+share/gtk-doc/html/libgimp/libgimp-gimpimage.html
+share/gtk-doc/html/libgimp/libgimp-gimplayer.html
+share/gtk-doc/html/libgimp/libgimp-gimpmenu.html
+share/gtk-doc/html/libgimp/libgimp-gimpmessage.html
+share/gtk-doc/html/libgimp/libgimp-gimppalette.html
+share/gtk-doc/html/libgimp/libgimp-gimppalettemenu.html
+share/gtk-doc/html/libgimp/libgimp-gimppalettes.html
+share/gtk-doc/html/libgimp/libgimp-gimppaletteselect.html
+share/gtk-doc/html/libgimp/libgimp-gimppaths.html
+share/gtk-doc/html/libgimp/libgimp-gimppattern.html
+share/gtk-doc/html/libgimp/libgimp-gimppatternmenu.html
+share/gtk-doc/html/libgimp/libgimp-gimppatterns.html
+share/gtk-doc/html/libgimp/libgimp-gimppatternselect.html
+share/gtk-doc/html/libgimp/libgimp-gimppixbuf.html
+share/gtk-doc/html/libgimp/libgimp-gimppixelfetcher.html
+share/gtk-doc/html/libgimp/libgimp-gimppixelrgn.html
+share/gtk-doc/html/libgimp/libgimp-gimpplugin.html
+share/gtk-doc/html/libgimp/libgimp-gimpproceduraldb.html
+share/gtk-doc/html/libgimp/libgimp-gimpprocview.html
+share/gtk-doc/html/libgimp/libgimp-gimpprogress.html
+share/gtk-doc/html/libgimp/libgimp-gimpregioniterator.html
+share/gtk-doc/html/libgimp/libgimp-gimpselection.html
+share/gtk-doc/html/libgimp/libgimp-gimptextlayer.html
+share/gtk-doc/html/libgimp/libgimp-gimptexttool.html
+share/gtk-doc/html/libgimp/libgimp-gimptile.html
+share/gtk-doc/html/libgimp/libgimp-gimptools.html
+share/gtk-doc/html/libgimp/libgimp-gimpui.html
+share/gtk-doc/html/libgimp/libgimp-gimpundo.html
+share/gtk-doc/html/libgimp/libgimp-gimpvectors.html
+share/gtk-doc/html/libgimp/libgimp-image.html
+share/gtk-doc/html/libgimp/libgimp-index-deprecated.html
+share/gtk-doc/html/libgimp/libgimp-index-new-in-2-2.html
+share/gtk-doc/html/libgimp/libgimp-index-new-in-2-4.html
+share/gtk-doc/html/libgimp/libgimp-index-new-in-2-6.html
+share/gtk-doc/html/libgimp/libgimp-index.html
+share/gtk-doc/html/libgimp/libgimp-selectors.html
+share/gtk-doc/html/libgimp/libgimp.devhelp
+share/gtk-doc/html/libgimp/libgimp.devhelp2
+share/gtk-doc/html/libgimp/libgimp.html
+share/gtk-doc/html/libgimp/libgimpui-hierarchy.html
+share/gtk-doc/html/libgimp/libgimpui.html
+share/gtk-doc/html/libgimp/right.png
+share/gtk-doc/html/libgimp/style.css
+share/gtk-doc/html/libgimp/up.png
+share/gtk-doc/html/libgimpbase/home.png
+share/gtk-doc/html/libgimpbase/index.html
+share/gtk-doc/html/libgimpbase/index.sgml
+share/gtk-doc/html/libgimpbase/left.png
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpbaseenums.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpbasetypes.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpchecks.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpcpuaccel.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpdatafiles.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpenv.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimplimits.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpmemsize.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpparam.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpparasite.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpparasiteio.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimprectangle.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpsignal.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpunit.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimputils.html
+share/gtk-doc/html/libgimpbase/libgimpbase-gimpversion.html
+share/gtk-doc/html/libgimpbase/libgimpbase-index-deprecated.html
+share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-2.html
+share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-4.html
+share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-6.html
+share/gtk-doc/html/libgimpbase/libgimpbase-index.html
+share/gtk-doc/html/libgimpbase/libgimpbase.devhelp
+share/gtk-doc/html/libgimpbase/libgimpbase.devhelp2
+share/gtk-doc/html/libgimpbase/libgimpbase.html
+share/gtk-doc/html/libgimpbase/right.png
+share/gtk-doc/html/libgimpbase/style.css
+share/gtk-doc/html/libgimpbase/up.png
+share/gtk-doc/html/libgimpcolor/home.png
+share/gtk-doc/html/libgimpcolor/index.html
+share/gtk-doc/html/libgimpcolor/index.sgml
+share/gtk-doc/html/libgimpcolor/left.png
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpBilinear.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpCMYK.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpColorManaged.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpColorSpace.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpHSV.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpRGB.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-index-deprecated.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-2.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-4.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-6.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor-index.html
+share/gtk-doc/html/libgimpcolor/libgimpcolor.devhelp
+share/gtk-doc/html/libgimpcolor/libgimpcolor.devhelp2
+share/gtk-doc/html/libgimpcolor/libgimpcolor.html
+share/gtk-doc/html/libgimpcolor/right.png
+share/gtk-doc/html/libgimpcolor/style.css
+share/gtk-doc/html/libgimpcolor/up.png
+share/gtk-doc/html/libgimpconfig/GimpColorConfig.html
+share/gtk-doc/html/libgimpconfig/home.png
+share/gtk-doc/html/libgimpconfig/index.html
+share/gtk-doc/html/libgimpconfig/index.sgml
+share/gtk-doc/html/libgimpconfig/left.png
+share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfigError.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfigWriter.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpScanner.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-gimpconfig-deserialize.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-gimpconfig-params.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-gimpconfig-path.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-gimpconfig-serialize.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-gimpconfig-utils.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-hierarchy.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-index-deprecated.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-4.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-6.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig-index.html
+share/gtk-doc/html/libgimpconfig/libgimpconfig.devhelp
+share/gtk-doc/html/libgimpconfig/libgimpconfig.devhelp2
+share/gtk-doc/html/libgimpconfig/libgimpconfig.html
+share/gtk-doc/html/libgimpconfig/right.png
+share/gtk-doc/html/libgimpconfig/style.css
+share/gtk-doc/html/libgimpconfig/up.png
+share/gtk-doc/html/libgimpmath/home.png
+share/gtk-doc/html/libgimpmath/index.html
+share/gtk-doc/html/libgimpmath/index.sgml
+share/gtk-doc/html/libgimpmath/left.png
+share/gtk-doc/html/libgimpmath/libgimpmath-GimpMD5.html
+share/gtk-doc/html/libgimpmath/libgimpmath-GimpMath.html
+share/gtk-doc/html/libgimpmath/libgimpmath-GimpMatrix.html
+share/gtk-doc/html/libgimpmath/libgimpmath-GimpVector.html
+share/gtk-doc/html/libgimpmath/libgimpmath-index-deprecated.html
+share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-2.html
+share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-4.html
+share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-6.html
+share/gtk-doc/html/libgimpmath/libgimpmath-index.html
+share/gtk-doc/html/libgimpmath/libgimpmath.devhelp
+share/gtk-doc/html/libgimpmath/libgimpmath.devhelp2
+share/gtk-doc/html/libgimpmath/libgimpmath.html
+share/gtk-doc/html/libgimpmath/right.png
+share/gtk-doc/html/libgimpmath/style.css
+share/gtk-doc/html/libgimpmath/up.png
+share/gtk-doc/html/libgimpmodule/GimpModule.html
+share/gtk-doc/html/libgimpmodule/GimpModuleDB.html
+share/gtk-doc/html/libgimpmodule/home.png
+share/gtk-doc/html/libgimpmodule/index.html
+share/gtk-doc/html/libgimpmodule/index.sgml
+share/gtk-doc/html/libgimpmodule/left.png
+share/gtk-doc/html/libgimpmodule/libgimpmodule-index-deprecated.html
+share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-2.html
+share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-4.html
+share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-6.html
+share/gtk-doc/html/libgimpmodule/libgimpmodule-index.html
+share/gtk-doc/html/libgimpmodule/libgimpmodule.devhelp
+share/gtk-doc/html/libgimpmodule/libgimpmodule.devhelp2
+share/gtk-doc/html/libgimpmodule/libgimpmodule.html
+share/gtk-doc/html/libgimpmodule/right.png
+share/gtk-doc/html/libgimpmodule/style.css
+share/gtk-doc/html/libgimpmodule/up.png
+share/gtk-doc/html/libgimpthumb/GimpThumbnail.html
+share/gtk-doc/html/libgimpthumb/home.png
+share/gtk-doc/html/libgimpthumb/index.html
+share/gtk-doc/html/libgimpthumb/index.sgml
+share/gtk-doc/html/libgimpthumb/left.png
+share/gtk-doc/html/libgimpthumb/libgimpthumb-gimpthumb-enums.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-gimpthumb-error.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-gimpthumb-utils.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-index-deprecated.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-2.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-4.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-6.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb-index.html
+share/gtk-doc/html/libgimpthumb/libgimpthumb.devhelp
+share/gtk-doc/html/libgimpthumb/libgimpthumb.devhelp2
+share/gtk-doc/html/libgimpthumb/libgimpthumb.html
+share/gtk-doc/html/libgimpthumb/right.png
+share/gtk-doc/html/libgimpthumb/style.css
+share/gtk-doc/html/libgimpthumb/up.png
+share/gtk-doc/html/libgimpwidgets/GimpBrowser.html
+share/gtk-doc/html/libgimpwidgets/GimpButton.html
+share/gtk-doc/html/libgimpwidgets/GimpCellRendererColor.html
+share/gtk-doc/html/libgimpwidgets/GimpCellRendererToggle.html
+share/gtk-doc/html/libgimpwidgets/GimpChainButton.html
+share/gtk-doc/html/libgimpwidgets/GimpColorArea.html
+share/gtk-doc/html/libgimpwidgets/GimpColorButton.html
+share/gtk-doc/html/libgimpwidgets/GimpColorDisplay.html
+share/gtk-doc/html/libgimpwidgets/GimpColorDisplayStack.html
+share/gtk-doc/html/libgimpwidgets/GimpColorHexEntry.html
+share/gtk-doc/html/libgimpwidgets/GimpColorNotebook.html
+share/gtk-doc/html/libgimpwidgets/GimpColorProfileComboBox.html
+share/gtk-doc/html/libgimpwidgets/GimpColorProfileStore.html
+share/gtk-doc/html/libgimpwidgets/GimpColorScale.html
+share/gtk-doc/html/libgimpwidgets/GimpColorScales.html
+share/gtk-doc/html/libgimpwidgets/GimpColorSelect.html
+share/gtk-doc/html/libgimpwidgets/GimpColorSelection.html
+share/gtk-doc/html/libgimpwidgets/GimpColorSelector.html
+share/gtk-doc/html/libgimpwidgets/GimpController.html
+share/gtk-doc/html/libgimpwidgets/GimpDialog.html
+share/gtk-doc/html/libgimpwidgets/GimpEnumComboBox.html
+share/gtk-doc/html/libgimpwidgets/GimpEnumLabel.html
+share/gtk-doc/html/libgimpwidgets/GimpEnumStore.html
+share/gtk-doc/html/libgimpwidgets/GimpFileEntry.html
+share/gtk-doc/html/libgimpwidgets/GimpFrame.html
+share/gtk-doc/html/libgimpwidgets/GimpIntComboBox.html
+share/gtk-doc/html/libgimpwidgets/GimpIntStore.html
+share/gtk-doc/html/libgimpwidgets/GimpMemsizeEntry.html
+share/gtk-doc/html/libgimpwidgets/GimpNumberPairEntry.html
+share/gtk-doc/html/libgimpwidgets/GimpOffsetArea.html
+share/gtk-doc/html/libgimpwidgets/GimpPageSelector.html
+share/gtk-doc/html/libgimpwidgets/GimpPathEditor.html
+share/gtk-doc/html/libgimpwidgets/GimpPickButton.html
+share/gtk-doc/html/libgimpwidgets/GimpPixmap.html
+share/gtk-doc/html/libgimpwidgets/GimpPreview.html
+share/gtk-doc/html/libgimpwidgets/GimpPreviewArea.html
+share/gtk-doc/html/libgimpwidgets/GimpRuler.html
+share/gtk-doc/html/libgimpwidgets/GimpScrolledPreview.html
+share/gtk-doc/html/libgimpwidgets/GimpSizeEntry.html
+share/gtk-doc/html/libgimpwidgets/GimpStringComboBox.html
+share/gtk-doc/html/libgimpwidgets/GimpUnitMenu.html
+share/gtk-doc/html/libgimpwidgets/GimpZoomModel.html
+share/gtk-doc/html/libgimpwidgets/gimp-browser.png
+share/gtk-doc/html/libgimpwidgets/gimp-button.png
+share/gtk-doc/html/libgimpwidgets/gimp-chain-button.png
+share/gtk-doc/html/libgimpwidgets/gimp-color-area.png
+share/gtk-doc/html/libgimpwidgets/gimp-color-button.png
+share/gtk-doc/html/libgimpwidgets/gimp-color-hex-entry.png
+share/gtk-doc/html/libgimpwidgets/gimp-color-profile-combo-box.png
+share/gtk-doc/html/libgimpwidgets/gimp-color-scale.png
+share/gtk-doc/html/libgimpwidgets/gimp-color-selection.png
+share/gtk-doc/html/libgimpwidgets/gimp-dialog.png
+share/gtk-doc/html/libgimpwidgets/gimp-enum-combo-box.png
+share/gtk-doc/html/libgimpwidgets/gimp-enum-label.png
+share/gtk-doc/html/libgimpwidgets/gimp-file-entry.png
+share/gtk-doc/html/libgimpwidgets/gimp-frame.png
+share/gtk-doc/html/libgimpwidgets/gimp-hint-box.png
+share/gtk-doc/html/libgimpwidgets/gimp-int-combo-box.png
+share/gtk-doc/html/libgimpwidgets/gimp-memsize-entry.png
+share/gtk-doc/html/libgimpwidgets/gimp-number-pair-entry.png
+share/gtk-doc/html/libgimpwidgets/gimp-offset-area.png
+share/gtk-doc/html/libgimpwidgets/gimp-page-selector.png
+share/gtk-doc/html/libgimpwidgets/gimp-path-editor.png
+share/gtk-doc/html/libgimpwidgets/gimp-pick-button.png
+share/gtk-doc/html/libgimpwidgets/gimp-preview-area.png
+share/gtk-doc/html/libgimpwidgets/gimp-string-combo-box.png
+share/gtk-doc/html/libgimpwidgets/gimp-unit-menu.png
+share/gtk-doc/html/libgimpwidgets/home.png
+share/gtk-doc/html/libgimpwidgets/index.html
+share/gtk-doc/html/libgimpwidgets/index.sgml
+share/gtk-doc/html/libgimpwidgets/left.png
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpHintBox.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpStock.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpWidgets.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-cell-renderers.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-colordisplay.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-colorselector.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-controller.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-deprecated.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-gallery.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-gimpoldwidgets.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-hierarchy.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-index-deprecated.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-index-new-in-2-2.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-index-new-in-2-4.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-index-new-in-2-6.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-index.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-utils.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets-widgets.html
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets.devhelp
+share/gtk-doc/html/libgimpwidgets/libgimpwidgets.devhelp2
+share/gtk-doc/html/libgimpwidgets/right.png
+share/gtk-doc/html/libgimpwidgets/stock-anchor-16.png
+share/gtk-doc/html/libgimpwidgets/stock-cap-butt-16.png
+share/gtk-doc/html/libgimpwidgets/stock-cap-round-16.png
+share/gtk-doc/html/libgimpwidgets/stock-cap-square-16.png
+share/gtk-doc/html/libgimpwidgets/stock-center-16.png
+share/gtk-doc/html/libgimpwidgets/stock-center-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-alpha-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-alpha-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-alpha-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-alpha-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-blue-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-blue-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-blue-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-blue-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-gray-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-gray-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-gray-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-gray-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-green-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-green-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-green-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-green-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-indexed-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-indexed-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-indexed-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-indexed-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-red-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-red-24.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-red-32.png
+share/gtk-doc/html/libgimpwidgets/stock-channel-red-48.png
+share/gtk-doc/html/libgimpwidgets/stock-channels-16.png
+share/gtk-doc/html/libgimpwidgets/stock-channels-24.png
+share/gtk-doc/html/libgimpwidgets/stock-char-picker-22.png
+share/gtk-doc/html/libgimpwidgets/stock-close-12.png
+share/gtk-doc/html/libgimpwidgets/stock-color-pick-from-screen-16.png
+share/gtk-doc/html/libgimpwidgets/stock-color-picker-black-18.png
+share/gtk-doc/html/libgimpwidgets/stock-color-picker-gray-18.png
+share/gtk-doc/html/libgimpwidgets/stock-color-picker-white-18.png
+share/gtk-doc/html/libgimpwidgets/stock-color-triangle-16.png
+share/gtk-doc/html/libgimpwidgets/stock-colormap-16.png
+share/gtk-doc/html/libgimpwidgets/stock-colormap-24.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-16.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-24.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-keyboard-16.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-keyboard-24.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-linux-input-16.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-linux-input-24.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-midi-16.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-midi-24.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-wheel-16.png
+share/gtk-doc/html/libgimpwidgets/stock-controller-wheel-24.png
+share/gtk-doc/html/libgimpwidgets/stock-convert-grayscale-16.png
+share/gtk-doc/html/libgimpwidgets/stock-convert-indexed-16.png
+share/gtk-doc/html/libgimpwidgets/stock-convert-rgb-16.png
+share/gtk-doc/html/libgimpwidgets/stock-cursor-16.png
+share/gtk-doc/html/libgimpwidgets/stock-cursor-24.png
+share/gtk-doc/html/libgimpwidgets/stock-curve-free-16.png
+share/gtk-doc/html/libgimpwidgets/stock-curve-smooth-16.png
+share/gtk-doc/html/libgimpwidgets/stock-default-colors-12.png
+share/gtk-doc/html/libgimpwidgets/stock-device-status-16.png
+share/gtk-doc/html/libgimpwidgets/stock-device-status-24.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-16.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-24.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-colorblind-16.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-colorblind-24.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-contrast-16.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-contrast-24.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-gamma-16.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-gamma-24.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-lcms-16.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-lcms-24.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-proof-16.png
+share/gtk-doc/html/libgimpwidgets/stock-display-filter-proof-24.png
+share/gtk-doc/html/libgimpwidgets/stock-duplicate-16.png
+share/gtk-doc/html/libgimpwidgets/stock-edit-16.png
+share/gtk-doc/html/libgimpwidgets/stock-error-64.png
+share/gtk-doc/html/libgimpwidgets/stock-eye-12.png
+share/gtk-doc/html/libgimpwidgets/stock-eye-20.png
+share/gtk-doc/html/libgimpwidgets/stock-flip-horizontal-16.png
+share/gtk-doc/html/libgimpwidgets/stock-flip-vertical-16.png
+share/gtk-doc/html/libgimpwidgets/stock-floating-selection-16.png
+share/gtk-doc/html/libgimpwidgets/stock-floating-selection-24.png
+share/gtk-doc/html/libgimpwidgets/stock-floating-selection-32.png
+share/gtk-doc/html/libgimpwidgets/stock-floating-selection-48.png
+share/gtk-doc/html/libgimpwidgets/stock-frame-64.png
+share/gtk-doc/html/libgimpwidgets/stock-gegl-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gegl-22.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-bilinear-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-conical-asymmetric-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-conical-symmetric-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-linear-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-radial-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-shapeburst-angular-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-shapeburst-dimpled-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-shapeburst-spherical-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-spiral-anticlockwise-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-spiral-clockwise-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gradient-square-16.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-east-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-north-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-north-east-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-north-west-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-south-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-south-east-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-south-west-24.png
+share/gtk-doc/html/libgimpwidgets/stock-gravity-west-24.png
+share/gtk-doc/html/libgimpwidgets/stock-grid-16.png
+share/gtk-doc/html/libgimpwidgets/stock-hcenter-24.png
+share/gtk-doc/html/libgimpwidgets/stock-hchain-24.png
+share/gtk-doc/html/libgimpwidgets/stock-hchain-broken-24.png
+share/gtk-doc/html/libgimpwidgets/stock-histogram-16.png
+share/gtk-doc/html/libgimpwidgets/stock-histogram-22.png
+share/gtk-doc/html/libgimpwidgets/stock-histogram-linear-16.png
+share/gtk-doc/html/libgimpwidgets/stock-histogram-logarithmic-16.png
+share/gtk-doc/html/libgimpwidgets/stock-image-16.png
+share/gtk-doc/html/libgimpwidgets/stock-image-24.png
+share/gtk-doc/html/libgimpwidgets/stock-image-32.png
+share/gtk-doc/html/libgimpwidgets/stock-image-48.png
+share/gtk-doc/html/libgimpwidgets/stock-images-16.png
+share/gtk-doc/html/libgimpwidgets/stock-images-24.png
+share/gtk-doc/html/libgimpwidgets/stock-info-16.png
+share/gtk-doc/html/libgimpwidgets/stock-info-24.png
+share/gtk-doc/html/libgimpwidgets/stock-info-64.png
+share/gtk-doc/html/libgimpwidgets/stock-invert-16.png
+share/gtk-doc/html/libgimpwidgets/stock-join-bevel-16.png
+share/gtk-doc/html/libgimpwidgets/stock-join-miter-16.png
+share/gtk-doc/html/libgimpwidgets/stock-join-round-16.png
+share/gtk-doc/html/libgimpwidgets/stock-landscape-16.png
+share/gtk-doc/html/libgimpwidgets/stock-landscape-22.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-16.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-24.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-32.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-48.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-mask-16.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-mask-24.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-mask-32.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-mask-48.png
+share/gtk-doc/html/libgimpwidgets/stock-layer-to-imagesize-16.png
+share/gtk-doc/html/libgimpwidgets/stock-layers-16.png
+share/gtk-doc/html/libgimpwidgets/stock-layers-24.png
+share/gtk-doc/html/libgimpwidgets/stock-letter-spacing-22.png
+share/gtk-doc/html/libgimpwidgets/stock-line-spacing-22.png
+share/gtk-doc/html/libgimpwidgets/stock-linked-12.png
+share/gtk-doc/html/libgimpwidgets/stock-linked-20.png
+share/gtk-doc/html/libgimpwidgets/stock-list-16.png
+share/gtk-doc/html/libgimpwidgets/stock-menu-left-12.png
+share/gtk-doc/html/libgimpwidgets/stock-menu-right-12.png
+share/gtk-doc/html/libgimpwidgets/stock-merge-down-16.png
+share/gtk-doc/html/libgimpwidgets/stock-move-to-screen-16.png
+share/gtk-doc/html/libgimpwidgets/stock-move-to-screen-24.png
+share/gtk-doc/html/libgimpwidgets/stock-navigation-16.png
+share/gtk-doc/html/libgimpwidgets/stock-paste-as-new-16.png
+share/gtk-doc/html/libgimpwidgets/stock-paste-into-16.png
+share/gtk-doc/html/libgimpwidgets/stock-path-16.png
+share/gtk-doc/html/libgimpwidgets/stock-path-22.png
+share/gtk-doc/html/libgimpwidgets/stock-path-stroke-16.png
+share/gtk-doc/html/libgimpwidgets/stock-paths-16.png
+share/gtk-doc/html/libgimpwidgets/stock-paths-22.png
+share/gtk-doc/html/libgimpwidgets/stock-plugin-16.png
+share/gtk-doc/html/libgimpwidgets/stock-portrait-16.png
+share/gtk-doc/html/libgimpwidgets/stock-portrait-22.png
+share/gtk-doc/html/libgimpwidgets/stock-print-resolution-16.png
+share/gtk-doc/html/libgimpwidgets/stock-print-resolution-24.png
+share/gtk-doc/html/libgimpwidgets/stock-question-64.png
+share/gtk-doc/html/libgimpwidgets/stock-quick-mask-off-12.png
+share/gtk-doc/html/libgimpwidgets/stock-quick-mask-on-12.png
+share/gtk-doc/html/libgimpwidgets/stock-reset-16.png
+share/gtk-doc/html/libgimpwidgets/stock-reshow-filter-16.png
+share/gtk-doc/html/libgimpwidgets/stock-resize-16.png
+share/gtk-doc/html/libgimpwidgets/stock-rotate-180-16.png
+share/gtk-doc/html/libgimpwidgets/stock-rotate-270-16.png
+share/gtk-doc/html/libgimpwidgets/stock-rotate-90-16.png
+share/gtk-doc/html/libgimpwidgets/stock-sample-point-16.png
+share/gtk-doc/html/libgimpwidgets/stock-sample-point-24.png
+share/gtk-doc/html/libgimpwidgets/stock-scale-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-add-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-all-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-border-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-grow-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-intersect-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-none-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-replace-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-shrink-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-stroke-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-subtract-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-to-channel-16.png
+share/gtk-doc/html/libgimpwidgets/stock-selection-to-path-16.png
+share/gtk-doc/html/libgimpwidgets/stock-shape-circle-16.png
+share/gtk-doc/html/libgimpwidgets/stock-shape-diamond-16.png
+share/gtk-doc/html/libgimpwidgets/stock-shape-square-16.png
+share/gtk-doc/html/libgimpwidgets/stock-swap-colors-12.png
+share/gtk-doc/html/libgimpwidgets/stock-template-16.png
+share/gtk-doc/html/libgimpwidgets/stock-template-24.png
+share/gtk-doc/html/libgimpwidgets/stock-text-dir-ltr-24.png
+share/gtk-doc/html/libgimpwidgets/stock-text-dir-rtl-24.png
+share/gtk-doc/html/libgimpwidgets/stock-text-layer-16.png
+share/gtk-doc/html/libgimpwidgets/stock-text-layer-24.png
+share/gtk-doc/html/libgimpwidgets/stock-text-layer-32.png
+share/gtk-doc/html/libgimpwidgets/stock-text-layer-48.png
+share/gtk-doc/html/libgimpwidgets/stock-texture-64.png
+share/gtk-doc/html/libgimpwidgets/stock-toilet-paper-16.png
+share/gtk-doc/html/libgimpwidgets/stock-toilet-paper-24.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-airbrush-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-airbrush-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-align-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-align-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-blend-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-blend-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-blur-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-blur-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-brightness-contrast-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-brightness-contrast-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-bucket-fill-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-bucket-fill-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-by-color-select-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-by-color-select-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-clone-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-clone-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-color-balance-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-color-balance-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-color-picker-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-color-picker-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-colorize-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-colorize-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-crop-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-crop-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-curves-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-curves-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-dodge-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-dodge-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-ellipse-select-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-ellipse-select-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-eraser-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-eraser-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-flip-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-flip-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-foreground-select-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-foreground-select-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-free-select-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-free-select-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-fuzzy-select-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-fuzzy-select-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-heal-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-heal-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-hue-saturation-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-hue-saturation-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-ink-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-ink-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-iscissors-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-iscissors-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-levels-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-levels-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-measure-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-measure-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-move-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-move-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-options-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-options-24.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-paintbrush-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-paintbrush-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-path-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-path-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-pencil-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-pencil-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-perspective-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-perspective-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-perspective-clone-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-perspective-clone-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-posterize-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-posterize-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-rect-select-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-rect-select-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-rotate-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-rotate-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-scale-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-scale-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-shear-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-shear-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-smudge-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-smudge-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-text-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-text-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-threshold-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-threshold-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-zoom-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tool-zoom-22.png
+share/gtk-doc/html/libgimpwidgets/stock-tools-16.png
+share/gtk-doc/html/libgimpwidgets/stock-tools-24.png
+share/gtk-doc/html/libgimpwidgets/stock-transparency-16.png
+share/gtk-doc/html/libgimpwidgets/stock-transparency-24.png
+share/gtk-doc/html/libgimpwidgets/stock-undo-history-16.png
+share/gtk-doc/html/libgimpwidgets/stock-undo-history-24.png
+share/gtk-doc/html/libgimpwidgets/stock-user-manual-16.png
+share/gtk-doc/html/libgimpwidgets/stock-user-manual-24.png
+share/gtk-doc/html/libgimpwidgets/stock-user-manual-32.png
+share/gtk-doc/html/libgimpwidgets/stock-user-manual-64.png
+share/gtk-doc/html/libgimpwidgets/stock-vcenter-24.png
+share/gtk-doc/html/libgimpwidgets/stock-vchain-24.png
+share/gtk-doc/html/libgimpwidgets/stock-vchain-broken-24.png
+share/gtk-doc/html/libgimpwidgets/stock-video-16.png
+share/gtk-doc/html/libgimpwidgets/stock-video-24.png
+share/gtk-doc/html/libgimpwidgets/stock-warning-16.png
+share/gtk-doc/html/libgimpwidgets/stock-warning-24.png
+share/gtk-doc/html/libgimpwidgets/stock-warning-64.png
+share/gtk-doc/html/libgimpwidgets/stock-web-16.png
+share/gtk-doc/html/libgimpwidgets/stock-web-24.png
+share/gtk-doc/html/libgimpwidgets/stock-wilber-16.png
+share/gtk-doc/html/libgimpwidgets/stock-wilber-22.png
+share/gtk-doc/html/libgimpwidgets/stock-wilber-64.png
+share/gtk-doc/html/libgimpwidgets/stock-wilber-eek-64.png
+share/gtk-doc/html/libgimpwidgets/stock-zoom-follow-window-12.png
+share/gtk-doc/html/libgimpwidgets/style.css
+share/gtk-doc/html/libgimpwidgets/up.png
+share/icons/hicolor/16x16/apps/gimp.png
+share/icons/hicolor/22x22/apps/gimp.png
+share/icons/hicolor/24x24/apps/gimp.png
+share/icons/hicolor/32x32/apps/gimp.png
+share/icons/hicolor/48x48/apps/gimp.png
+share/icons/hicolor/64x64/apps/gimp.png
+share/icons/hicolor/scalable/apps/gimp.svg
+share/locale/am/LC_MESSAGES/gimp20.mo
+share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ar/LC_MESSAGES/gimp20-python.mo
+share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ar/LC_MESSAGES/gimp20-tips.mo
+share/locale/ar/LC_MESSAGES/gimp20.mo
+share/locale/az/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/az/LC_MESSAGES/gimp20-python.mo
+share/locale/az/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/az/LC_MESSAGES/gimp20.mo
+share/locale/be/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/be/LC_MESSAGES/gimp20-python.mo
+share/locale/be/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/be/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/be/LC_MESSAGES/gimp20-tips.mo
+share/locale/be/LC_MESSAGES/gimp20.mo
+share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/bg/LC_MESSAGES/gimp20-python.mo
+share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/bg/LC_MESSAGES/gimp20-tips.mo
+share/locale/bg/LC_MESSAGES/gimp20.mo
+share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ca/LC_MESSAGES/gimp20-python.mo
+share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ca/LC_MESSAGES/gimp20-tips.mo
+share/locale/ca/LC_MESSAGES/gimp20.mo
+share/locale/ca@valencia/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ca@valencia/LC_MESSAGES/gimp20-python.mo
+share/locale/ca@valencia/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ca@valencia/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ca@valencia/LC_MESSAGES/gimp20-tips.mo
+share/locale/ca@valencia/LC_MESSAGES/gimp20.mo
+share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/cs/LC_MESSAGES/gimp20-python.mo
+share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/cs/LC_MESSAGES/gimp20-tips.mo
+share/locale/cs/LC_MESSAGES/gimp20.mo
+share/locale/da/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/da/LC_MESSAGES/gimp20-python.mo
+share/locale/da/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/da/LC_MESSAGES/gimp20-tips.mo
+share/locale/da/LC_MESSAGES/gimp20.mo
+share/locale/de/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/de/LC_MESSAGES/gimp20-python.mo
+share/locale/de/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/de/LC_MESSAGES/gimp20-tips.mo
+share/locale/de/LC_MESSAGES/gimp20.mo
+share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/dz/LC_MESSAGES/gimp20-python.mo
+share/locale/dz/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/dz/LC_MESSAGES/gimp20-tips.mo
+share/locale/dz/LC_MESSAGES/gimp20.mo
+share/locale/el/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/el/LC_MESSAGES/gimp20-python.mo
+share/locale/el/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/el/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/el/LC_MESSAGES/gimp20.mo
+share/locale/en_CA/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/en_CA/LC_MESSAGES/gimp20-python.mo
+share/locale/en_CA/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/en_CA/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/en_CA/LC_MESSAGES/gimp20-tips.mo
+share/locale/en_CA/LC_MESSAGES/gimp20.mo
+share/locale/en_GB/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/en_GB/LC_MESSAGES/gimp20-python.mo
+share/locale/en_GB/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/en_GB/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/en_GB/LC_MESSAGES/gimp20-tips.mo
+share/locale/en_GB/LC_MESSAGES/gimp20.mo
+share/locale/eo/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/eo/LC_MESSAGES/gimp20-python.mo
+share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/eo/LC_MESSAGES/gimp20-tips.mo
+share/locale/eo/LC_MESSAGES/gimp20.mo
+share/locale/es/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/es/LC_MESSAGES/gimp20-python.mo
+share/locale/es/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/es/LC_MESSAGES/gimp20-tips.mo
+share/locale/es/LC_MESSAGES/gimp20.mo
+share/locale/et/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/et/LC_MESSAGES/gimp20-python.mo
+share/locale/et/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/et/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/et/LC_MESSAGES/gimp20-tips.mo
+share/locale/et/LC_MESSAGES/gimp20.mo
+share/locale/eu/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/eu/LC_MESSAGES/gimp20-python.mo
+share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/eu/LC_MESSAGES/gimp20-tips.mo
+share/locale/eu/LC_MESSAGES/gimp20.mo
+share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/fa/LC_MESSAGES/gimp20-python.mo
+share/locale/fa/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/fa/LC_MESSAGES/gimp20-tips.mo
+share/locale/fa/LC_MESSAGES/gimp20.mo
+share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/fi/LC_MESSAGES/gimp20-python.mo
+share/locale/fi/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/fi/LC_MESSAGES/gimp20-tips.mo
+share/locale/fi/LC_MESSAGES/gimp20.mo
+share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/fr/LC_MESSAGES/gimp20-python.mo
+share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/fr/LC_MESSAGES/gimp20-tips.mo
+share/locale/fr/LC_MESSAGES/gimp20.mo
+share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ga/LC_MESSAGES/gimp20-python.mo
+share/locale/ga/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ga/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ga/LC_MESSAGES/gimp20.mo
+share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/gl/LC_MESSAGES/gimp20-python.mo
+share/locale/gl/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/gl/LC_MESSAGES/gimp20-tips.mo
+share/locale/gl/LC_MESSAGES/gimp20.mo
+share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/gu/LC_MESSAGES/gimp20-python.mo
+share/locale/gu/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/gu/LC_MESSAGES/gimp20-tips.mo
+share/locale/gu/LC_MESSAGES/gimp20.mo
+share/locale/he/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/he/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/he/LC_MESSAGES/gimp20-tips.mo
+share/locale/he/LC_MESSAGES/gimp20.mo
+share/locale/hi/LC_MESSAGES/gimp20.mo
+share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/hr/LC_MESSAGES/gimp20-python.mo
+share/locale/hr/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/hr/LC_MESSAGES/gimp20-tips.mo
+share/locale/hr/LC_MESSAGES/gimp20.mo
+share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/hu/LC_MESSAGES/gimp20-python.mo
+share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/hu/LC_MESSAGES/gimp20-tips.mo
+share/locale/hu/LC_MESSAGES/gimp20.mo
+share/locale/id/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/id/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/id/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/id/LC_MESSAGES/gimp20.mo
+share/locale/is/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/is/LC_MESSAGES/gimp20-python.mo
+share/locale/is/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/is/LC_MESSAGES/gimp20-tips.mo
+share/locale/is/LC_MESSAGES/gimp20.mo
+share/locale/it/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/it/LC_MESSAGES/gimp20-python.mo
+share/locale/it/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/it/LC_MESSAGES/gimp20-tips.mo
+share/locale/it/LC_MESSAGES/gimp20.mo
+share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ja/LC_MESSAGES/gimp20-python.mo
+share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ja/LC_MESSAGES/gimp20-tips.mo
+share/locale/ja/LC_MESSAGES/gimp20.mo
+share/locale/ka/LC_MESSAGES/gimp20.mo
+share/locale/km/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/km/LC_MESSAGES/gimp20-python.mo
+share/locale/km/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/km/LC_MESSAGES/gimp20-tips.mo
+share/locale/km/LC_MESSAGES/gimp20.mo
+share/locale/ko/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ko/LC_MESSAGES/gimp20-python.mo
+share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ko/LC_MESSAGES/gimp20-tips.mo
+share/locale/ko/LC_MESSAGES/gimp20.mo
+share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/lt/LC_MESSAGES/gimp20-python.mo
+share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/lt/LC_MESSAGES/gimp20-tips.mo
+share/locale/lt/LC_MESSAGES/gimp20.mo
+share/locale/lv/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/lv/LC_MESSAGES/gimp20.mo
+share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/mk/LC_MESSAGES/gimp20-python.mo
+share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/mk/LC_MESSAGES/gimp20-tips.mo
+share/locale/mk/LC_MESSAGES/gimp20.mo
+share/locale/ml/LC_MESSAGES/gimp20.mo
+share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ms/LC_MESSAGES/gimp20-python.mo
+share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ms/LC_MESSAGES/gimp20-tips.mo
+share/locale/ms/LC_MESSAGES/gimp20.mo
+share/locale/nb/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/nb/LC_MESSAGES/gimp20-python.mo
+share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/nb/LC_MESSAGES/gimp20-tips.mo
+share/locale/nb/LC_MESSAGES/gimp20.mo
+share/locale/ne/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ne/LC_MESSAGES/gimp20-python.mo
+share/locale/ne/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ne/LC_MESSAGES/gimp20-tips.mo
+share/locale/ne/LC_MESSAGES/gimp20.mo
+share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/nl/LC_MESSAGES/gimp20-python.mo
+share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/nl/LC_MESSAGES/gimp20-tips.mo
+share/locale/nl/LC_MESSAGES/gimp20.mo
+share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/nn/LC_MESSAGES/gimp20-python.mo
+share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/nn/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/nn/LC_MESSAGES/gimp20-tips.mo
+share/locale/nn/LC_MESSAGES/gimp20.mo
+share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/oc/LC_MESSAGES/gimp20-python.mo
+share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/oc/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/oc/LC_MESSAGES/gimp20.mo
+share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/pa/LC_MESSAGES/gimp20-python.mo
+share/locale/pa/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/pa/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/pa/LC_MESSAGES/gimp20-tips.mo
+share/locale/pa/LC_MESSAGES/gimp20.mo
+share/locale/pl/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/pl/LC_MESSAGES/gimp20-python.mo
+share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/pl/LC_MESSAGES/gimp20-tips.mo
+share/locale/pl/LC_MESSAGES/gimp20.mo
+share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/pt/LC_MESSAGES/gimp20-python.mo
+share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/pt/LC_MESSAGES/gimp20-tips.mo
+share/locale/pt/LC_MESSAGES/gimp20.mo
+share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo
+share/locale/pt_BR/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/pt_BR/LC_MESSAGES/gimp20-tips.mo
+share/locale/pt_BR/LC_MESSAGES/gimp20.mo
+share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ro/LC_MESSAGES/gimp20-python.mo
+share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ro/LC_MESSAGES/gimp20-tips.mo
+share/locale/ro/LC_MESSAGES/gimp20.mo
+share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/ru/LC_MESSAGES/gimp20-python.mo
+share/locale/ru/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/ru/LC_MESSAGES/gimp20-tips.mo
+share/locale/ru/LC_MESSAGES/gimp20.mo
+share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/rw/LC_MESSAGES/gimp20-python.mo
+share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/rw/LC_MESSAGES/gimp20-tips.mo
+share/locale/rw/LC_MESSAGES/gimp20.mo
+share/locale/sk/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/sk/LC_MESSAGES/gimp20-python.mo
+share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/sk/LC_MESSAGES/gimp20-tips.mo
+share/locale/sk/LC_MESSAGES/gimp20.mo
+share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/sl/LC_MESSAGES/gimp20-python.mo
+share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/sl/LC_MESSAGES/gimp20-tips.mo
+share/locale/sl/LC_MESSAGES/gimp20.mo
+share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/sr/LC_MESSAGES/gimp20-python.mo
+share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/sr/LC_MESSAGES/gimp20-tips.mo
+share/locale/sr/LC_MESSAGES/gimp20.mo
+share/locale/sr@latin/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/sr@latin/LC_MESSAGES/gimp20-python.mo
+share/locale/sr@latin/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/sr@latin/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/sr@latin/LC_MESSAGES/gimp20-tips.mo
+share/locale/sr@latin/LC_MESSAGES/gimp20.mo
+share/locale/sv/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/sv/LC_MESSAGES/gimp20-python.mo
+share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/sv/LC_MESSAGES/gimp20-tips.mo
+share/locale/sv/LC_MESSAGES/gimp20.mo
+share/locale/th/LC_MESSAGES/gimp20.mo
+share/locale/tr/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/tr/LC_MESSAGES/gimp20-python.mo
+share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/tr/LC_MESSAGES/gimp20.mo
+share/locale/tt/LC_MESSAGES/gimp20.mo
+share/locale/uk/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/uk/LC_MESSAGES/gimp20-python.mo
+share/locale/uk/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/uk/LC_MESSAGES/gimp20-tips.mo
+share/locale/uk/LC_MESSAGES/gimp20.mo
+share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/vi/LC_MESSAGES/gimp20-python.mo
+share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/vi/LC_MESSAGES/gimp20-tips.mo
+share/locale/vi/LC_MESSAGES/gimp20.mo
+share/locale/xh/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/xh/LC_MESSAGES/gimp20-python.mo
+share/locale/xh/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/xh/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/xh/LC_MESSAGES/gimp20.mo
+share/locale/yi/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/yi/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/yi/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/yi/LC_MESSAGES/gimp20.mo
+share/locale/zh_CN/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/zh_CN/LC_MESSAGES/gimp20-python.mo
+share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/zh_CN/LC_MESSAGES/gimp20-tips.mo
+share/locale/zh_CN/LC_MESSAGES/gimp20.mo
+share/locale/zh_HK/LC_MESSAGES/gimp20.mo
+share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo
+share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo
+share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo
+share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo
+share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo
+share/locale/zh_TW/LC_MESSAGES/gimp20.mo
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/scalable/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/64x64/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/48x48/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/32x32/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/24x24/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/22x22/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor/16x16/apps
+@comment in hicolor-icon-theme: @dirrm share/icons/hicolor
+@dirrm share/gtk-doc/html/libgimpwidgets
+@dirrm share/gtk-doc/html/libgimpthumb
+@dirrm share/gtk-doc/html/libgimpmodule
+@dirrm share/gtk-doc/html/libgimpmath
+@dirrm share/gtk-doc/html/libgimpconfig
+@dirrm share/gtk-doc/html/libgimpcolor
+@dirrm share/gtk-doc/html/libgimpbase
+@dirrm share/gtk-doc/html/libgimp
+@dirrm share/gimp/2.0/tips
+@dirrm share/gimp/2.0/themes/Small
+@dirrm share/gimp/2.0/themes/Default/images/preferences
+@dirrm share/gimp/2.0/themes/Default/images
+@dirrm share/gimp/2.0/themes/Default
+@dirrm share/gimp/2.0/themes
+@dirrm share/gimp/2.0/scripts/images
+@dirrm share/gimp/2.0/scripts
+@dirrm share/gimp/2.0/patterns
+@dirrm share/gimp/2.0/palettes
+@dirrm share/gimp/2.0/menus
+@dirrm share/gimp/2.0/images
+@dirrm share/gimp/2.0/gradients
+@dirrm share/gimp/2.0/gimpressionist/Presets
+@dirrm share/gimp/2.0/gimpressionist/Paper
+@dirrm share/gimp/2.0/gimpressionist/Brushes
+@dirrm share/gimp/2.0/gimpressionist
+@dirrm share/gimp/2.0/gflare
+@dirrm share/gimp/2.0/gfig
+@dirrm share/gimp/2.0/fractalexplorer
+@exec ${MKDIR} %D/share/gimp/2.0/fonts
+@dirrm share/gimp/2.0/fonts
+@dirrm share/gimp/2.0/brushes
+@dirrm share/gimp/2.0
+@dirrm share/gimp
+@dirrm share/examples/gimp-2.0
+@comment in xdg-dirs: @dirrm share/applications
+@dirrm lib/gimp/2.0/plug-ins
+@dirrm lib/gimp/2.0/modules
+@dirrm lib/gimp/2.0/interpreters
+@dirrm lib/gimp/2.0/environ
+@dirrm lib/gimp/2.0
+@dirrm lib/gimp
+@dirrm include/gimp-2.0/libgimpwidgets
+@dirrm include/gimp-2.0/libgimpthumb
+@dirrm include/gimp-2.0/libgimpmodule
+@dirrm include/gimp-2.0/libgimpmath
+@dirrm include/gimp-2.0/libgimpconfig
+@dirrm include/gimp-2.0/libgimpcolor
+@dirrm include/gimp-2.0/libgimpbase
+@dirrm include/gimp-2.0/libgimp
+@dirrm include/gimp-2.0
diff --git a/graphics/gimp26/buildlink3.mk b/graphics/gimp26/buildlink3.mk
new file mode 100644
index 00000000000..f7ead559f39
--- /dev/null
+++ b/graphics/gimp26/buildlink3.mk
@@ -0,0 +1,48 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+
+BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
+GIMP_BUILDLINK3_MK:= ${GIMP_BUILDLINK3_MK}+
+
+.if !empty(BUILDLINK_DEPTH:M+)
+BUILDLINK_DEPENDS+= gimp
+.endif
+
+BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ngimp}
+BUILDLINK_PACKAGES+= gimp
+BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}gimp
+
+.if !empty(GIMP_BUILDLINK3_MK:M+)
+BUILDLINK_API_DEPENDS.gimp+= gimp>=2.4.0
+BUILDLINK_ABI_DEPENDS.gimp+= gimp>=2.4.4
+BUILDLINK_PKGSRCDIR.gimp?= ../../graphics/gimp
+.endif # GIMP_BUILDLINK3_MK
+
+pkgbase := gimp
+.include "../../mk/pkg-build-options.mk"
+
+.if !empty(PKG_BUILD_OPTIONS.gimp:Maalib)
+.include "../../graphics/aalib/buildlink3.mk"
+.endif
+
+.if !empty(PKG_BUILD_OPTIONS.gimp:Mgnome)
+.include "../../www/libgtkhtml/buildlink3.mk"
+.endif
+
+.if !empty(PKG_BUILD_OPTIONS.gimp:Mmng)
+.include "../../graphics/mng/buildlink3.mk"
+.endif
+
+.if !empty(PKG_BUILD_OPTIONS.gimp:Msvg)
+.include "../../graphics/librsvg/buildlink3.mk"
+.endif
+
+.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../fonts/fontconfig/buildlink3.mk"
+.include "../../graphics/lcms/buildlink3.mk"
+.include "../../graphics/libart/buildlink3.mk"
+.include "../../graphics/libexif/buildlink3.mk"
+.include "../../graphics/png/buildlink3.mk"
+.include "../../graphics/libwmf/buildlink3.mk"
+.include "../../x11/gtk2/buildlink3.mk"
+
+BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
diff --git a/graphics/gimp26/distinfo b/graphics/gimp26/distinfo
new file mode 100644
index 00000000000..a37c2c31e44
--- /dev/null
+++ b/graphics/gimp26/distinfo
@@ -0,0 +1,8 @@
+$NetBSD: distinfo,v 1.1.1.1 2008/11/26 12:19:56 drochner Exp $
+
+SHA1 (gimp-2.6.3.tar.bz2) = 5e64c03d9d05fa28656c6041039c26cd7c09deab
+RMD160 (gimp-2.6.3.tar.bz2) = ac736b1e49918f4aa23215fce9ab56c359c586f0
+Size (gimp-2.6.3.tar.bz2) = 15978924 bytes
+SHA1 (patch-aa) = 4881df151c386371a91e558b4b15611023fceca1
+SHA1 (patch-ab) = 636d2a78256c34fdb141f15c3520fdb0abe31069
+SHA1 (patch-ac) = b1f4b802eebbb2d2145e0e282e65d48a0409a6b8
diff --git a/graphics/gimp26/files/msgfmtstrip b/graphics/gimp26/files/msgfmtstrip
new file mode 100644
index 00000000000..f194ce51ffc
--- /dev/null
+++ b/graphics/gimp26/files/msgfmtstrip
@@ -0,0 +1,18 @@
+# $Id: msgfmtstrip,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+# Simple awk script to strip out .po entries with "msgctxt" or "#~|", so the
+# resultant file can be handled by the msgfmt 0.14.4 in NetBSD 4.0
+{
+if (/^$/) { entry_end(); }
+else if ($1 == "msgctxt" || $2 == "msgctxt") { skip = 1; }
+else if ($1 == "#~|") { skip = 1; }
+else { entry = entry $0 "\n" }
+}
+
+END { entry_end(); }
+
+function entry_end() {
+ if (!skip)
+ print entry;
+ entry = "";
+ skip = 0;
+}
diff --git a/graphics/gimp26/options.mk b/graphics/gimp26/options.mk
new file mode 100644
index 00000000000..1613fb720cf
--- /dev/null
+++ b/graphics/gimp26/options.mk
@@ -0,0 +1,29 @@
+# $NetBSD: options.mk,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.gimp
+PKG_SUPPORTED_OPTIONS= aalib gnome mng svg
+PKG_SUGGESTED_OPTIONS= aalib gnome mng svg
+
+.include "../../mk/bsd.options.mk"
+
+PLIST_VARS+= aalib gnome mng svg
+
+.if !empty(PKG_OPTIONS:Maalib)
+.include "../../graphics/aalib/buildlink3.mk"
+PLIST.aalib= yes
+.endif
+
+.if !empty(PKG_OPTIONS:Mgnome)
+.include "../../www/libgtkhtml/buildlink3.mk"
+PLIST.gnome= yes
+.endif
+
+.if !empty(PKG_OPTIONS:Mmng)
+.include "../../graphics/mng/buildlink3.mk"
+PLIST.mng= yes
+.endif
+
+.if !empty(PKG_OPTIONS:Msvg)
+.include "../../graphics/librsvg/buildlink3.mk"
+PLIST.svg= yes
+.endif
diff --git a/graphics/gimp26/patches/patch-aa b/graphics/gimp26/patches/patch-aa
new file mode 100644
index 00000000000..cc1be0d2165
--- /dev/null
+++ b/graphics/gimp26/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+
+--- etc/Makefile.in.orig 2008-08-21 11:36:45.000000000 +0200
++++ etc/Makefile.in
+@@ -338,7 +338,7 @@ gimpdatadir = @gimpdatadir@
+ gimpdir = @gimpdir@
+ gimplocaledir = @gimplocaledir@
+ gimpplugindir = @gimpplugindir@
+-gimpsysconfdir = @gimpsysconfdir@
++gimpsysconfdir = $(prefix)/share/examples/gimp-2.0
+ host = @host@
+ host_alias = @host_alias@
+ host_cpu = @host_cpu@
diff --git a/graphics/gimp26/patches/patch-ab b/graphics/gimp26/patches/patch-ab
new file mode 100644
index 00000000000..9c777529917
--- /dev/null
+++ b/graphics/gimp26/patches/patch-ab
@@ -0,0 +1,38 @@
+$NetBSD: patch-ab,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+
+--- configure.orig 2008-11-20 23:48:56.000000000 +0100
++++ configure
+@@ -31444,6 +31444,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&
+ gimp_ok=yes
+ fi
+ rm -f conftest*
++ fi
+
+ if test "x$gimp_ok" = xyes; then
+
+@@ -31452,7 +31453,6 @@ cat >>confdefs.h <<\_ACEOF
+ _ACEOF
+
+ fi
+- fi
+ { echo "$as_me:$LINENO: result: $gimp_ok" >&5
+ echo "${ECHO_T}$gimp_ok" >&6; }
+ if test "x$gimp_ok" = xno; then
+@@ -34171,7 +34171,7 @@ if test "x$with_print" != xno; then
+ enable_print="yes"
+ fi
+
+- if test "x$enable_print" == xyes; then
++ if test "x$enable_print" = xyes; then
+ BUILD_PRINT_TRUE=
+ BUILD_PRINT_FALSE='#'
+ else
+@@ -36840,7 +36840,7 @@ fi
+
+ gimpdatadir="$datadir/$PACKAGE/2.0"
+ gimpplugindir="$libdir/$PACKAGE/2.0"
+-gimpsysconfdir="$sysconfdir/$PACKAGE/2.0"
++gimpsysconfdir="$sysconfdir"
+
+
+
diff --git a/graphics/gimp26/patches/patch-ac b/graphics/gimp26/patches/patch-ac
new file mode 100644
index 00000000000..aa860a4b923
--- /dev/null
+++ b/graphics/gimp26/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1.1.1 2008/11/26 12:19:58 drochner Exp $
+
+--- plug-ins/twain/Makefile.in.orig 2008-08-30 19:55:20.000000000 +0100
++++ plug-ins/twain/Makefile.in 2008-08-30 20:02:01.000000000 +0100
+@@ -67,7 +67,7 @@
+ $(am__DEPENDENCIES_1)
+ twain_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(twain_LDFLAGS) \
+- $(LDFLAGS) -o $@
++ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles