summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:30:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:30:19 +0000
commit5c1676dfe6d2f3c837a5e074117b45613fd29a72 (patch)
treecbffb45144febf451e54061db2b21395faf94bfe /docs
parentInitial commit. (diff)
downloadgimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.tar.xz
gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.zip
Adding upstream version 2.10.34.upstream/2.10.34upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am55
-rw-r--r--docs/Makefile.in922
-rw-r--r--docs/Wilber.xcf.gzbin0 -> 7326 bytes
-rw-r--r--docs/Wilber.xcf.gz.README15
-rw-r--r--docs/Wilber_Construction_Kit.xcf.gzbin0 -> 66546 bytes
-rw-r--r--docs/gimp.1.in357
-rw-r--r--docs/gimprc.5.in1493
-rw-r--r--docs/gimptool.1.in235
8 files changed, 3077 insertions, 0 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
new file mode 100644
index 0000000..b4e3161
--- /dev/null
+++ b/docs/Makefile.am
@@ -0,0 +1,55 @@
+## Process this file with automake to produce Makefile.in
+
+EXTRA_DIST = \
+ Wilber.xcf.gz \
+ Wilber.xcf.gz.README \
+ Wilber_Construction_Kit.xcf.gz
+
+mans = \
+ gimp-$(GIMP_APP_VERSION).1 \
+ gimprc-$(GIMP_APP_VERSION).5
+
+man_MANS = \
+ $(mans) \
+ gimptool-$(GIMP_TOOL_VERSION).1
+
+default_binary_mans = $(mans)
+if ENABLE_GIMP_CONSOLE
+default_binary_mans += gimp-console-$(GIMP_APP_VERSION).1
+endif
+
+install-data-hook:
+if ENABLE_GIMP_CONSOLE
+ cd $(DESTDIR)$(mandir)/man1; \
+ rm -f gimp-console-$(GIMP_APP_VERSION).1; \
+ ln -s gimp-$(GIMP_APP_VERSION).1 gimp-console-$(GIMP_APP_VERSION).1
+endif
+if DEFAULT_BINARY
+ @list='$(default_binary_mans)'; \
+ for i in $$list; do \
+ s=`echo $$i | sed -e 's/.*\\(.\\)$$/\1/'`; \
+ n=`echo $$i | sed -e 's/-[^-]*$$//'`; \
+ f="$$n.$$s"; \
+ echo "cd $(DESTDIR)$(mandir)/man$$s"; \
+ cd $(DESTDIR)$(mandir)/man$$s; \
+ echo "rm -f $$f"; \
+ rm -f $$f; \
+ echo "ln -s $$i $$f"; \
+ ln -s $$i $$f; \
+ done
+endif
+
+uninstall-local:
+if ENABLE_GIMP_CONSOLE
+ rm -f $(DESTDIR)$(mandir)/man1/gimp-console-$(GIMP_APP_VERSION).1
+endif
+if DEFAULT_BINARY
+ @list='$(default_binary_mans)'; \
+ for i in $$list; do \
+ s=`echo $$i | sed -e 's/.*\\(.\\)$$/\1/'`; \
+ n=`echo $$i | sed -e 's/-[^-]*$$//'`; \
+ f="$$n.$$s"; \
+ echo " rm -f $(DESTDIR)$(mandir)/man$$s/$$f"; \
+ rm -f $(DESTDIR)$(mandir)/man$$s/$$f; \
+ done
+endif
diff --git a/docs/Makefile.in b/docs/Makefile.in
new file mode 100644
index 0000000..2f7e652
--- /dev/null
+++ b/docs/Makefile.in
@@ -0,0 +1,922 @@
+# Makefile.in generated by automake 1.16.3 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
+
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+VPATH = @srcdir@
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
+ case $$MAKEFLAGS in \
+ *\\[\ \ ]*) \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+@ENABLE_GIMP_CONSOLE_TRUE@am__append_1 = gimp-console-$(GIMP_APP_VERSION).1
+subdir = docs
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
+ $(top_srcdir)/m4macros/alsa.m4 \
+ $(top_srcdir)/m4macros/ax_compare_version.m4 \
+ $(top_srcdir)/m4macros/ax_cxx_compile_stdcxx.m4 \
+ $(top_srcdir)/m4macros/ax_gcc_func_attribute.m4 \
+ $(top_srcdir)/m4macros/ax_prog_cc_for_build.m4 \
+ $(top_srcdir)/m4macros/ax_prog_perl_version.m4 \
+ $(top_srcdir)/m4macros/detectcflags.m4 \
+ $(top_srcdir)/m4macros/pythondev.m4 $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES = gimp-2.10.1 gimprc-2.10.5 gimptool-2.0.1
+CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
+SOURCES =
+DIST_SOURCES =
+am__can_run_installinfo = \
+ case $$AM_UPDATE_INFO_DIR in \
+ n|no|NO) false;; \
+ *) (install-info --version) >/dev/null 2>&1;; \
+ esac
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+ *) f=$$p;; \
+ esac;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+ for p in $$list; do echo "$$p $$p"; done | \
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+ if (++n[$$2] == $(am__install_max)) \
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+ END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__uninstall_files_from_dir = { \
+ test -z "$$files" \
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+ $(am__cd) "$$dir" && rm -f $$files; }; \
+ }
+man1dir = $(mandir)/man1
+am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"
+man5dir = $(mandir)/man5
+NROFF = nroff
+MANS = $(man_MANS)
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/gimp.1.in \
+ $(srcdir)/gimprc.5.in $(srcdir)/gimptool.1.in
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+AA_LIBS = @AA_LIBS@
+ACLOCAL = @ACLOCAL@
+ALLOCA = @ALLOCA@
+ALL_LINGUAS = @ALL_LINGUAS@
+ALSA_CFLAGS = @ALSA_CFLAGS@
+ALSA_LIBS = @ALSA_LIBS@
+ALTIVEC_EXTRA_CFLAGS = @ALTIVEC_EXTRA_CFLAGS@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+APPSTREAM_UTIL = @APPSTREAM_UTIL@
+AR = @AR@
+AS = @AS@
+ATK_CFLAGS = @ATK_CFLAGS@
+ATK_LIBS = @ATK_LIBS@
+ATK_REQUIRED_VERSION = @ATK_REQUIRED_VERSION@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+BABL_CFLAGS = @BABL_CFLAGS@
+BABL_LIBS = @BABL_LIBS@
+BABL_REQUIRED_VERSION = @BABL_REQUIRED_VERSION@
+BUG_REPORT_URL = @BUG_REPORT_URL@
+BUILD_EXEEXT = @BUILD_EXEEXT@
+BUILD_OBJEXT = @BUILD_OBJEXT@
+BZIP2_LIBS = @BZIP2_LIBS@
+CAIRO_CFLAGS = @CAIRO_CFLAGS@
+CAIRO_LIBS = @CAIRO_LIBS@
+CAIRO_PDF_CFLAGS = @CAIRO_PDF_CFLAGS@
+CAIRO_PDF_LIBS = @CAIRO_PDF_LIBS@
+CAIRO_PDF_REQUIRED_VERSION = @CAIRO_PDF_REQUIRED_VERSION@
+CAIRO_REQUIRED_VERSION = @CAIRO_REQUIRED_VERSION@
+CATALOGS = @CATALOGS@
+CATOBJEXT = @CATOBJEXT@
+CC = @CC@
+CCAS = @CCAS@
+CCASDEPMODE = @CCASDEPMODE@
+CCASFLAGS = @CCASFLAGS@
+CCDEPMODE = @CCDEPMODE@
+CC_FOR_BUILD = @CC_FOR_BUILD@
+CC_VERSION = @CC_VERSION@
+CFLAGS = @CFLAGS@
+CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
+CPP_FOR_BUILD = @CPP_FOR_BUILD@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DATADIRNAME = @DATADIRNAME@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DESKTOP_DATADIR = @DESKTOP_DATADIR@
+DESKTOP_FILE_VALIDATE = @DESKTOP_FILE_VALIDATE@
+DLLTOOL = @DLLTOOL@
+DOC_SHOOTER = @DOC_SHOOTER@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+FILE_AA = @FILE_AA@
+FILE_EXR = @FILE_EXR@
+FILE_HEIF = @FILE_HEIF@
+FILE_JP2_LOAD = @FILE_JP2_LOAD@
+FILE_JPEGXL = @FILE_JPEGXL@
+FILE_MNG = @FILE_MNG@
+FILE_PDF_SAVE = @FILE_PDF_SAVE@
+FILE_PS = @FILE_PS@
+FILE_WMF = @FILE_WMF@
+FILE_XMC = @FILE_XMC@
+FILE_XPM = @FILE_XPM@
+FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@
+FONTCONFIG_LIBS = @FONTCONFIG_LIBS@
+FONTCONFIG_REQUIRED_VERSION = @FONTCONFIG_REQUIRED_VERSION@
+FREETYPE2_REQUIRED_VERSION = @FREETYPE2_REQUIRED_VERSION@
+FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
+FREETYPE_LIBS = @FREETYPE_LIBS@
+GDBUS_CODEGEN = @GDBUS_CODEGEN@
+GDK_PIXBUF_CFLAGS = @GDK_PIXBUF_CFLAGS@
+GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@
+GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@
+GDK_PIXBUF_REQUIRED_VERSION = @GDK_PIXBUF_REQUIRED_VERSION@
+GEGL = @GEGL@
+GEGL_CFLAGS = @GEGL_CFLAGS@
+GEGL_LIBS = @GEGL_LIBS@
+GEGL_MAJOR_MINOR_VERSION = @GEGL_MAJOR_MINOR_VERSION@
+GEGL_REQUIRED_VERSION = @GEGL_REQUIRED_VERSION@
+GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
+GEXIV2_CFLAGS = @GEXIV2_CFLAGS@
+GEXIV2_LIBS = @GEXIV2_LIBS@
+GEXIV2_REQUIRED_VERSION = @GEXIV2_REQUIRED_VERSION@
+GIMP_API_VERSION = @GIMP_API_VERSION@
+GIMP_APP_VERSION = @GIMP_APP_VERSION@
+GIMP_BINARY_AGE = @GIMP_BINARY_AGE@
+GIMP_COMMAND = @GIMP_COMMAND@
+GIMP_DATA_VERSION = @GIMP_DATA_VERSION@
+GIMP_FULL_NAME = @GIMP_FULL_NAME@
+GIMP_INTERFACE_AGE = @GIMP_INTERFACE_AGE@
+GIMP_MAJOR_VERSION = @GIMP_MAJOR_VERSION@
+GIMP_MICRO_VERSION = @GIMP_MICRO_VERSION@
+GIMP_MINOR_VERSION = @GIMP_MINOR_VERSION@
+GIMP_MKENUMS = @GIMP_MKENUMS@
+GIMP_MODULES = @GIMP_MODULES@
+GIMP_PACKAGE_REVISION = @GIMP_PACKAGE_REVISION@
+GIMP_PKGCONFIG_VERSION = @GIMP_PKGCONFIG_VERSION@
+GIMP_PLUGINS = @GIMP_PLUGINS@
+GIMP_PLUGIN_VERSION = @GIMP_PLUGIN_VERSION@
+GIMP_REAL_VERSION = @GIMP_REAL_VERSION@
+GIMP_RELEASE = @GIMP_RELEASE@
+GIMP_SYSCONF_VERSION = @GIMP_SYSCONF_VERSION@
+GIMP_TOOL_VERSION = @GIMP_TOOL_VERSION@
+GIMP_UNSTABLE = @GIMP_UNSTABLE@
+GIMP_USER_VERSION = @GIMP_USER_VERSION@
+GIMP_VERSION = @GIMP_VERSION@
+GIO_CFLAGS = @GIO_CFLAGS@
+GIO_LIBS = @GIO_LIBS@
+GIO_UNIX_CFLAGS = @GIO_UNIX_CFLAGS@
+GIO_UNIX_LIBS = @GIO_UNIX_LIBS@
+GIO_WINDOWS_CFLAGS = @GIO_WINDOWS_CFLAGS@
+GIO_WINDOWS_LIBS = @GIO_WINDOWS_LIBS@
+GLIB_CFLAGS = @GLIB_CFLAGS@
+GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
+GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
+GLIB_LIBS = @GLIB_LIBS@
+GLIB_MKENUMS = @GLIB_MKENUMS@
+GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@
+GMODULE_NO_EXPORT_CFLAGS = @GMODULE_NO_EXPORT_CFLAGS@
+GMODULE_NO_EXPORT_LIBS = @GMODULE_NO_EXPORT_LIBS@
+GMOFILES = @GMOFILES@
+GMSGFMT = @GMSGFMT@
+GOBJECT_QUERY = @GOBJECT_QUERY@
+GREP = @GREP@
+GS_LIBS = @GS_LIBS@
+GTKDOC_CHECK = @GTKDOC_CHECK@
+GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
+GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
+GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
+GTKDOC_MKPDF = @GTKDOC_MKPDF@
+GTKDOC_REBASE = @GTKDOC_REBASE@
+GTK_CFLAGS = @GTK_CFLAGS@
+GTK_LIBS = @GTK_LIBS@
+GTK_MAC_INTEGRATION_CFLAGS = @GTK_MAC_INTEGRATION_CFLAGS@
+GTK_MAC_INTEGRATION_LIBS = @GTK_MAC_INTEGRATION_LIBS@
+GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@
+GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@
+GUDEV_CFLAGS = @GUDEV_CFLAGS@
+GUDEV_LIBS = @GUDEV_LIBS@
+HARFBUZZ_CFLAGS = @HARFBUZZ_CFLAGS@
+HARFBUZZ_LIBS = @HARFBUZZ_LIBS@
+HARFBUZZ_REQUIRED_VERSION = @HARFBUZZ_REQUIRED_VERSION@
+HAVE_CXX14 = @HAVE_CXX14@
+HAVE_FINITE = @HAVE_FINITE@
+HAVE_ISFINITE = @HAVE_ISFINITE@
+HAVE_VFORK = @HAVE_VFORK@
+HOST_GLIB_COMPILE_RESOURCES = @HOST_GLIB_COMPILE_RESOURCES@
+HTML_DIR = @HTML_DIR@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTOBJEXT = @INSTOBJEXT@
+INTLLIBS = @INTLLIBS@
+INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
+INTLTOOL_MERGE = @INTLTOOL_MERGE@
+INTLTOOL_PERL = @INTLTOOL_PERL@
+INTLTOOL_REQUIRED_VERSION = @INTLTOOL_REQUIRED_VERSION@
+INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
+INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
+INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
+INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
+ISO_CODES_LOCALEDIR = @ISO_CODES_LOCALEDIR@
+ISO_CODES_LOCATION = @ISO_CODES_LOCATION@
+JPEG_LIBS = @JPEG_LIBS@
+JSON_GLIB_CFLAGS = @JSON_GLIB_CFLAGS@
+JSON_GLIB_LIBS = @JSON_GLIB_LIBS@
+JXL_CFLAGS = @JXL_CFLAGS@
+JXL_LIBS = @JXL_LIBS@
+JXL_THREADS_CFLAGS = @JXL_THREADS_CFLAGS@
+JXL_THREADS_LIBS = @JXL_THREADS_LIBS@
+LCMS_CFLAGS = @LCMS_CFLAGS@
+LCMS_LIBS = @LCMS_LIBS@
+LCMS_REQUIRED_VERSION = @LCMS_REQUIRED_VERSION@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
+LIBBACKTRACE_LIBS = @LIBBACKTRACE_LIBS@
+LIBHEIF_CFLAGS = @LIBHEIF_CFLAGS@
+LIBHEIF_LIBS = @LIBHEIF_LIBS@
+LIBHEIF_REQUIRED_VERSION = @LIBHEIF_REQUIRED_VERSION@
+LIBJXL_REQUIRED_VERSION = @LIBJXL_REQUIRED_VERSION@
+LIBLZMA_REQUIRED_VERSION = @LIBLZMA_REQUIRED_VERSION@
+LIBMYPAINT_CFLAGS = @LIBMYPAINT_CFLAGS@
+LIBMYPAINT_LIBS = @LIBMYPAINT_LIBS@
+LIBMYPAINT_REQUIRED_VERSION = @LIBMYPAINT_REQUIRED_VERSION@
+LIBOBJS = @LIBOBJS@
+LIBPNG_REQUIRED_VERSION = @LIBPNG_REQUIRED_VERSION@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LIBUNWIND_CFLAGS = @LIBUNWIND_CFLAGS@
+LIBUNWIND_LIBS = @LIBUNWIND_LIBS@
+LIBUNWIND_REQUIRED_VERSION = @LIBUNWIND_REQUIRED_VERSION@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
+LT_VERSION_INFO = @LT_VERSION_INFO@
+LZMA_CFLAGS = @LZMA_CFLAGS@
+LZMA_LIBS = @LZMA_LIBS@
+MAIL = @MAIL@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MIME_INFO_CFLAGS = @MIME_INFO_CFLAGS@
+MIME_INFO_LIBS = @MIME_INFO_LIBS@
+MIME_TYPES = @MIME_TYPES@
+MKDIR_P = @MKDIR_P@
+MKINSTALLDIRS = @MKINSTALLDIRS@
+MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@
+MNG_CFLAGS = @MNG_CFLAGS@
+MNG_LIBS = @MNG_LIBS@
+MSGFMT = @MSGFMT@
+MSGFMT_OPTS = @MSGFMT_OPTS@
+MSGMERGE = @MSGMERGE@
+MYPAINT_BRUSHES_CFLAGS = @MYPAINT_BRUSHES_CFLAGS@
+MYPAINT_BRUSHES_LIBS = @MYPAINT_BRUSHES_LIBS@
+NATIVE_GLIB_CFLAGS = @NATIVE_GLIB_CFLAGS@
+NATIVE_GLIB_LIBS = @NATIVE_GLIB_LIBS@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OPENEXR_CFLAGS = @OPENEXR_CFLAGS@
+OPENEXR_LIBS = @OPENEXR_LIBS@
+OPENEXR_REQUIRED_VERSION = @OPENEXR_REQUIRED_VERSION@
+OPENJPEG_CFLAGS = @OPENJPEG_CFLAGS@
+OPENJPEG_LIBS = @OPENJPEG_LIBS@
+OPENJPEG_REQUIRED_VERSION = @OPENJPEG_REQUIRED_VERSION@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@
+PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@
+PANGOCAIRO_REQUIRED_VERSION = @PANGOCAIRO_REQUIRED_VERSION@
+PATHSEP = @PATHSEP@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PERL = @PERL@
+PERL_REQUIRED_VERSION = @PERL_REQUIRED_VERSION@
+PERL_VERSION = @PERL_VERSION@
+PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+PNG_CFLAGS = @PNG_CFLAGS@
+PNG_LIBS = @PNG_LIBS@
+POFILES = @POFILES@
+POPPLER_CFLAGS = @POPPLER_CFLAGS@
+POPPLER_DATA_CFLAGS = @POPPLER_DATA_CFLAGS@
+POPPLER_DATA_LIBS = @POPPLER_DATA_LIBS@
+POPPLER_DATA_REQUIRED_VERSION = @POPPLER_DATA_REQUIRED_VERSION@
+POPPLER_LIBS = @POPPLER_LIBS@
+POPPLER_REQUIRED_VERSION = @POPPLER_REQUIRED_VERSION@
+POSUB = @POSUB@
+PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
+PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
+PYBIN_PATH = @PYBIN_PATH@
+PYCAIRO_CFLAGS = @PYCAIRO_CFLAGS@
+PYCAIRO_LIBS = @PYCAIRO_LIBS@
+PYGIMP_EXTRA_CFLAGS = @PYGIMP_EXTRA_CFLAGS@
+PYGTK_CFLAGS = @PYGTK_CFLAGS@
+PYGTK_CODEGEN = @PYGTK_CODEGEN@
+PYGTK_DEFSDIR = @PYGTK_DEFSDIR@
+PYGTK_LIBS = @PYGTK_LIBS@
+PYLINK_LIBS = @PYLINK_LIBS@
+PYTHON = @PYTHON@
+PYTHON2_REQUIRED_VERSION = @PYTHON2_REQUIRED_VERSION@
+PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
+PYTHON_INCLUDES = @PYTHON_INCLUDES@
+PYTHON_PLATFORM = @PYTHON_PLATFORM@
+PYTHON_PREFIX = @PYTHON_PREFIX@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+RSVG_REQUIRED_VERSION = @RSVG_REQUIRED_VERSION@
+RT_LIBS = @RT_LIBS@
+SCREENSHOT_LIBS = @SCREENSHOT_LIBS@
+SED = @SED@
+SENDMAIL = @SENDMAIL@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+SOCKET_LIBS = @SOCKET_LIBS@
+SSE2_EXTRA_CFLAGS = @SSE2_EXTRA_CFLAGS@
+SSE4_1_EXTRA_CFLAGS = @SSE4_1_EXTRA_CFLAGS@
+SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@
+STRIP = @STRIP@
+SVG_CFLAGS = @SVG_CFLAGS@
+SVG_LIBS = @SVG_LIBS@
+SYMPREFIX = @SYMPREFIX@
+TIFF_LIBS = @TIFF_LIBS@
+USE_NLS = @USE_NLS@
+VERSION = @VERSION@
+WEBKIT_CFLAGS = @WEBKIT_CFLAGS@
+WEBKIT_LIBS = @WEBKIT_LIBS@
+WEBKIT_REQUIRED_VERSION = @WEBKIT_REQUIRED_VERSION@
+WEBPDEMUX_CFLAGS = @WEBPDEMUX_CFLAGS@
+WEBPDEMUX_LIBS = @WEBPDEMUX_LIBS@
+WEBPMUX_CFLAGS = @WEBPMUX_CFLAGS@
+WEBPMUX_LIBS = @WEBPMUX_LIBS@
+WEBP_CFLAGS = @WEBP_CFLAGS@
+WEBP_LIBS = @WEBP_LIBS@
+WEBP_REQUIRED_VERSION = @WEBP_REQUIRED_VERSION@
+WEB_PAGE = @WEB_PAGE@
+WIN32_LARGE_ADDRESS_AWARE = @WIN32_LARGE_ADDRESS_AWARE@
+WINDRES = @WINDRES@
+WMF_CFLAGS = @WMF_CFLAGS@
+WMF_CONFIG = @WMF_CONFIG@
+WMF_LIBS = @WMF_LIBS@
+WMF_REQUIRED_VERSION = @WMF_REQUIRED_VERSION@
+XDG_EMAIL = @XDG_EMAIL@
+XFIXES_CFLAGS = @XFIXES_CFLAGS@
+XFIXES_LIBS = @XFIXES_LIBS@
+XGETTEXT = @XGETTEXT@
+XGETTEXT_REQUIRED_VERSION = @XGETTEXT_REQUIRED_VERSION@
+XMC_CFLAGS = @XMC_CFLAGS@
+XMC_LIBS = @XMC_LIBS@
+XMKMF = @XMKMF@
+XMLLINT = @XMLLINT@
+XMU_LIBS = @XMU_LIBS@
+XPM_LIBS = @XPM_LIBS@
+XSLTPROC = @XSLTPROC@
+XVFB_RUN = @XVFB_RUN@
+X_CFLAGS = @X_CFLAGS@
+X_EXTRA_LIBS = @X_EXTRA_LIBS@
+X_LIBS = @X_LIBS@
+X_PRE_LIBS = @X_PRE_LIBS@
+Z_LIBS = @Z_LIBS@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CC_FOR_BUILD = @ac_ct_CC_FOR_BUILD@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+gimpdatadir = @gimpdatadir@
+gimpdir = @gimpdir@
+gimplocaledir = @gimplocaledir@
+gimpplugindir = @gimpplugindir@
+gimpsysconfdir = @gimpsysconfdir@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+intltool__v_merge_options_ = @intltool__v_merge_options_@
+intltool__v_merge_options_0 = @intltool__v_merge_options_0@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+manpage_gimpdir = @manpage_gimpdir@
+mkdir_p = @mkdir_p@
+ms_librarian = @ms_librarian@
+mypaint_brushes_dir = @mypaint_brushes_dir@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+pkgpyexecdir = @pkgpyexecdir@
+pkgpythondir = @pkgpythondir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+pyexecdir = @pyexecdir@
+pythondir = @pythondir@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+EXTRA_DIST = \
+ Wilber.xcf.gz \
+ Wilber.xcf.gz.README \
+ Wilber_Construction_Kit.xcf.gz
+
+mans = \
+ gimp-$(GIMP_APP_VERSION).1 \
+ gimprc-$(GIMP_APP_VERSION).5
+
+man_MANS = \
+ $(mans) \
+ gimptool-$(GIMP_TOOL_VERSION).1
+
+default_binary_mans = $(mans) $(am__append_1)
+all: all-am
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
+ @for dep in $?; do \
+ case '$(am__configure_deps)' in \
+ *$$dep*) \
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+ && { if test -f $@; then exit 0; else break; fi; }; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \
+ $(am__cd) $(top_srcdir) && \
+ $(AUTOMAKE) --gnu docs/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ @case '$?' in \
+ *config.status*) \
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+ *) \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
+ esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+gimp-2.10.1: $(top_builddir)/config.status $(srcdir)/gimp.1.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+gimprc-2.10.5: $(top_builddir)/config.status $(srcdir)/gimprc.5.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+gimptool-2.0.1: $(top_builddir)/config.status $(srcdir)/gimptool.1.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+install-man1: $(man_MANS)
+ @$(NORMAL_INSTALL)
+ @list1=''; \
+ list2='$(man_MANS)'; \
+ test -n "$(man1dir)" \
+ && test -n "`echo $$list1$$list2`" \
+ || exit 0; \
+ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
+ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
+ { for i in $$list1; do echo "$$i"; done; \
+ if test -n "$$list2"; then \
+ for i in $$list2; do echo "$$i"; done \
+ | sed -n '/\.1[a-z]*$$/p'; \
+ fi; \
+ } | while read p; do \
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+ echo "$$d$$p"; echo "$$p"; \
+ done | \
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+ sed 'N;N;s,\n, ,g' | { \
+ list=; while read file base inst; do \
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
+ fi; \
+ done; \
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+ while read files; do \
+ test -z "$$files" || { \
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
+ done; }
+
+uninstall-man1:
+ @$(NORMAL_UNINSTALL)
+ @list=''; test -n "$(man1dir)" || exit 0; \
+ files=`{ for i in $$list; do echo "$$i"; done; \
+ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
+ sed -n '/\.1[a-z]*$$/p'; \
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
+install-man5: $(man_MANS)
+ @$(NORMAL_INSTALL)
+ @list1=''; \
+ list2='$(man_MANS)'; \
+ test -n "$(man5dir)" \
+ && test -n "`echo $$list1$$list2`" \
+ || exit 0; \
+ echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \
+ $(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \
+ { for i in $$list1; do echo "$$i"; done; \
+ if test -n "$$list2"; then \
+ for i in $$list2; do echo "$$i"; done \
+ | sed -n '/\.5[a-z]*$$/p'; \
+ fi; \
+ } | while read p; do \
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+ echo "$$d$$p"; echo "$$p"; \
+ done | \
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+ sed 'N;N;s,\n, ,g' | { \
+ list=; while read file base inst; do \
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \
+ fi; \
+ done; \
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+ while read files; do \
+ test -z "$$files" || { \
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
+ done; }
+
+uninstall-man5:
+ @$(NORMAL_UNINSTALL)
+ @list=''; test -n "$(man5dir)" || exit 0; \
+ files=`{ for i in $$list; do echo "$$i"; done; \
+ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
+ sed -n '/\.5[a-z]*$$/p'; \
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+ dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir)
+tags TAGS:
+
+ctags CTAGS:
+
+cscope cscopelist:
+
+
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ list='$(DISTFILES)'; \
+ dist_files=`for file in $$list; do echo $$file; done | \
+ sed -e "s|^$$srcdirstrip/||;t" \
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+ case $$dist_files in \
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+ sort -u` ;; \
+ esac; \
+ for file in $$dist_files; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ if test -d $$d/$$file; then \
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test -d "$(distdir)/$$file"; then \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ else \
+ test -f "$(distdir)/$$file" \
+ || cp -p $$d/$$file "$(distdir)/$$file" \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+check: check-am
+all-am: Makefile $(MANS)
+installdirs:
+ for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"; do \
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+ done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+ if test -z '$(STRIP)'; then \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ install; \
+ else \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+ fi
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+ -rm -f Makefile
+distclean-am: clean-am distclean-generic
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+html-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-man
+ @$(NORMAL_INSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) install-data-hook
+install-dvi: install-dvi-am
+
+install-dvi-am:
+
+install-exec-am:
+
+install-html: install-html-am
+
+install-html-am:
+
+install-info: install-info-am
+
+install-info-am:
+
+install-man: install-man1 install-man5
+
+install-pdf: install-pdf-am
+
+install-pdf-am:
+
+install-ps: install-ps-am
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-local uninstall-man
+
+uninstall-man: uninstall-man1 uninstall-man5
+
+.MAKE: install-am install-data-am install-strip
+
+.PHONY: all all-am check check-am clean clean-generic clean-libtool \
+ cscopelist-am ctags-am distclean distclean-generic \
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
+ install install-am install-data install-data-am \
+ install-data-hook install-dvi install-dvi-am install-exec \
+ install-exec-am install-html install-html-am install-info \
+ install-info-am install-man install-man1 install-man5 \
+ install-pdf install-pdf-am install-ps install-ps-am \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ tags-am uninstall uninstall-am uninstall-local uninstall-man \
+ uninstall-man1 uninstall-man5
+
+.PRECIOUS: Makefile
+
+
+install-data-hook:
+@ENABLE_GIMP_CONSOLE_TRUE@ cd $(DESTDIR)$(mandir)/man1; \
+@ENABLE_GIMP_CONSOLE_TRUE@ rm -f gimp-console-$(GIMP_APP_VERSION).1; \
+@ENABLE_GIMP_CONSOLE_TRUE@ ln -s gimp-$(GIMP_APP_VERSION).1 gimp-console-$(GIMP_APP_VERSION).1
+@DEFAULT_BINARY_TRUE@ @list='$(default_binary_mans)'; \
+@DEFAULT_BINARY_TRUE@ for i in $$list; do \
+@DEFAULT_BINARY_TRUE@ s=`echo $$i | sed -e 's/.*\\(.\\)$$/\1/'`; \
+@DEFAULT_BINARY_TRUE@ n=`echo $$i | sed -e 's/-[^-]*$$//'`; \
+@DEFAULT_BINARY_TRUE@ f="$$n.$$s"; \
+@DEFAULT_BINARY_TRUE@ echo "cd $(DESTDIR)$(mandir)/man$$s"; \
+@DEFAULT_BINARY_TRUE@ cd $(DESTDIR)$(mandir)/man$$s; \
+@DEFAULT_BINARY_TRUE@ echo "rm -f $$f"; \
+@DEFAULT_BINARY_TRUE@ rm -f $$f; \
+@DEFAULT_BINARY_TRUE@ echo "ln -s $$i $$f"; \
+@DEFAULT_BINARY_TRUE@ ln -s $$i $$f; \
+@DEFAULT_BINARY_TRUE@ done
+
+uninstall-local:
+@ENABLE_GIMP_CONSOLE_TRUE@ rm -f $(DESTDIR)$(mandir)/man1/gimp-console-$(GIMP_APP_VERSION).1
+@DEFAULT_BINARY_TRUE@ @list='$(default_binary_mans)'; \
+@DEFAULT_BINARY_TRUE@ for i in $$list; do \
+@DEFAULT_BINARY_TRUE@ s=`echo $$i | sed -e 's/.*\\(.\\)$$/\1/'`; \
+@DEFAULT_BINARY_TRUE@ n=`echo $$i | sed -e 's/-[^-]*$$//'`; \
+@DEFAULT_BINARY_TRUE@ f="$$n.$$s"; \
+@DEFAULT_BINARY_TRUE@ echo " rm -f $(DESTDIR)$(mandir)/man$$s/$$f"; \
+@DEFAULT_BINARY_TRUE@ rm -f $(DESTDIR)$(mandir)/man$$s/$$f; \
+@DEFAULT_BINARY_TRUE@ done
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/docs/Wilber.xcf.gz b/docs/Wilber.xcf.gz
new file mode 100644
index 0000000..f0c016e
--- /dev/null
+++ b/docs/Wilber.xcf.gz
Binary files differ
diff --git a/docs/Wilber.xcf.gz.README b/docs/Wilber.xcf.gz.README
new file mode 100644
index 0000000..deff669
--- /dev/null
+++ b/docs/Wilber.xcf.gz.README
@@ -0,0 +1,15 @@
+Wilber.xcf.gz.README
+-----------------------------------------------------------------------------
+
+This is Wilber, the Gimp Mascot.
+
+Gimp is a image manipulation program for unix computers, see
+https://www.gimp.org for more detais.
+
+The use of Wilber.xcf.gz is free, though it would be kind of you to mention
+the original author (Tuomas Kuosmanen <tigert@gimp.org>) somewhere.
+
+Enjoy.
+
+Tuomas / tigert
+
diff --git a/docs/Wilber_Construction_Kit.xcf.gz b/docs/Wilber_Construction_Kit.xcf.gz
new file mode 100644
index 0000000..84d8498
--- /dev/null
+++ b/docs/Wilber_Construction_Kit.xcf.gz
Binary files differ
diff --git a/docs/gimp.1.in b/docs/gimp.1.in
new file mode 100644
index 0000000..f7332ab
--- /dev/null
+++ b/docs/gimp.1.in
@@ -0,0 +1,357 @@
+.TH GIMP 1 "March 23 2008" "Version @GIMP_VERSION@" "GIMP Manual Pages"
+
+.SH NAME
+gimp - an image manipulation and paint program.
+
+
+.SH SYNOPSIS
+.B gimp
+[\-h] [\-\-help] [\-\-help-all] [\-\-help-gtk] [-v] [\-\-version]
+[\-\-license] [\-\-verbose] [\-n] [\-\-new\-instance] [\-a] [\-\-as\-new]
+[\-i] [\-\-no\-interface] [\-d] [\-\-no\-data] [\-f] [\-\-no\-fonts]
+[\-s] [\-\-no\-splash] [\-\-no\-shm] [\-\-no\-cpu\-accel]
+[\-\-display \fIdisplay\fP] [\-\-session \fI<name>\fP]
+[\-g] [\-\-gimprc \fI<gimprc>\fP] [\-\-system\-gimprc \fI<gimprc>\fP]
+[\-\-dump\-gimprc\fP] [\-\-console\-messages] [\-\-debug\-handlers]
+[\-\-stack\-trace\-mode \fI<mode>\fP] [\-\-pdb\-compat\-mode \fI<mode>\fP]
+[\-\-batch\-interpreter \fI<procedure>\fP] [\-b] [\-\-batch \fI<command>\fP]
+[\fIfilename\fP] ...
+
+
+.SH DESCRIPTION
+.PP
+GIMP is the \fIGNU Image Manipulation Program\fP. It is used to edit
+and manipulate images. It can load and save a variety of image formats
+and can be used to convert between formats.
+.PP
+GIMP can also be used as a paint program. It features a set of drawing
+and painting tools such as airbrush, clone, pencil, and paint
+brush. Painting and drawing tools can be applied to an image with a
+variety of paint modes. It also offers an extensive array of
+selection tools like rectangle, ellipse, fuzzy select, bezier select,
+intelligent scissors, and select by color.
+.PP
+GIMP offers a variety of plug-ins that perform a variety of image
+manipulations. Examples include bumpmap, edge detect, gaussian blur,
+and many others. In addition, GIMP has several scripting extensions
+which allow for advanced non-interactive processing and creation of
+images.
+.PP
+GIMP ships with a second binary called \fIgimp-console\fP. This binary
+is a console-only version and behaves as if \fIgimp\fP was called with
+the \-\-no\-interface command\-line option.
+.PP
+On platforms with the D-Bus message bus system, GIMP will by default check
+if an instance is already running in this user session. If it detects that,
+it will pass all filenames given on the command-line to the already running
+GIMP instance and quit.
+
+
+.SH OPTIONS
+GIMP accepts the following options:
+.TP 8
+.B \-h, \-\-help
+Show GIMP command\-line options.
+.TP 8
+.B \-\-help\-all
+Show all command\-line options.
+.TP 8
+.B \-\-help-gtk
+Show GTK+ command\-line options.
+.TP 8
+.B \-\-help-gegl
+Show GEGL command\-line options.
+.TP 8
+.B \-v, \-\-version
+Output version information and exit. When combined with the \-\-verbose
+option, version information about libraries used by GIMP is shown as well.
+.TP 8
+.B \-\-license
+Output license information and exit.
+.TP 8
+.B \-\-verbose
+Be verbose and create information on standard output.
+.TP 8
+.B \-n, \-\-new\-instance
+Do not attempt to reuse an already running GIMP instance. Always start a
+new one.
+.TP 8
+.B \-a, \-\-as\-new
+Open filenames passed on the command-line as new images, don't set the
+filename on them.
+.TP 8
+.B \-i, \-\-no\-interface
+Run without a user interface.
+.TP 8
+.B \-d, \-\-no\-data
+Do not load patterns, gradients, palettes, or brushes. Often useful
+in non-interactive situations where startup time is to be minimized.
+.TP 8
+.B \-f, \-\-no\-fonts
+Do not load any fonts. No text functionality will be available if this
+option is used.
+.TP 8
+.B \-\-display \fIdisplay\fP
+Use the designated X display.
+.TP 8
+.B \-s, \-\-no\-splash
+Do not show the splash screen.
+.TP 8
+.B \-\-no\-shm
+Do not use shared memory between GIMP and its plug-ins.
+Instead of using shared memory, GIMP will send the data via pipe. This
+will result in slower performance than using shared memory.
+.TP 8
+.B \-\-no\-cpu\-accel
+Do not use CPU accelerations such as MMX or SSE even if GIMP detects
+that your CPU provides this functionality.
+.TP 8
+.B \-\-session \fI<name>\fP
+Use a different sessionrc for this GIMP session. The given session
+name is appended to the default sessionrc filename.
+.TP 8
+.B \-g, \-\-gimprc \fI<gimprc>\fP
+Use an alternative gimprc instead of the default one. Useful in
+cases where plug-in paths or machine specs may be different.
+.TP 8
+.B \-\-system\-gimprc \fI<gimprc>\fP
+Use an alternate system gimprc file.
+.TP 8
+.B \-\-dump\-gimprc
+Output a gimprc file with default settings.
+.TP 8
+.B \-\-debug\-handlers
+Enable debugging signal handlers.
+.TP 8
+.B \-c, \-\-console\-messages
+Do not popup dialog boxes on errors or warnings. Print the messages on
+the console instead.
+.TP 8
+.B \-\-stack\-trace\-mode \fI{never|query|always}\fP
+If a stack-trace should be generated in case of fatal signals.
+.TP 8
+.B \-\-pdb\-compat\-mode \fI{off|on|warn}\fP
+If the PDB should provide aliases for deprecated functions.
+.TP 8
+.B \-\-batch-interpreter \fI<procedure>\fP
+Specifies the procedure to use to process batch events. The default is
+to let Script-Fu evaluate the commands.
+.TP 8
+.B \-b, \-\-batch \fI<command>\fP
+Execute \fI<command>\fP non-interactively. This option may appear
+multiple times. The \fI<command>\fP is passed to the batch
+interpreter. When \fI<command>\fP is \fB-\fP the commands are read
+from standard input.
+
+
+.SH ENVIRONMENT
+GIMP respects a number of environment variables.
+.PP
+.TP 8
+.B DISPLAY
+to get the default host and display number.
+.TP 8
+.B GIMP2_DIRECTORY
+to get the name of the personal GIMP directory. If unset @manpage_gimpdir@ is
+used. If this is an absolute path, it is used as is. If it is a
+relative path, it is taken to be a subdirectory of \fB$XDG_CONFIG_HOME\fP.
+.TP 8
+.B GIMP2_DATADIR
+to get the base location for data files such as brushes and patterns.
+If unset @gimpdatadir@ is used.
+.TP 8
+.B GIMP2_LOCALEDIR
+to get the base location for translations. If unset @gimplocaledir@
+is used.
+.TP 8
+.B GIMP2_PLUGINDIR
+to get the base location for plug-ins and modules. If unset
+@gimpplugindir@ is used.
+.TP 8
+.B GIMP2_SYSCONFDIR
+to get the location of configuration files. If unset @gimpsysconfdir@
+is used.
+.TP 8
+.B GIMP2_CACHEDIR
+to get the location for caches files. If unset the system default for
+per-user cached files is used.
+.TP 8
+.B GIMP2_TEMPDIR
+to get the location of temporary files. If unset the system default for
+temporary files is used.
+
+On Linux GIMP can be compiled with support for binary relocatibility.
+This will cause data, plug-ins and configuration files to be searched
+relative to the location of the gimp executable file unless overridden
+by the environment variables mentioned above.
+
+
+.SH FILES
+GIMP's data files are stored in @gimpdatadir@, where ${datarootdir}
+is set on install, but is typically /usr/share. GIMP's system-wide
+configuration files are stored in @gimpsysconfdir@, where ${prefix}
+is typically /usr.
+
+Most GIMP configuration is read in from the user's init file,
+@manpage_gimpdir@/gimprc. The system wide equivalent is in
+@gimpsysconfdir@/gimprc. The system wide file is parsed first and the
+user gimprc can override the system settings.
+@gimpsysconfdir@/gimprc_user is the default gimprc placed in users'
+home directories the first time GIMP is run.
+
+@manpage_gimpdir@/devicerc - holds settings for input devices together
+with the tool, colors, brush, pattern and gradient associated to that
+device.
+
+@manpage_gimpdir@/gtkrc - users set of GIMP-specific GTK+ config
+settings. Options such as widget color and fonts sizes can be set
+here.
+
+@gimpsysconfdir@/gtkrc - system wide default set of GIMP-specific GTK+
+config settings.
+
+@manpage_gimpdir@/menurc - user's set of keybindings.
+
+@manpage_gimpdir@/parasiterc - Stores all persistent GIMP
+parasites. This file will be rewritten every time you quit GIMP.
+
+@manpage_gimpdir@/sessionrc - This file takes session-specific info
+(that is info, you want to keep between two GIMP sessions). You are
+not supposed to edit it manually, but of course you can do. This file
+will be entirely rewritten every time you quit GIMP. If this file
+isn't found, defaults are used.
+
+@manpage_gimpdir@/templaterc - Image templates are kept in this
+file. New images can conveniently created from these templates. If
+this file isn't found, defaults are used.
+
+@gimpsysconfdir@/unitrc - default user unit database. It contains the
+unit definitions for centimeters, meters, feet, yards, typographic
+points and typographic picas and is placed in users home directories
+the first time GIMP is ran. If this file isn't found, defaults are
+used.
+
+@manpage_gimpdir@/unitrc - This file contains your user unit
+database. You can modify this list with the unit editor. You are not
+supposed to edit it manually, but of course you can do. This file
+will be entirely rewritten every time you quit GIMP.
+
+@manpage_gimpdir@/plug-ins - location of user installed plug-ins.
+
+@manpage_gimpdir@/pluginrc - plug-in initialization values are stored
+here. This file is parsed on startup and regenerated if need be.
+
+@manpage_gimpdir@/modules - location of user installed modules.
+
+@manpage_gimpdir@/tmp - default location that GIMP uses as temporary
+space.
+
+@gimpdatadir@/brushes - system wide brush files.
+
+@manpage_gimpdir@/brushes - user created and installed brush
+files. These files are in the .gbr, .gih or .vbr file formats.
+
+@manpage_gimpdir@/curves - Curve profiles and presets as saved from
+the Curves tool.
+
+@manpage_gimpdir@/gimpressionist - Presets and user created brushes
+and papers are stored here.
+
+@manpage_gimpdir@/levels - Level profiles and presets as saved from
+the Levels tool.
+
+@gimpdatadir@/palettes - the system wide palette files.
+
+@manpage_gimpdir@/palettes - user created and modified palette
+files. This files are in the .gpl format.
+
+@gimpdatadir@/patterns - basic set of patterns for use in GIMP.
+
+@manpage_gimpdir@/patterns - user created and installed gimp pattern
+files. This files are in the .pat format.
+
+@gimpdatadir@/gradients - standard system wide set of gradient files.
+
+@manpage_gimpdir@/gradients - user created and installed gradient
+files.
+
+@gimpdatadir@/scripts - system wide directory of scripts
+used in Script-Fu and other scripting extensions.
+
+@manpage_gimpdir@/scripts - user created and installed scripts.
+
+@gimpdatadir@/gflares - system wide directory used by the gflare
+plug-in.
+
+@manpage_gimpdir@/gflares - user created and installed gflare
+files.
+
+@gimpdatadir@/gfig - system wide directory used by the gfig plug-in.
+
+@manpage_gimpdir@/gfig - user created and installed gfig files.
+
+@gimpdatadir@/images/gimp\-splash.png - the default image used for the
+GIMP splash screen.
+
+@gimpdatadir@/images/gimp\-logo.png - image used in the GIMP about
+dialog.
+
+@gimpdatadir@/tips/gimp\-tips.xml - tips as displayed in the "Tip of
+the Day" dialog box.
+
+
+.SH SPLASH IMAGES
+GIMP comes with a default image for the splash screen but it allows
+system administrators and users to customize the splash screen by
+providing other images. The image to be used with the splash screen is
+chosen as follows:
+
+.IP 1.
+GIMP tries to load a random splash screen from the directory
+@manpage_gimpdir@/splashes.
+.IP 2.
+It then falls back to using @manpage_gimpdir@/gimp\-splash.png.
+.IP 3.
+If the user didn't install any custom splash images, a random image is
+picked from @gimpdatadir@/splashes.
+.IP 4.
+As a last resort, GIMP uses the default splash image located at
+@gimpdatadir@/images/gimp\-splash.png.
+
+
+.SH SUGGESTIONS AND BUG REPORTS
+Any bugs found should be reported to the online bug-tracking system
+available on the web at
+https://gitlab.gnome.org/GNOME/gimp/issues. Before reporting bugs,
+please check to see if the bug has already been reported.
+
+When reporting GIMP bugs, it is important to include a reliable way to
+reproduce the bug, version number of GIMP (and probably GTK+), OS name
+and version, and any relevant hardware specs. If a bug is causing a
+crash, it is very useful if a stack trace can be provided. And of
+course, patches to rectify the bug are even better.
+
+
+.SH OTHER INFO
+The canonical place to find GIMP info is at https://www.gimp.org/.
+Here you can find links to just about many other GIMP sites,
+tutorials, data sets, mailing list archives, and more.
+
+There is also a GIMP User Manual available at https://docs.gimp.org/
+that goes into much more detail about the interactive use of GIMP.
+
+The latest versions of GIMP and the GTK+ libs are always available at
+https://download.gimp.org/.
+
+
+.SH AUTHORS
+Spencer Kimball, Peter Mattis and the GIMP Development Team.
+
+With patches, fixes, plug-ins, extensions, scripts, translations,
+documentation and more from lots and lots of people all over the
+world.
+
+
+.SH "SEE ALSO"
+.BR gimprc (5),
+.BR gimptool (1),
diff --git a/docs/gimprc.5.in b/docs/gimprc.5.in
new file mode 100644
index 0000000..3b21a63
--- /dev/null
+++ b/docs/gimprc.5.in
@@ -0,0 +1,1493 @@
+.\" This man-page is auto-generated by gimp --dump-gimprc-manpage.
+
+.TH GIMPRC 5 "Version @GIMP_VERSION@" "GIMP Manual Pages"
+.SH NAME
+gimprc \- gimp configuration file
+.SH DESCRIPTION
+The
+.B gimprc
+file is a configuration file read by GIMP when it starts up. There
+are two of these: one system-wide one stored in
+@gimpsysconfdir@/gimprc and a per-user @manpage_gimpdir@/gimprc
+which may override system settings.
+
+Comments are introduced by a hash sign (#), and continue until the end
+of the line. Blank lines are ignored.
+
+The
+.B gimprc
+file associates values with properties. These properties may be set
+by lisp-like assignments of the form:
+.IP
+\f3(\f2property\-name\ value\f3)\f1
+.TP
+where:
+.TP 10
+.I property\-name
+is one of the property names described below.
+.TP
+.I value
+is the value the property is to be set to.
+.PP
+
+Either spaces or tabs may be used to separate the name from the value.
+.PP
+.SH PROPERTIES
+Valid properties and their default values are:
+
+.TP
+(temp-path "${gimp_temp_dir}")
+
+Sets the folder for temporary storage. Files will appear here during the
+course of running GIMP. Most files will disappear when GIMP exits, but some
+files are likely to remain, so it is best if this folder not be one that is
+shared by other users. This is a single folder.
+
+.TP
+(swap-path "${gimp_cache_dir}")
+
+Sets the swap file location. GIMP uses a tile based memory allocation scheme.
+The swap file is used to quickly and easily swap tiles out to disk and back
+in. Be aware that the swap file can easily get very large if GIMP is used with
+large images. Also, things can get horribly slow if the swap file is created
+on a folder that is mounted over NFS. For these reasons, it may be desirable
+to put your swap file in "/tmp". This is a single folder.
+
+.TP
+(swap-compression "fast")
+
+The compression method used for tile data stored in the swap file. This is a
+string value.
+
+.TP
+(num-processors 1)
+
+Sets how many threads GIMP should use for operations that support it. This is
+an integer value.
+
+.TP
+(tile-cache-size 2g)
+
+When the amount of pixel data exceeds this limit, GIMP will start to swap
+tiles to disk. This is a lot slower but it makes it possible to work on
+images that wouldn't fit into memory otherwise. If you have a lot of RAM, you
+may want to set this to a higher value. The integer size can contain a suffix
+of 'B', 'K', 'M' or 'G' which makes GIMP interpret the size as being specified
+in bytes, kilobytes, megabytes or gigabytes. If no suffix is specified the
+size defaults to being specified in kilobytes.
+
+.TP
+(use-opencl no)
+
+When enabled, uses OpenCL for some operations. Possible values are yes and
+no.
+
+.TP
+
+Specifies the language to use for the user interface. This is a string value.
+
+.TP
+(interpolation-type cubic)
+
+Sets the level of interpolation used for scaling and other transformations.
+Possible values are none, linear, cubic, nohalo and lohalo.
+
+.TP
+(default-threshold 15)
+
+Tools such as fuzzy-select and bucket fill find regions based on a seed-fill
+algorithm. The seed fill starts at the initially selected pixel and
+progresses in all directions until the difference of pixel intensity from the
+original is greater than a specified threshold. This value represents the
+default threshold. This is an integer value.
+
+.TP
+(plug-in-path "${gimp_dir}/plug-ins:${gimp_plug_in_dir}/plug-ins")
+
+Sets the plug-in search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(module-path "${gimp_dir}/modules:${gimp_plug_in_dir}/modules")
+
+Sets the module search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(interpreter-path "${gimp_dir}/interpreters:${gimp_plug_in_dir}/interpreters")
+
+Sets the interpreter search path. This is a colon-separated list of folders
+to search.
+
+.TP
+(environ-path "${gimp_dir}/environ:${gimp_plug_in_dir}/environ")
+
+Sets the environ search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(brush-path "${gimp_dir}/brushes:${gimp_data_dir}/brushes")
+
+Sets the brush search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(brush-path-writable "${gimp_dir}/brushes")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(dynamics-path "${gimp_dir}/dynamics:${gimp_data_dir}/dynamics")
+
+Sets the dynamics search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(dynamics-path-writable "${gimp_dir}/dynamics")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(mypaint-brush-path "@mypaint_brushes_dir@:~/.mypaint/brushes")
+
+Sets the brush search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(mypaint-brush-path-writable "~/.mypaint/brushes")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(pattern-path "${gimp_dir}/patterns:${gimp_data_dir}/patterns")
+
+Sets the pattern search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(pattern-path-writable "${gimp_dir}/patterns")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")
+
+Sets the palette search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(palette-path-writable "${gimp_dir}/palettes")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(gradient-path "${gimp_dir}/gradients:${gimp_data_dir}/gradients")
+
+Sets the gradient search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(gradient-path-writable "${gimp_dir}/gradients")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(tool-preset-path "${gimp_dir}/tool-presets:${gimp_data_dir}/tool-presets")
+
+Sets the dynamics search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(tool-preset-path-writable "${gimp_dir}/tool-presets")
+
+This is a colon-separated list of folders to search.
+
+.TP
+(font-path "${gimp_dir}/fonts:${gimp_data_dir}/fonts")
+
+Where to look for fonts in addition to the system-wide installed fonts. This
+is a colon-separated list of folders to search.
+
+.TP
+(default-brush "2. Hardness 050")
+
+Specify a default brush. The brush is searched for in the specified brush
+path. This is a string value.
+
+.TP
+(default-dynamics "Dynamics Off")
+
+Specify a default dynamics. The dynamics is searched for in the specified
+dynamics path. This is a string value.
+
+.TP
+(default-mypaint-brush "Fixme")
+
+Specify a default MyPaint brush. This is a string value.
+
+.TP
+(default-pattern "Pine")
+
+Specify a default pattern. This is a string value.
+
+.TP
+(default-palette "Default")
+
+Specify a default palette. This is a string value.
+
+.TP
+(default-gradient "FG to BG (RGB)")
+
+Specify a default gradient. This is a string value.
+
+.TP
+(default-tool-preset "Current Options")
+
+Specify a default tool preset. The tool preset is searched for in the
+specified tool prests path. This is a string value.
+
+.TP
+(default-font "Sans-serif")
+
+Specify a default font. This is a string value.
+
+.TP
+(global-brush yes)
+
+When enabled, the selected brush will be used for all tools. Possible values
+are yes and no.
+
+.TP
+(global-dynamics yes)
+
+When enabled, the selected dynamics will be used for all tools. Possible
+values are yes and no.
+
+.TP
+(global-pattern yes)
+
+When enabled, the selected pattern will be used for all tools. Possible
+values are yes and no.
+
+.TP
+(global-palette yes)
+
+When enabled, the selected palette will be used for all tools. Possible
+values are yes and no.
+
+.TP
+(global-gradient yes)
+
+When enabled, the selected gradient will be used for all tools. Possible
+values are yes and no.
+
+.TP
+(global-font yes)
+
+When enabled, the selected font will be used for all tools. Possible values
+are yes and no.
+
+.TP
+(default-image
+ (width 1920)
+ (height 1080)
+ (unit pixels)
+ (xresolution 300)
+ (yresolution 300)
+ (resolution-unit inches)
+ (image-type rgb)
+ (precision u8-gamma)
+ (color-managed yes)
+ (color-profile NULL)
+ (fill-type background)
+ (comment "Created with GIMP"))
+
+Sets the default image in the "File/New" dialog. This is a parameter list.
+
+.TP
+(default-grid
+ (style solid)
+ (fgcolor (color-rgba 0 0 0 1))
+ (bgcolor (color-rgba 1 1 1 1))
+ (xspacing 10)
+ (yspacing 10)
+ (spacing-unit inches)
+ (xoffset 0)
+ (yoffset 0)
+ (offset-unit inches))
+
+Specify a default image grid. This is a parameter list.
+
+.TP
+(undo-levels 5)
+
+Sets the minimal number of operations that can be undone. More undo levels are
+kept available until the undo-size limit is reached. This is an integer
+value.
+
+.TP
+(undo-size 1g)
+
+Sets an upper limit to the memory that is used per image to keep operations on
+the undo stack. Regardless of this setting, at least as many undo-levels as
+configured can be undone. The integer size can contain a suffix of 'B', 'K',
+\&'M' or 'G' which makes GIMP interpret the size as being specified in bytes,
+kilobytes, megabytes or gigabytes. If no suffix is specified the size defaults
+to being specified in kilobytes.
+
+.TP
+(undo-preview-size large)
+
+Sets the size of the previews in the Undo History. Possible values are tiny,
+extra-small, small, medium, large, extra-large, huge, enormous and gigantic.
+
+.TP
+(plug-in-history-size 10)
+
+How many recently used filters and plug-ins to keep on the Filters menu. This
+is an integer value.
+
+.TP
+(pluginrc-path "${gimp_dir}/pluginrc")
+
+Sets the pluginrc search path. This is a single filename.
+
+.TP
+(layer-previews yes)
+
+Sets whether GIMP should create previews of layers and channels. Previews in
+the layers and channels dialog are nice to have but they can slow things down
+when working with large images. Possible values are yes and no.
+
+.TP
+(group-layer-previews yes)
+
+Sets whether GIMP should create previews of layer groups. Layer group previews
+are more expensive than ordinary layer previews. Possible values are yes and
+no.
+
+.TP
+(layer-preview-size medium)
+
+Sets the preview size used for layers and channel previews in newly created
+dialogs. Possible values are tiny, extra-small, small, medium, large,
+extra-large, huge, enormous and gigantic.
+
+.TP
+(thumbnail-size normal)
+
+Sets the size of the thumbnail shown in the Open dialog. Possible values are
+none, normal and large.
+
+.TP
+(thumbnail-filesize-limit 4M)
+
+The thumbnail in the Open dialog will be automatically updated if the file
+being previewed is smaller than the size set here. The integer size can
+contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the size
+as being specified in bytes, kilobytes, megabytes or gigabytes. If no suffix
+is specified the size defaults to being specified in kilobytes.
+
+.TP
+(color-management
+ (mode display)
+ (display-profile-from-gdk no)
+ (display-rendering-intent relative-colorimetric)
+ (display-use-black-point-compensation yes)
+ (display-optimize yes)
+ (simulation-rendering-intent perceptual)
+ (simulation-use-black-point-compensation no)
+ (simulation-optimize yes)
+ (simulation-gamut-check no)
+ (out-of-gamut-color (color-rgb 1 0 1))
+ (show-rgb-u8 no)
+ (show-hsv no)
+ (display-module "CdisplayLcms"))
+
+Defines the color management behavior. This is a parameter list.
+
+.TP
+(save-document-history yes)
+
+Keep a permanent record of all opened and saved files in the Recent Documents
+list. Possible values are yes and no.
+
+.TP
+(quick-mask-color (color-rgba 1 0 0 0.5))
+
+Sets the default quick mask color. The color is specified in the form
+(color-rgba red green blue alpha) with channel values as floats in the range
+of 0.0 to 1.0.
+
+.TP
+(import-promote-float no)
+
+Promote imported images to floating point precision. Does not apply to indexed
+images. Possible values are yes and no.
+
+.TP
+(import-promote-dither yes)
+
+When promoting imported images to floating point precision, also add minimal
+noise in order to distribute color values a bit. Possible values are yes and
+no.
+
+.TP
+(import-add-alpha no)
+
+Add an alpha channel to all layers of imported images. Possible values are
+yes and no.
+
+.TP
+(import-raw-plug-in "")
+
+Which plug-in to use for importing raw digital camera files. This is a single
+filename.
+
+.TP
+(export-file-type png)
+
+Export file type used by default. Possible values are png, jpg, ora, psd,
+pdf, tif, bmp and webp.
+
+.TP
+(export-color-profile yes)
+
+Export the image's color profile by default. Possible values are yes and no.
+
+.TP
+(export-metadata-exif yes)
+
+Export Exif metadata by default. Possible values are yes and no.
+
+.TP
+(export-metadata-xmp yes)
+
+Export XMP metadata by default. Possible values are yes and no.
+
+.TP
+(export-metadata-iptc yes)
+
+Export IPTC metadata by default. Possible values are yes and no.
+
+.TP
+(debug-policy fatal)
+
+Try generating debug data for bug reporting when appropriate. Possible values
+are warning, critical, fatal and never.
+
+.TP
+(check-updates yes)
+
+Check for availability of GIMP updates through background internet queries.
+Possible values are yes and no.
+
+.TP
+(check-update-timestamp 0)
+
+Timestamp of the last update check. (null)
+
+.TP
+(last-release-timestamp 0)
+
+The timestamp for the last known release date. (null)
+
+.TP
+
+The last known release version of GIMP as queried from official website. This
+is a string value.
+
+.TP
+(last-revision 0)
+
+The timestamp for the last known release date. This is an integer value.
+
+.TP
+
+The last known release version of GIMP as queried from official website. This
+is a string value.
+
+.TP
+(transparency-size medium-checks)
+
+Sets the size of the checkerboard used to display transparency. Possible
+values are small-checks, medium-checks and large-checks.
+
+.TP
+(transparency-type gray-checks)
+
+Sets the manner in which transparency is displayed in images. Possible values
+are light-checks, gray-checks, dark-checks, white-only, gray-only and
+black-only.
+
+.TP
+(snap-distance 8)
+
+This is the distance in pixels where Guide and Grid snapping activates. This
+is an integer value.
+
+.TP
+(marching-ants-speed 200)
+
+Speed of marching ants in the selection outline. This value is in
+milliseconds (less time indicates faster marching). This is an integer value.
+
+.TP
+(resize-windows-on-zoom no)
+
+When enabled, the image window will automatically resize itself when zooming
+into and out of images. This setting only takes effect in multi-window mode.
+Possible values are yes and no.
+
+.TP
+(resize-windows-on-resize no)
+
+When enabled, the image window will automatically resize itself whenever the
+physical image size changes. This setting only takes effect in multi-window
+mode. Possible values are yes and no.
+
+.TP
+(default-show-all no)
+
+Show full image content by default. Possible values are yes and no.
+
+.TP
+(default-dot-for-dot yes)
+
+When enabled, this will ensure that each pixel of an image gets mapped to a
+pixel on the screen. Possible values are yes and no.
+
+.TP
+(initial-zoom-to-fit yes)
+
+When enabled, this will ensure that the full image is visible after a file is
+opened, otherwise it will be displayed with a scale of 1:1. Possible values
+are yes and no.
+
+.TP
+(cursor-mode tool-crosshair)
+
+Sets the type of mouse pointers to use. Possible values are tool-icon,
+tool-crosshair and crosshair.
+
+.TP
+(cursor-updating yes)
+
+Context-dependent mouse pointers are helpful. They are enabled by default.
+However, they require overhead that you may want to do without. Possible
+values are yes and no.
+
+.TP
+(show-brush-outline yes)
+
+When enabled, all paint tools will show a preview of the current brush's
+outline. Possible values are yes and no.
+
+.TP
+(snap-brush-outline no)
+
+When enabled, the brush outline will snap to individual dabs while painting.
+Possible values are yes and no.
+
+.TP
+(show-paint-tool-cursor yes)
+
+When enabled, the mouse pointer will be shown over the image while using a
+paint tool. Possible values are yes and no.
+
+.TP
+(image-title-format "%D*%f-%p.%i (%t, %o, %L) %wx%h")
+
+Sets the text to appear in image window titles. This is a format string;
+certain % character sequences are recognised and expanded as follows:
+.br
+
+.br
+%% literal percent sign
+.br
+%f bare filename, or "Untitled"
+.br
+%F full path to file, or "Untitled"
+.br
+%p PDB image id
+.br
+%i view instance number
+.br
+%t image type (RGB, grayscale, indexed)
+.br
+%z zoom factor as a percentage
+.br
+%s source scale factor
+.br
+%d destination scale factor
+.br
+%Dx expands to x if the image is dirty, the empty string otherwise
+.br
+%Cx expands to x if the image is clean, the empty string otherwise
+.br
+%B expands to (modified) if the image is dirty, the empty string otherwise
+.br
+%A expands to (clean) if the image is clean, the empty string otherwise
+.br
+%Nx expands to x if the image is export-dirty, the empty string otherwise
+.br
+%Ex expands to x if the image is export-clean, the empty string otherwise
+.br
+%l the number of layers
+.br
+%L the number of layers (long form)
+.br
+%m memory used by the image
+.br
+%n the name of the active layer/channel
+.br
+%P the PDB id of the active layer/channel
+.br
+%w image width in pixels
+.br
+%W image width in real-world units
+.br
+%h image height in pixels
+.br
+%H image height in real-world units
+.br
+%M the image size expressed in megapixels
+.br
+%u unit symbol
+.br
+%U unit abbreviation
+.br
+%x the width of the active layer/channel in pixels
+.br
+%X the width of the active layer/channel in real-world units
+.br
+%y the height of the active layer/channel in pixels
+.br
+%Y the height of the active layer/channel in real-world units
+.br
+%o the name of the image's color profile
+.br
+
+.br
+
+.TP
+(image-status-format "%n (%m)")
+
+Sets the text to appear in image window status bars. This is a format string;
+certain % character sequences are recognised and expanded as follows:
+.br
+
+.br
+%% literal percent sign
+.br
+%f bare filename, or "Untitled"
+.br
+%F full path to file, or "Untitled"
+.br
+%p PDB image id
+.br
+%i view instance number
+.br
+%t image type (RGB, grayscale, indexed)
+.br
+%z zoom factor as a percentage
+.br
+%s source scale factor
+.br
+%d destination scale factor
+.br
+%Dx expands to x if the image is dirty, the empty string otherwise
+.br
+%Cx expands to x if the image is clean, the empty string otherwise
+.br
+%B expands to (modified) if the image is dirty, the empty string otherwise
+.br
+%A expands to (clean) if the image is clean, the empty string otherwise
+.br
+%Nx expands to x if the image is export-dirty, the empty string otherwise
+.br
+%Ex expands to x if the image is export-clean, the empty string otherwise
+.br
+%l the number of layers
+.br
+%L the number of layers (long form)
+.br
+%m memory used by the image
+.br
+%n the name of the active layer/channel
+.br
+%P the PDB id of the active layer/channel
+.br
+%w image width in pixels
+.br
+%W image width in real-world units
+.br
+%h image height in pixels
+.br
+%H image height in real-world units
+.br
+%M the image size expressed in megapixels
+.br
+%u unit symbol
+.br
+%U unit abbreviation
+.br
+%x the width of the active layer/channel in pixels
+.br
+%X the width of the active layer/channel in real-world units
+.br
+%y the height of the active layer/channel in pixels
+.br
+%Y the height of the active layer/channel in real-world units
+.br
+%o the name of the image's color profile
+.br
+
+.br
+
+.TP
+(monitor-xresolution 96)
+
+Sets the monitor's horizontal resolution, in dots per inch. If set to 0,
+forces the X server to be queried for both horizontal and vertical resolution
+information. This is a float value.
+
+.TP
+(monitor-yresolution 96)
+
+Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces
+the X server to be queried for both horizontal and vertical resolution
+information. This is a float value.
+
+.TP
+(monitor-resolution-from-windowing-system yes)
+
+When enabled, GIMP will use the monitor resolution from the windowing system.
+Possible values are yes and no.
+
+.TP
+(navigation-preview-size medium)
+
+Sets the size of the navigation preview available in the lower right corner of
+the image window. Possible values are tiny, extra-small, small, medium,
+large, extra-large, huge, enormous and gigantic.
+
+.TP
+(default-view
+ (show-menubar yes)
+ (show-statusbar yes)
+ (show-rulers yes)
+ (show-scrollbars yes)
+ (show-selection yes)
+ (show-layer-boundary yes)
+ (show-canvas-boundary yes)
+ (show-guides yes)
+ (show-grid no)
+ (show-sample-points yes)
+ (snap-to-guides yes)
+ (snap-to-grid no)
+ (snap-to-canvas no)
+ (snap-to-path no)
+ (padding-mode default)
+ (padding-color (color-rgb 1 1 1))
+ (padding-in-show-all no))
+
+Sets the default settings for the image view. This is a parameter list.
+
+.TP
+(default-fullscreen-view
+ (show-menubar yes)
+ (show-statusbar yes)
+ (show-rulers yes)
+ (show-scrollbars yes)
+ (show-selection yes)
+ (show-layer-boundary yes)
+ (show-canvas-boundary yes)
+ (show-guides yes)
+ (show-grid no)
+ (show-sample-points yes)
+ (snap-to-guides yes)
+ (snap-to-grid no)
+ (snap-to-canvas no)
+ (snap-to-path no)
+ (padding-mode default)
+ (padding-color (color-rgb 1 1 1))
+ (padding-in-show-all no))
+
+Sets the default settings used when an image is viewed in fullscreen mode.
+This is a parameter list.
+
+.TP
+(activate-on-focus yes)
+
+When enabled, an image will become the active image when its image window
+receives the focus. This is useful for window managers using "click to focus".
+ Possible values are yes and no.
+
+.TP
+(space-bar-action pan)
+
+What to do when the space bar is pressed in the image window. Possible values
+are none, pan and move.
+
+.TP
+(zoom-quality high)
+
+There's a tradeoff between speed and quality of the zoomed-out display.
+Possible values are low and high.
+
+.TP
+(use-event-history no)
+
+Bugs in event history buffer are frequent so in case of cursor offset problems
+turning it off helps. Possible values are yes and no.
+
+.TP
+(edit-non-visible no)
+
+When enabled, non-visible layers can be edited as normal. Possible values are
+yes and no.
+
+.TP
+(move-tool-changes-active no)
+
+If enabled, the move tool sets the edited layer or path as active. This used
+to be the default behaviour in older versions. Possible values are yes and
+no.
+
+.TP
+(filter-tool-max-recent 10)
+
+How many recent settings to keep around in filter tools. This is an integer
+value.
+
+.TP
+(filter-tool-use-last-settings no)
+
+Default to the last used settings in filter tools. Possible values are yes
+and no.
+
+.TP
+(filter-tool-show-color-options no)
+
+Show advanced color options in filter tools. Possible values are yes and no.
+
+.TP
+(trust-dirty-flag no)
+
+When enabled, GIMP will not save an image if it has not been changed since it
+was opened. Possible values are yes and no.
+
+.TP
+(save-device-status yes)
+
+Remember the current tool, pattern, color, and brush across GIMP sessions.
+Possible values are yes and no.
+
+.TP
+(devices-share-tool no)
+
+When enabled, the same tool and tool options will be used for all input
+devices. No tool switching will occur when the input device changes. Possible
+values are yes and no.
+
+.TP
+(save-session-info yes)
+
+Save the positions and sizes of the main dialogs when GIMP exits. Possible
+values are yes and no.
+
+.TP
+(restore-session yes)
+
+Let GIMP try to restore your last saved session on each startup. Possible
+values are yes and no.
+
+.TP
+(restore-monitor no)
+
+When enabled, GIMP will try to restore windows on the monitor they were open
+before. When disabled, windows will appear on the currently used monitor.
+Possible values are yes and no.
+
+.TP
+(save-tool-options yes)
+
+Save the tool options when GIMP exits. Possible values are yes and no.
+
+.TP
+(compact-sliders yes)
+
+Use compact style for sliders. Possible values are yes and no.
+
+.TP
+(show-tooltips yes)
+
+Show a tooltip when the pointer hovers over an item. Possible values are yes
+and no.
+
+.TP
+(tearoff-menus yes)
+
+When enabled, menus can be torn off. Possible values are yes and no.
+
+.TP
+(can-change-accels no)
+
+When enabled, you can change keyboard shortcuts for menu items by hitting a
+key combination while the menu item is highlighted. Possible values are yes
+and no.
+
+.TP
+(save-accels yes)
+
+Save changed keyboard shortcuts when GIMP exits. Possible values are yes and
+no.
+
+.TP
+(restore-accels yes)
+
+Restore saved keyboard shortcuts on each GIMP startup. Possible values are
+yes and no.
+
+.TP
+(last-opened-size 10)
+
+How many recently opened image filenames to keep on the File menu. This is an
+integer value.
+
+.TP
+(max-new-image-size 128M)
+
+GIMP will warn the user if an attempt is made to create an image that would
+take more memory than the size specified here. The integer size can contain a
+suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the size as being
+specified in bytes, kilobytes, megabytes or gigabytes. If no suffix is
+specified the size defaults to being specified in kilobytes.
+
+.TP
+(toolbox-color-area yes)
+
+Show the current foreground and background colors in the toolbox. Possible
+values are yes and no.
+
+.TP
+(toolbox-foo-area no)
+
+Show the currently selected brush, pattern and gradient in the toolbox.
+Possible values are yes and no.
+
+.TP
+(toolbox-image-area no)
+
+Show the currently active image in the toolbox. Possible values are yes and
+no.
+
+.TP
+(toolbox-wilber yes)
+
+Show the GIMP mascot at the top of the toolbox. Possible values are yes and
+no.
+
+.TP
+(toolbox-groups yes)
+
+Use a single toolbox button for grouped tools. Possible values are yes and
+no.
+
+.TP
+(toolbox-group-menu-mode hover-single-column)
+
+Menu mode of grouped tools. Possible values are click, hover and
+hover-single-column.
+
+.TP
+(theme-path "${gimp_dir}/themes:${gimp_data_dir}/themes")
+
+Sets the theme search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(theme "Dark")
+
+The name of the theme to use. This is a string value.
+
+.TP
+(icon-theme-path "${gimp_dir}/icons:${gimp_data_dir}/icons")
+
+Sets the icon theme search path. This is a colon-separated list of folders to
+search.
+
+.TP
+(icon-theme "Symbolic")
+
+The name of the icon theme to use. This is a string value.
+
+.TP
+(icon-size auto)
+
+The size of the icons to use. Possible values are auto, theme, small, medium,
+large and huge.
+
+.TP
+(use-help yes)
+
+When enabled, pressing F1 will open the help browser. Possible values are yes
+and no.
+
+.TP
+(show-help-button yes)
+
+When enabled, dialogs will show a help button that gives access to the related
+help page. Without this button, the help page can still be reached by
+pressing F1. Possible values are yes and no.
+
+.TP
+(help-locales "")
+
+Specifies the language preferences used by the help system. This is a
+colon-separated list of language identifiers with decreasing priority. If
+empty, the language is taken from the user's locale setting. This is a string
+value.
+
+.TP
+(help-browser web-browser)
+
+Sets the browser used by the help system. Possible values are gimp and
+web-browser.
+
+.TP
+(search-show-unavailable-actions no)
+
+When enabled, a search of actions will also return inactive actions. Possible
+values are yes and no.
+
+.TP
+(action-history-size 100)
+
+The maximum number of actions saved in history. This is an integer value.
+
+.TP
+(user-manual-online no)
+
+When enabled, the online user manual will be used by the help system.
+Otherwise the locally installed copy is used. Possible values are yes and no.
+
+.TP
+(user-manual-online-uri "https://docs.gimp.org/2.10")
+
+The location of the online user manual. This is used if 'user-manual-online'
+is enabled. This is a string value.
+
+.TP
+(dock-window-hint utility)
+
+The window type hint that is set on dock windows and the toolbox window. This
+may affect the way your window manager decorates and handles these windows.
+Possible values are normal, utility and keep-above.
+
+.TP
+(cursor-handedness right)
+
+Sets the handedness for cursor positioning. Possible values are left and
+right.
+
+.TP
+(playground-npd-tool no)
+
+Enable the N-Point Deformation tool. Possible values are yes and no.
+
+.TP
+(playground-seamless-clone-tool no)
+
+Enable the Seamless Clone tool. Possible values are yes and no.
+
+.TP
+(color-profile-policy ask)
+
+How to handle embedded color profiles when opening a file. Possible values
+are ask, keep and convert.
+
+.TP
+
+Sets the default folder path for all color profile file dialogs. This is a
+single filename.
+
+.TP
+(image-convert-profile-intent relative-colorimetric)
+
+Sets the default rendering intent for the 'Convert to Color Profile' dialog.
+Possible values are perceptual, relative-colorimetric, saturation and
+absolute-colorimetric.
+
+.TP
+(image-convert-profile-black-point-compensation yes)
+
+Sets the default 'Black Point Compensation' state for the 'Convert to Color
+Profile' dialog. Possible values are yes and no.
+
+.TP
+(image-convert-precision-layer-dither-method none)
+
+Sets the default layer dithering method for the 'Convert Precision' dialog.
+Possible values are none, floyd-steinberg, bayer, random, random-covariant,
+add, add-covariant, xor, xor-covariant, blue-noise and blue-noise-covariant.
+
+.TP
+(image-convert-precision-text-layer-dither-method none)
+
+Sets the default text layer dithering method for the 'Convert Precision'
+dialog. Possible values are none, floyd-steinberg, bayer, random,
+random-covariant, add, add-covariant, xor, xor-covariant, blue-noise and
+blue-noise-covariant.
+
+.TP
+(image-convert-precision-channel-dither-method none)
+
+Sets the default channel dithering method for the 'Convert Precision' dialog.
+Possible values are none, floyd-steinberg, bayer, random, random-covariant,
+add, add-covariant, xor, xor-covariant, blue-noise and blue-noise-covariant.
+
+.TP
+(image-convert-indexed-palette-type generate)
+
+Sets the default palette type for the 'Convert to Indexed' dialog. Possible
+values are generate, web, mono and custom.
+
+.TP
+(image-convert-indexed-max-colors 256)
+
+Sets the default maximum number of colors for the 'Convert to Indexed' dialog.
+ This is an integer value.
+
+.TP
+(image-convert-indexed-remove-duplicates yes)
+
+Sets the default 'Remove duplicate colors' state for the 'Convert to Indexed'
+dialog. Possible values are yes and no.
+
+.TP
+(image-convert-indexed-dither-type none)
+
+Sets the default dithering type for the 'Convert to Indexed' dialog. Possible
+values are none, fs, fs-lowbleed and fixed.
+
+.TP
+(image-convert-indexed-dither-alpha no)
+
+Sets the default 'Dither alpha' state for the 'Convert to Indexed' dialog.
+Possible values are yes and no.
+
+.TP
+(image-convert-indexed-dither-text-layers no)
+
+Sets the default 'Dither text layers' state for the 'Convert to Indexed'
+dialog. Possible values are yes and no.
+
+.TP
+(image-resize-fill-type transparent)
+
+Sets the default fill type for the 'Canvas Size' dialog. Possible values are
+foreground, background, white, transparent and pattern.
+
+.TP
+(image-resize-layer-set none)
+
+Sets the default set of layers to resize for the 'Canvas Size' dialog.
+Possible values are none, all, image-sized, visible and linked.
+
+.TP
+(image-resize-resize-text-layers no)
+
+Sets the default 'Resize text layers' state for the 'Canvas Size' dialog.
+Possible values are yes and no.
+
+.TP
+(layer-new-name "Layer")
+
+Sets the default layer name for the 'New Layer' dialog. This is a string
+value.
+
+.TP
+(layer-new-mode normal)
+
+Sets the default mode for the 'New Layer' dialog. Possible values are
+normal-legacy, dissolve, behind-legacy, multiply-legacy, screen-legacy,
+overlay-legacy, difference-legacy, addition-legacy, subtract-legacy,
+darken-only-legacy, lighten-only-legacy, hsv-hue-legacy,
+hsv-saturation-legacy, hsl-color-legacy, hsv-value-legacy, divide-legacy,
+dodge-legacy, burn-legacy, hardlight-legacy, softlight-legacy,
+grain-extract-legacy, grain-merge-legacy, color-erase-legacy, overlay,
+lch-hue, lch-chroma, lch-color, lch-lightness, normal, behind, multiply,
+screen, difference, addition, subtract, darken-only, lighten-only, hsv-hue,
+hsv-saturation, hsl-color, hsv-value, divide, dodge, burn, hardlight,
+softlight, grain-extract, grain-merge, vivid-light, pin-light, linear-light,
+hard-mix, exclusion, linear-burn, luma-darken-only, luma-lighten-only,
+luminance, color-erase, erase, merge, split, pass-through, replace and
+anti-erase.
+
+.TP
+(layer-new-blend-space auto)
+
+Sets the default blend space for the 'New Layer' dialog. Possible values are
+auto, rgb-linear, rgb-perceptual and lab.
+
+.TP
+(layer-new-composite-space auto)
+
+Sets the default composite space for the 'New Layer' dialog. Possible values
+are auto, rgb-linear, rgb-perceptual and lab.
+
+.TP
+(layer-new-composite-mode auto)
+
+Sets the default composite mode for the 'New Layer' dialog. Possible values
+are auto, union, clip-to-backdrop, clip-to-layer and intersection.
+
+.TP
+(layer-new-opacity 1)
+
+Sets the default opacity for the 'New Layer' dialog. This is a float value.
+
+.TP
+(layer-new-fill-type transparent)
+
+Sets the default fill type for the 'New Layer' dialog. Possible values are
+foreground, background, white, transparent and pattern.
+
+.TP
+(layer-resize-fill-type transparent)
+
+Sets the default fill type for the 'Layer Boundary Size' dialog. Possible
+values are foreground, background, white, transparent and pattern.
+
+.TP
+(layer-add-mask-type white)
+
+Sets the default mask for the 'Add Layer Mask' dialog. Possible values are
+white, black, alpha, alpha-transfer, selection, copy and channel.
+
+.TP
+(layer-add-mask-invert no)
+
+Sets the default 'invert mask' state for the 'Add Layer Mask' dialog.
+Possible values are yes and no.
+
+.TP
+(layer-merge-type expand-as-necessary)
+
+Sets the default merge type for the 'Merge Visible Layers' dialog. Possible
+values are expand-as-necessary, clip-to-image, clip-to-bottom-layer and
+flatten-image.
+
+.TP
+(layer-merge-active-group-only yes)
+
+Sets the default 'Active group only' for the 'Merge Visible Layers' dialog.
+Possible values are yes and no.
+
+.TP
+(layer-merge-discard-invisible no)
+
+Sets the default 'Discard invisible' for the 'Merge Visible Layers' dialog.
+Possible values are yes and no.
+
+.TP
+(channel-new-name "Channel")
+
+Sets the default channel name for the 'New Channel' dialog. This is a string
+value.
+
+.TP
+(channel-new-color (color-rgba 0 0 0 0.5))
+
+Sets the default color and opacity for the 'New Channel' dialog. The color is
+specified in the form (color-rgba red green blue alpha) with channel values as
+floats in the range of 0.0 to 1.0.
+
+.TP
+(path-new-name "Path")
+
+Sets the default path name for the 'New Path' dialog. This is a string value.
+
+.TP
+
+Sets the default folder path for the 'Export Path' dialog. This is a single
+filename.
+
+.TP
+(path-export-active-only yes)
+
+Sets the default 'Export the active path' state for the 'Export Path' dialog.
+Possible values are yes and no.
+
+.TP
+
+Sets the default folder path for the 'Import Path' dialog. This is a single
+filename.
+
+.TP
+(path-import-merge no)
+
+Sets the default 'Merge imported paths' state for the 'Import Path' dialog.
+Possible values are yes and no.
+
+.TP
+(path-import-scale no)
+
+Sets the default 'Scale imported paths to fit size' state for the 'Import
+Path' dialog. Possible values are yes and no.
+
+.TP
+(selection-feather-radius 5)
+
+Sets the default feather radius for the 'Feather Selection' dialog. This is a
+float value.
+
+.TP
+(selection-feather-edge-lock yes)
+
+Sets the default 'Selected areas continue outside the image' setting for the
+\&'Feather Selection' dialog. Possible values are yes and no.
+
+.TP
+(selection-grow-radius 1)
+
+Sets the default grow radius for the 'Grow Selection' dialog. This is a float
+value.
+
+.TP
+(selection-shrink-radius 1)
+
+Sets the default shrink radius for the 'Shrink Selection' dialog. This is a
+float value.
+
+.TP
+(selection-shrink-edge-lock no)
+
+Sets the default 'Selected areas continue outside the image' setting for the
+\&'Shrink Selection' dialog. Possible values are yes and no.
+
+.TP
+(selection-border-radius 5)
+
+Sets the default border radius for the 'Border Selection' dialog. This is a
+float value.
+
+.TP
+(selection-border-style smooth)
+
+Sets the default border style for the 'Border Selection' dialog. Possible
+values are hard, smooth and feathered.
+
+.TP
+(selection-border-edge-lock no)
+
+Sets the default 'Selected areas continue outside the image' setting for the
+\&'Border Selection' dialog. Possible values are yes and no.
+
+.TP
+(fill-options
+ (style solid)
+ (antialias yes)
+ (feather no)
+ (feather-radius 10))
+
+The default fill options for the fill dialogs. This is a parameter list.
+
+.TP
+(stroke-options
+ (style solid)
+ (antialias yes)
+ (feather no)
+ (feather-radius 10)
+ (method line)
+ (width 6)
+ (unit pixels)
+ (cap-style butt)
+ (join-style miter)
+ (miter-limit 10)
+ (dash-offset 0)
+ (dash-info 0)
+ (emulate-brush-dynamics no))
+
+The default stroke options for the stroke dialogs. This is a parameter list.
+
+.TP
+(fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer")
+
+Where to search for fractals used by the Fractal Explorer plug-in. This is a
+colon-separated list of folders to search.
+
+.TP
+(gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig")
+
+Where to search for Gfig figures used by the Gfig plug-in. This is a
+colon-separated list of folders to search.
+
+.TP
+(gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare")
+
+Where to search for gflares used by the GFlare plug-in. This is a
+colon-separated list of folders to search.
+
+.TP
+(gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist")
+
+Where to search for data used by the Gimpressionist plug-in. This is a
+colon-separated list of folders to search.
+
+.TP
+(script-fu-path "${gimp_dir}/scripts:${gimp_data_dir}/scripts")
+
+This path will be searched for scripts when the Script-Fu plug-in is run.
+This is a colon-separated list of folders to search.
+
+.PP
+.SH PATH EXPANSION
+Strings of type PATH are expanded in a manner similar to
+.BR bash (1).
+Specifically: tilde (~) is expanded to the user's home directory. Note that
+the bash feature of being able to refer to other user's home directories
+by writing ~userid/ is not valid in this file.
+
+${variable} is expanded to the current value of an environment variable.
+There are a few variables that are pre-defined:
+.TP
+.I gimp_dir
+The personal gimp directory which is set to the value of the environment
+variable GIMP2_DIRECTORY or to @manpage_gimpdir@.
+.TP
+.I gimp_data_dir
+Base for paths to shareable data, which is set to the value of the
+environment variable GIMP2_DATADIR or to the compiled-in default value
+@gimpdatadir@.
+.TP
+.I gimp_plug_in_dir
+Base to paths for architecture-specific plug-ins and modules, which is set
+to the value of the environment variable GIMP2_PLUGINDIR or to the
+compiled-in default value @gimpplugindir@.
+.TP
+.I gimp_sysconf_dir
+Path to configuration files, which is set to the value of the environment
+variable GIMP2_SYSCONFDIR or to the compiled-in default value
+@gimpsysconfdir@.
+.TP
+.I gimp_cache_dir
+Path to cached files, which is set to the value of the environment
+variable GIMP2_CACHEDIR or to the system default for per-user cached files.
+.TP
+.I gimp_temp_dir
+Path to temporary files, which is set to the value of the environment
+variable GIMP2_TEMPDIR or to the system default for temporary files.
+
+.SH FILES
+.TP
+.I @gimpsysconfdir@/gimprc
+System-wide configuration file
+.TP
+.I @manpage_gimpdir@/gimprc
+Per-user configuration file
+
+.SH "SEE ALSO"
+.BR gimp (1)
diff --git a/docs/gimptool.1.in b/docs/gimptool.1.in
new file mode 100644
index 0000000..2fca41d
--- /dev/null
+++ b/docs/gimptool.1.in
@@ -0,0 +1,235 @@
+.TH GIMPTOOL\-2.0 1 "Version @GIMP_VERSION@" "GIMP Manual Pages"
+
+.SH NAME
+gimptool\-2.0 - script to perform various GIMPy functions
+
+
+.SH SYNOPSIS
+.B gimptool\-2.0
+[\-\-prefix\fI[=DIR]\fP] [\-\-exec\-prefix\fI[=DIR]\fP] [\-\-version]
+[\-\-help] [\-\-quiet] [\-\-silent] [\-n] [\-\-just-print] [\-\-dry-run]
+[\-\-recon] [\-\-msvc-syntax]
+[\-\-bindir] [\-\-sbindir] [\-\-libexecdir] [\-\-datadir]
+[\-\-sysconfdir] [\-\-sharedstatedir] [\-\-localstatedir] [-\-libdir]
+[\-\-infodir] [\-\-mandir] [\-\-includedir] [\-\-gimpplugindir]
+[\-\-gimpdatadir] [\-\-libs] [\-\-libs-noui] [\-\-cflags] [\-\-cflags-noi]
+[\-\-build \fIplug\-in.c\fP]
+[\-\-build\-strip \fIplug\-in.c\fP] [\-\-install \fIplug\-in.c\fP]
+[\-\-install-strip \fIplug\-in.c\fP] [\-\-install-admin \fIplug-in.c\fP]
+[\-\-install\-bin \fIplug\-in\fP]
+[\-\-install\-admin\-strip \fIplug-in.c\fP]
+[\-\-install\-bin\-strip \fIplug\-in\fP]
+[\-\-\install\-admin\-bin \fIplug\-in\fP]
+[\-\-install\-script \fIscript.scm\fP]
+[\-\-\install\-admin\-script \fIscript.scm\fP]
+[\-\-uninstall\-bin \fIplug\-in\fP] [\-\-uninstall\-admin\-bin \fIplug\-in\fP]
+[\-\-uninstall\-script \fIscript.scm\fP]
+[\-\-uninstall\-admin\-script \fIscript.scm\fP]
+
+
+.SH DESCRIPTION
+.PP
+\fIgimptool\-2.0\fP is a tool that can, among other things, build
+plug-ins or scripts and install them if they are distributed in one
+source file.
+.PP
+\fIgimptool\-2.0\fP can also be used by programs that need to know what
+libraries and include-paths \fIGIMP\fP was compiled with. \fIgimptool\-2.0\fP
+uses \fIpkg-config\fP for this task. For use in Makefiles, it is recommended
+that you use \fIpkg-config\fP directly instead of calling \fIgimptool\-2.0\fP.
+
+
+.SH OPTIONS
+\fIgimptool\-2.0\fP accepts the following options:
+.TP 8
+.B \-\-version
+Print the currently installed version of \fIGIMP\fP on the standard output.
+.TP 8
+.B \-\-help
+Print out the help blurb, showing commonly used commandline options.
+.TP 8
+.B \-\-quiet
+Run quietly without echoing any of the build commands.
+.TP 8
+.B \-\-silent
+Run silently without echoing any of the build commands. Same as \-\-quiet.
+.TP 8
+.B \-n
+Test mode. Print the commands but don't actually execute them. Useful for
+making dry runs for testing.
+.TP 8
+.B \-\-just-print
+Test mode. Print the commands but don't actually execute them. Same as \-n.
+.TP 8
+.B \-\-dry-run
+Test mode. Print the commands but don't actually execute them. Same as \-n.
+.TP 8
+.B \-\-recon
+Test mode. Print the commands but don't actually execute them. Same as \-n.
+.TP 8
+.B \-\-msvc-syntax
+Useful on Windows. Outputs the compiler and linker flags in the syntax
+used by Microsoft's toolchain. Passed to the pkg-config command that
+does most of \fIgimptool\-2.0\fP's work.
+.TP 8
+.B \-\-bindir
+Outputs the bindir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-sbindir
+Outputs the sbindir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-libexecdir
+Outputs the libexecdir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-datadir
+Outputs the datadir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-sysconfdir
+Outputs the sysconfdir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-sharedstatedir
+Outputs the sharedstatedir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-localstatedir
+Outputs the localstatedir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-libdir
+Outputs the libdir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-infodir
+Outputs the infodir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-mandir
+Outputs the mandir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-includedir
+Outputs the includedir used to install the \fIGIMP\fP.
+.TP 8
+.B \-\-gimpdatadir
+Outputs the actual directory where the \fIGIMP\fP data files were installed.
+.TP 8
+.B \-\-gimpplugindir
+Outputs the actual directory where the \fIGIMP\fP plug-ins were installed.
+.TP 8
+.B \-\-build \fIplug-in.c\fP
+Compile and link \fIplug-in.c\fP into a \fIGIMP\fP plug-in.
+.TP 8
+.B \-\-build\-strip \fIplug-in.c\fP
+Compile,link, and strip \fIplug-in.c\fP into a \fIGIMP\fP plug-in.
+.TP 8
+.B \-\-install \fIplug-in.c\fP
+Compile, link, and install \fIplug-in.c\fP into the user's personal
+\fIGIMP\fP plug-in directory (@manpage_gimpdir@/plug-ins)
+.TP 8
+.B \-\-install\-strip \fIplug-in.c\fP
+Compile, link,strip, and install \fIplug-in.c\fP into the user's
+personal \fIGIMP\fP
+plug-in directory (@manpage_gimpdir@/plug-ins)
+.TP 8
+.B \-\-install\-admin \fIplug-in.c\fP
+Compile, link, and install \fIplug-in.c\fP into the system-wide \fIGIMP\fP
+plug-in directory (@gimpplugindir@/plug-ins)
+.TP 8
+.B \-\-install\-bin \fIplug-in\fP
+Install \fIplug-in\fP into the user's personal \fIGIMP\fP
+plug-in directory (@manpage_gimpdir@/plug-ins)
+.TP 8
+.B \-\-install\-admin\-bin \fIplug-in\fP
+Install \fIplug-in\fP into the system-wide \fIGIMP\fP
+plug-in directory (@gimpplugindir@/plug-ins)
+.TP 8
+.B \-\-install\-bin\-strip \fIplug-in\fP
+Install stripped \fIplug-in\fP into the user's personal \fIGIMP\fP
+plug-in directory (@manpage_gimpdir@/plug-ins)
+.TP 8
+.B \-\-install\-admin\-bin\-strip \fIplug-in\fP
+Install stripped \fIplug-in\fP into the system-wide \fIGIMP\fP
+plug-in directory (@gimpplugindir@/plug-ins)
+.TP 8
+.B \-\-install\-script \fIscript.scm\fP
+Install \fIscript.scm\fP into the user's personal \fIGIMP\fP
+script directory (@manpage_gimpdir@/scripts)
+.TP 8
+.B \-\-install\-admin\-script \fIscript.scm\fP
+Install \fIscript.scm\fP into the system-wide \fIGIMP\fP
+script directory (@gimpdatadir@/scripts)
+.TP 8
+.B \-\-uninstall\-bin \fIplug-in\fP
+Uninstall \fIplug-in\fP from the user's personal \fIGIMP\fP
+plug-in directory (@manpage_gimpdir@/plug-ins)
+.TP 8
+.B \-\-uninstall\-admin\-bin \fIplug-in\fP
+Uninstall \fIplug-in\fP from the system-wide \fIGIMP\fP
+plug-in directory (@gimpplugindir@/plug-ins)
+.TP 8
+.B \-\-uninstall\-script \fIscript.scm\fP
+Uninstall \fIscript.scm\fP from the user's personal \fIGIMP\fP
+script directory (@manpage_gimpdir@/scripts)
+.TP 8
+.B \-\-uninstall\-admin\-script \fIscript.scm\fP
+Uninstall \fIscript.scm\fP from the system-wide \fIGIMP\fP
+script directory (@gimpdatadir@/scripts)
+.TP 8
+.B \-\-libs
+Print the linker flags that are necessary to link a \fIGIMP\fP plug-in.
+.TP 8
+.B \-\-libs-noui
+Print the linker flags that are necessary to link a \fIGIMP\fP plug-in, for
+plug-ins that do not require the GTK+ libraries.
+.TP 8
+.B \-\-cflags
+Print the compiler flags that are necessary to compile a \fIGIMP\fP plug-in.
+.TP 8
+.B \-\-clags-noui
+Print the compiler flags that are necessary to compile a \fIGIMP\fP plug-in
+for plug-ins that do not require the GTK+ libraries.
+.TP 8
+.B \-\-prefix=PREFIX
+If specified, use PREFIX instead of the installation prefix that \fIGIMP\fP
+was built with when computing the output for the \-\-cflags and
+\-\-libs options. This option is also used for the exec prefix
+if \-\-exec\-prefix was not specified. This option must be specified
+before any \-\-libs or \-\-cflags options.
+.TP 8
+.B \-\-exec\-prefix=PREFIX
+If specified, use PREFIX instead of the installation exec prefix that
+\fIGIMP\fP was built with when computing the output for the \-\-cflags
+and \-\-libs options. This option must be specified before any
+\-\-libs or \-\-cflags options.
+
+
+.SH ENVIRONMENT
+.PP
+.TP 8
+.B CC
+to get the name of the desired C compiler.
+.TP 8
+.B CFLAGS
+to get the preferred flags to pass to the C compiler for plug-in building.
+.TP 8
+.B LDFLAGS
+to get the preferred flags for passing to the linker.
+.TP 8
+.B LIBS
+for passing extra libs that may be needed in the build process. For example,
+LIBS=-lintl .
+.TP 8
+.B PKG_CONFIG
+to get the location of the \fIpkg-config\fP program that is used to determine
+details about your glib, pango, gtk+ and gimp installation.
+
+
+.SH SEE ALSO
+.BR gimp (1),
+.BR gimprc (5),
+.BR pkg\-config (1)
+
+
+.SH AUTHORS
+gimptool was written by Manish Singh (yosh@gimp.org) and is based on
+gtk\-config by Owen Taylor (owen@gtk.org).
+
+This man page was written by Ben Gertzfield (che@debian.org), and tweaked
+by Manish Singh (yosh@gimp.org), Adrian Likins (adrian@gimp.org) and Marc
+Lehmann (pcg@goof.com>).
+