From 5c1676dfe6d2f3c837a5e074117b45613fd29a72 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:30:19 +0200 Subject: Adding upstream version 2.10.34. Signed-off-by: Daniel Baumann --- desktop/16x16/gimp.png | Bin 0 -> 1006 bytes desktop/22x22/gimp.png | Bin 0 -> 1266 bytes desktop/24x24/gimp.png | Bin 0 -> 1419 bytes desktop/256x256/gimp.png | Bin 0 -> 33688 bytes desktop/32x32/gimp.png | Bin 0 -> 1941 bytes desktop/48x48/gimp.png | Bin 0 -> 3376 bytes desktop/64x64/gimp.png | Bin 0 -> 4422 bytes desktop/Makefile.am | 89 ++ desktop/Makefile.in | 1403 +++++++++++++++++++++++++++ desktop/gimp-data-extras.metainfo.xml.in | 13 + desktop/gimp-data-extras.metainfo.xml.in.in | 13 + desktop/gimp.desktop.in.in | 15 + desktop/org.gimp.GIMP.appdata.xml.in | 749 ++++++++++++++ desktop/org.gimp.GIMP.appdata.xml.in.in | 749 ++++++++++++++ desktop/test-appdata.sh.in | 15 + desktop/test-desktop.sh | 3 + 16 files changed, 3049 insertions(+) create mode 100644 desktop/16x16/gimp.png create mode 100644 desktop/22x22/gimp.png create mode 100644 desktop/24x24/gimp.png create mode 100644 desktop/256x256/gimp.png create mode 100644 desktop/32x32/gimp.png create mode 100644 desktop/48x48/gimp.png create mode 100644 desktop/64x64/gimp.png create mode 100644 desktop/Makefile.am create mode 100644 desktop/Makefile.in create mode 100644 desktop/gimp-data-extras.metainfo.xml.in create mode 100644 desktop/gimp-data-extras.metainfo.xml.in.in create mode 100644 desktop/gimp.desktop.in.in create mode 100644 desktop/org.gimp.GIMP.appdata.xml.in create mode 100644 desktop/org.gimp.GIMP.appdata.xml.in.in create mode 100755 desktop/test-appdata.sh.in create mode 100755 desktop/test-desktop.sh (limited to 'desktop') diff --git a/desktop/16x16/gimp.png b/desktop/16x16/gimp.png new file mode 100644 index 0000000..2c1935f Binary files /dev/null and b/desktop/16x16/gimp.png differ diff --git a/desktop/22x22/gimp.png b/desktop/22x22/gimp.png new file mode 100644 index 0000000..ab209ec Binary files /dev/null and b/desktop/22x22/gimp.png differ diff --git a/desktop/24x24/gimp.png b/desktop/24x24/gimp.png new file mode 100644 index 0000000..f507187 Binary files /dev/null and b/desktop/24x24/gimp.png differ diff --git a/desktop/256x256/gimp.png b/desktop/256x256/gimp.png new file mode 100644 index 0000000..416df18 Binary files /dev/null and b/desktop/256x256/gimp.png differ diff --git a/desktop/32x32/gimp.png b/desktop/32x32/gimp.png new file mode 100644 index 0000000..5680f7c Binary files /dev/null and b/desktop/32x32/gimp.png differ diff --git a/desktop/48x48/gimp.png b/desktop/48x48/gimp.png new file mode 100644 index 0000000..f6895f6 Binary files /dev/null and b/desktop/48x48/gimp.png differ diff --git a/desktop/64x64/gimp.png b/desktop/64x64/gimp.png new file mode 100644 index 0000000..d74b4b8 Binary files /dev/null and b/desktop/64x64/gimp.png differ diff --git a/desktop/Makefile.am b/desktop/Makefile.am new file mode 100644 index 0000000..520dcfe --- /dev/null +++ b/desktop/Makefile.am @@ -0,0 +1,89 @@ +## Makefile.am for gimp/desktop + +desktop_in_files = \ + gimp.desktop.in.in + +desktop_files = $(desktop_in_files:.desktop.in.in=.desktop) + +appstream_in_files = \ + org.gimp.GIMP.appdata.xml.in \ + gimp-data-extras.metainfo.xml.in + +appstream_files = $(appstream_in_files:.xml.in=.xml) + +if DESKTOP_DATADIR + +applicationsdir = $(DESKTOP_DATADIR)/applications +applications_DATA = $(desktop_files) + +appdatadir = $(DESKTOP_DATADIR)/metainfo +appdata_DATA = $(appstream_files) + +icons16dir = $(DESKTOP_DATADIR)/icons/hicolor/16x16/apps +icons16_DATA = 16x16/gimp.png + +icons22dir = $(DESKTOP_DATADIR)/icons/hicolor/22x22/apps +icons22_DATA = 22x22/gimp.png + +icons24dir = $(DESKTOP_DATADIR)/icons/hicolor/24x24/apps +icons24_DATA = 24x24/gimp.png + +icons32dir = $(DESKTOP_DATADIR)/icons/hicolor/32x32/apps +icons32_DATA = 32x32/gimp.png + +icons48dir = $(DESKTOP_DATADIR)/icons/hicolor/48x48/apps +icons48_DATA = 48x48/gimp.png + +icons256dir = $(DESKTOP_DATADIR)/icons/hicolor/256x256/apps +icons256_DATA = 256x256/gimp.png + + +# touch the toplevel icon directory as required by the icon theme spec +install-data-hook: + touch $(DESTDIR)$(DESKTOP_DATADIR)/icons/hicolor + +endif + +EXTRA_DIST = \ + $(appstream_in_files) \ + test-appdata.sh.in \ + test-desktop.sh \ + gimp.desktop.in.in \ + 16x16/gimp.png \ + 22x22/gimp.png \ + 24x24/gimp.png \ + 32x32/gimp.png \ + 48x48/gimp.png \ + 64x64/gimp.png \ + 256x256/gimp.png + + +DISTCLEANFILES = $(desktop_files) $(appstream_files) + +@INTLTOOL_XML_RULE@ + +gimp.desktop: gimp.desktop.in $(wildcard $(top_srcdir)/po/*.po) + $(INTLTOOL_MERGE) $(top_srcdir)/po $< $(@) -d -u -c $(top_builddir)/po/.intltool-merge-cache + +validate: gimp.desktop + ( dfvalidate=`which desktop-file-validate`; \ + if test x$$dfvalidate != x && test -x $$dfvalidate; then \ + $$dfvalidate $< || ( echo "* $< INVALID *"; exit 1 ) \ + else \ + echo "Can't find desktop-file-validate to validate $<; proceed with fingers crossed..."; \ + fi ) + +dist-hook: validate + +TESTS_ENVIRONMENT = \ + chmod +x test-appdata.sh; \ + GIMP_TESTING_ABS_TOP_BUILDDIR=@abs_top_builddir@ +TESTS = + +if HAVE_APPSTREAM_UTIL +TESTS += test-appdata.sh +endif + +if HAVE_DESKTOP_FILE_VALIDATE +TESTS += test-desktop.sh +endif diff --git a/desktop/Makefile.in b/desktop/Makefile.in new file mode 100644 index 0000000..8c1abe3 --- /dev/null +++ b/desktop/Makefile.in @@ -0,0 +1,1403 @@ +# 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@ +@HAVE_APPSTREAM_UTIL_TRUE@am__append_1 = test-appdata.sh +@HAVE_DESKTOP_FILE_VALIDATE_TRUE@am__append_2 = test-desktop.sh +subdir = desktop +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-data-extras.metainfo.xml.in gimp.desktop.in \ + org.gimp.GIMP.appdata.xml.in test-appdata.sh +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; }; \ + } +am__installdirs = "$(DESTDIR)$(appdatadir)" \ + "$(DESTDIR)$(applicationsdir)" "$(DESTDIR)$(icons16dir)" \ + "$(DESTDIR)$(icons22dir)" "$(DESTDIR)$(icons24dir)" \ + "$(DESTDIR)$(icons256dir)" "$(DESTDIR)$(icons32dir)" \ + "$(DESTDIR)$(icons48dir)" +DATA = $(appdata_DATA) $(applications_DATA) $(icons16_DATA) \ + $(icons22_DATA) $(icons24_DATA) $(icons256_DATA) \ + $(icons32_DATA) $(icons48_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)' +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +TEST_EXTENSIONS = @EXEEXT@ .test +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) +TEST_LOGS = $(am__test_logs2:.test.log=.log) +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ + $(TEST_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(srcdir)/gimp-data-extras.metainfo.xml.in.in \ + $(srcdir)/gimp.desktop.in.in \ + $(srcdir)/org.gimp.GIMP.appdata.xml.in.in \ + $(srcdir)/test-appdata.sh.in $(top_srcdir)/test-driver +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@ +desktop_in_files = \ + gimp.desktop.in.in + +desktop_files = $(desktop_in_files:.desktop.in.in=.desktop) +appstream_in_files = \ + org.gimp.GIMP.appdata.xml.in \ + gimp-data-extras.metainfo.xml.in + +appstream_files = $(appstream_in_files:.xml.in=.xml) +@DESKTOP_DATADIR_TRUE@applicationsdir = $(DESKTOP_DATADIR)/applications +@DESKTOP_DATADIR_TRUE@applications_DATA = $(desktop_files) +@DESKTOP_DATADIR_TRUE@appdatadir = $(DESKTOP_DATADIR)/metainfo +@DESKTOP_DATADIR_TRUE@appdata_DATA = $(appstream_files) +@DESKTOP_DATADIR_TRUE@icons16dir = $(DESKTOP_DATADIR)/icons/hicolor/16x16/apps +@DESKTOP_DATADIR_TRUE@icons16_DATA = 16x16/gimp.png +@DESKTOP_DATADIR_TRUE@icons22dir = $(DESKTOP_DATADIR)/icons/hicolor/22x22/apps +@DESKTOP_DATADIR_TRUE@icons22_DATA = 22x22/gimp.png +@DESKTOP_DATADIR_TRUE@icons24dir = $(DESKTOP_DATADIR)/icons/hicolor/24x24/apps +@DESKTOP_DATADIR_TRUE@icons24_DATA = 24x24/gimp.png +@DESKTOP_DATADIR_TRUE@icons32dir = $(DESKTOP_DATADIR)/icons/hicolor/32x32/apps +@DESKTOP_DATADIR_TRUE@icons32_DATA = 32x32/gimp.png +@DESKTOP_DATADIR_TRUE@icons48dir = $(DESKTOP_DATADIR)/icons/hicolor/48x48/apps +@DESKTOP_DATADIR_TRUE@icons48_DATA = 48x48/gimp.png +@DESKTOP_DATADIR_TRUE@icons256dir = $(DESKTOP_DATADIR)/icons/hicolor/256x256/apps +@DESKTOP_DATADIR_TRUE@icons256_DATA = 256x256/gimp.png +EXTRA_DIST = \ + $(appstream_in_files) \ + test-appdata.sh.in \ + test-desktop.sh \ + gimp.desktop.in.in \ + 16x16/gimp.png \ + 22x22/gimp.png \ + 24x24/gimp.png \ + 32x32/gimp.png \ + 48x48/gimp.png \ + 64x64/gimp.png \ + 256x256/gimp.png + +DISTCLEANFILES = $(desktop_files) $(appstream_files) +TESTS_ENVIRONMENT = \ + chmod +x test-appdata.sh; \ + GIMP_TESTING_ABS_TOP_BUILDDIR=@abs_top_builddir@ + +TESTS = $(am__append_1) $(am__append_2) +all: all-am + +.SUFFIXES: +.SUFFIXES: .log .test .test$(EXEEXT) .trs +$(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 desktop/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu desktop/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-data-extras.metainfo.xml.in: $(top_builddir)/config.status $(srcdir)/gimp-data-extras.metainfo.xml.in.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +gimp.desktop.in: $(top_builddir)/config.status $(srcdir)/gimp.desktop.in.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +org.gimp.GIMP.appdata.xml.in: $(top_builddir)/config.status $(srcdir)/org.gimp.GIMP.appdata.xml.in.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +test-appdata.sh: $(top_builddir)/config.status $(srcdir)/test-appdata.sh.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-appdataDATA: $(appdata_DATA) + @$(NORMAL_INSTALL) + @list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \ + done + +uninstall-appdataDATA: + @$(NORMAL_UNINSTALL) + @list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir) +install-applicationsDATA: $(applications_DATA) + @$(NORMAL_INSTALL) + @list='$(applications_DATA)'; test -n "$(applicationsdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(applicationsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(applicationsdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(applicationsdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(applicationsdir)" || exit $$?; \ + done + +uninstall-applicationsDATA: + @$(NORMAL_UNINSTALL) + @list='$(applications_DATA)'; test -n "$(applicationsdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(applicationsdir)'; $(am__uninstall_files_from_dir) +install-icons16DATA: $(icons16_DATA) + @$(NORMAL_INSTALL) + @list='$(icons16_DATA)'; test -n "$(icons16dir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icons16dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icons16dir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icons16dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icons16dir)" || exit $$?; \ + done + +uninstall-icons16DATA: + @$(NORMAL_UNINSTALL) + @list='$(icons16_DATA)'; test -n "$(icons16dir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icons16dir)'; $(am__uninstall_files_from_dir) +install-icons22DATA: $(icons22_DATA) + @$(NORMAL_INSTALL) + @list='$(icons22_DATA)'; test -n "$(icons22dir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icons22dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icons22dir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icons22dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icons22dir)" || exit $$?; \ + done + +uninstall-icons22DATA: + @$(NORMAL_UNINSTALL) + @list='$(icons22_DATA)'; test -n "$(icons22dir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icons22dir)'; $(am__uninstall_files_from_dir) +install-icons24DATA: $(icons24_DATA) + @$(NORMAL_INSTALL) + @list='$(icons24_DATA)'; test -n "$(icons24dir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icons24dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icons24dir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icons24dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icons24dir)" || exit $$?; \ + done + +uninstall-icons24DATA: + @$(NORMAL_UNINSTALL) + @list='$(icons24_DATA)'; test -n "$(icons24dir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icons24dir)'; $(am__uninstall_files_from_dir) +install-icons256DATA: $(icons256_DATA) + @$(NORMAL_INSTALL) + @list='$(icons256_DATA)'; test -n "$(icons256dir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icons256dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icons256dir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icons256dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icons256dir)" || exit $$?; \ + done + +uninstall-icons256DATA: + @$(NORMAL_UNINSTALL) + @list='$(icons256_DATA)'; test -n "$(icons256dir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icons256dir)'; $(am__uninstall_files_from_dir) +install-icons32DATA: $(icons32_DATA) + @$(NORMAL_INSTALL) + @list='$(icons32_DATA)'; test -n "$(icons32dir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icons32dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icons32dir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icons32dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icons32dir)" || exit $$?; \ + done + +uninstall-icons32DATA: + @$(NORMAL_UNINSTALL) + @list='$(icons32_DATA)'; test -n "$(icons32dir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icons32dir)'; $(am__uninstall_files_from_dir) +install-icons48DATA: $(icons48_DATA) + @$(NORMAL_INSTALL) + @list='$(icons48_DATA)'; test -n "$(icons48dir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icons48dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icons48dir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icons48dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icons48dir)" || exit $$?; \ + done + +uninstall-icons48DATA: + @$(NORMAL_UNINSTALL) + @list='$(icons48_DATA)'; test -n "$(icons48dir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icons48dir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 + +check-TESTS: + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ + exit $$?; +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +test-appdata.sh.log: test-appdata.sh + @p='test-appdata.sh'; \ + b='test-appdata.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +test-desktop.sh.log: test-desktop.sh + @p='test-desktop.sh'; \ + b='test-desktop.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.test.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +@am__EXEEXT_TRUE@.test$(EXEEXT).log: +@am__EXEEXT_TRUE@ @p='$<'; \ +@am__EXEEXT_TRUE@ $(am__set_b); \ +@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ +@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ +@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ +@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) + +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 + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(applicationsdir)" "$(DESTDIR)$(icons16dir)" "$(DESTDIR)$(icons22dir)" "$(DESTDIR)$(icons24dir)" "$(DESTDIR)$(icons256dir)" "$(DESTDIR)$(icons32dir)" "$(DESTDIR)$(icons48dir)"; 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: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +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) + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +@DESKTOP_DATADIR_FALSE@install-data-hook: +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-appdataDATA install-applicationsDATA \ + install-icons16DATA install-icons22DATA install-icons24DATA \ + install-icons256DATA install-icons32DATA install-icons48DATA + @$(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-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-appdataDATA uninstall-applicationsDATA \ + uninstall-icons16DATA uninstall-icons22DATA \ + uninstall-icons24DATA uninstall-icons256DATA \ + uninstall-icons32DATA uninstall-icons48DATA + +.MAKE: check-am install-am install-data-am install-strip + +.PHONY: all all-am check check-TESTS check-am clean clean-generic \ + clean-libtool cscopelist-am ctags-am dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-appdataDATA \ + install-applicationsDATA install-data install-data-am \ + install-data-hook install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am \ + install-icons16DATA install-icons22DATA install-icons24DATA \ + install-icons256DATA install-icons32DATA install-icons48DATA \ + install-info install-info-am install-man 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 recheck tags-am \ + uninstall uninstall-am uninstall-appdataDATA \ + uninstall-applicationsDATA uninstall-icons16DATA \ + uninstall-icons22DATA uninstall-icons24DATA \ + uninstall-icons256DATA uninstall-icons32DATA \ + uninstall-icons48DATA + +.PRECIOUS: Makefile + + +# touch the toplevel icon directory as required by the icon theme spec +@DESKTOP_DATADIR_TRUE@install-data-hook: +@DESKTOP_DATADIR_TRUE@ touch $(DESTDIR)$(DESKTOP_DATADIR)/icons/hicolor + +@INTLTOOL_XML_RULE@ + +gimp.desktop: gimp.desktop.in $(wildcard $(top_srcdir)/po/*.po) + $(INTLTOOL_MERGE) $(top_srcdir)/po $< $(@) -d -u -c $(top_builddir)/po/.intltool-merge-cache + +validate: gimp.desktop + ( dfvalidate=`which desktop-file-validate`; \ + if test x$$dfvalidate != x && test -x $$dfvalidate; then \ + $$dfvalidate $< || ( echo "* $< INVALID *"; exit 1 ) \ + else \ + echo "Can't find desktop-file-validate to validate $<; proceed with fingers crossed..."; \ + fi ) + +dist-hook: validate + +# 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/desktop/gimp-data-extras.metainfo.xml.in b/desktop/gimp-data-extras.metainfo.xml.in new file mode 100644 index 0000000..6093bf5 --- /dev/null +++ b/desktop/gimp-data-extras.metainfo.xml.in @@ -0,0 +1,13 @@ + + + + gimp-data-extras + org.gimp.GIMP + <_name>Extra files for GIMP + <_summary>Patterns, gradients, and other extra files for GIMP + https://www.gimp.org/ + https://gitlab.gnome.org/GNOME/gimp/issues/new + CC0-1.0 + GPL-3.0+ + alexandre.prokoudine@gmail.com + diff --git a/desktop/gimp-data-extras.metainfo.xml.in.in b/desktop/gimp-data-extras.metainfo.xml.in.in new file mode 100644 index 0000000..ec5427e --- /dev/null +++ b/desktop/gimp-data-extras.metainfo.xml.in.in @@ -0,0 +1,13 @@ + + + + gimp-data-extras + org.gimp.GIMP + <_name>Extra files for GIMP + <_summary>Patterns, gradients, and other extra files for GIMP + https://www.gimp.org/ + @BUG_REPORT_URL@ + CC0-1.0 + GPL-3.0+ + alexandre.prokoudine@gmail.com + diff --git a/desktop/gimp.desktop.in.in b/desktop/gimp.desktop.in.in new file mode 100644 index 0000000..c0a98e9 --- /dev/null +++ b/desktop/gimp.desktop.in.in @@ -0,0 +1,15 @@ +[Desktop Entry] +Version=1.0 +Type=Application +_Name=GNU Image Manipulation Program +_GenericName=Image Editor +_Comment=Create images and edit photographs +# Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +_Keywords=GIMP;graphic;design;illustration;painting; +Exec=@GIMP_COMMAND@ %U +TryExec=gimp-@GIMP_APP_VERSION@ +Icon=gimp +Terminal=false +Categories=Graphics;2DGraphics;RasterGraphics;GTK; +StartupNotify=true +MimeType=@MIME_TYPES@ diff --git a/desktop/org.gimp.GIMP.appdata.xml.in b/desktop/org.gimp.GIMP.appdata.xml.in new file mode 100644 index 0000000..af0dcbd --- /dev/null +++ b/desktop/org.gimp.GIMP.appdata.xml.in @@ -0,0 +1,749 @@ + + + + org.gimp.GIMP + + + CC0-1.0 + GPL-3.0+ AND LGPL-3.0+ + The GIMP team + <_name>GNU Image Manipulation Program + <_summary>Create images and edit photographs + + <_p> + GIMP is an acronym for GNU Image Manipulation Program. It is a + freely distributed program for such tasks as photo retouching, + image composition and image authoring. + + <_p> + It has many capabilities. It can be used as a simple paint + program, an expert quality photo retouching program, an online + batch processing system, a mass production image renderer, an + image format converter, etc. + + <_p> + GIMP is expandable and extensible. It is designed to be + augmented with plug-ins and extensions to do just about + anything. The advanced scripting interface allows everything + from the simplest task to the most complex image manipulation + procedures to be easily scripted. GIMP is available for Linux, + Microsoft Windows and OS X. + + + https://gitlab.gnome.org/GNOME/gimp/issues/new + https://www.gimp.org/donating/ + https://www.gimp.org/docs/ + https://www.gimp.org/ + + + https://www.gimp.org/screenshots/Screenshot-gimp-2.10-painting.jpg + <_caption>Painting in GIMP + + + https://www.gimp.org/screenshots/Screenshot-gimp-2.10-photo-editing.jpg + <_caption>Photo editing in GIMP + + + gimp-developer-list_at_gnome.org + + GIMP + Photoshop + + + HiDpiIcon + HighContrast + ModernToolkit + UserDocs + + GNOME + gimp20 + + gimp.desktop + + gimp-2.10 + + gimp.desktop + + + + + + <_p> + A new stable releases with a lot of bug fixes and a few enhancements: + +
    + <_li> + New template selector in "Canvas Size" dialog + + <_li> + "Change Color" dialogs: color scale (0..255/0..100) and models (LCh/HSV) settings remembered across sessions + + <_li> + New header with "visible" and "link" icons in item dockables + + <_li> + Clipping layers better supported when importing PSD files + + <_li> + Paths are now exported to PSD + + <_li> + JPEG-XL export added + + <_li> + Metadata in JPEG-XL import and export + + <_li> + New option "Show reduced images" when loading TIFF images + + <_li> + 16-bit per channel export for raw image data + + <_li> + More plug-ins got bug-fixes: DDS, WebP, Flame, Animation Playback, HEIF, Dicom and Help + + <_li> + Color picking on X11 will ignore the Wayland portal; new implementation for color picking on Windows + + <_li> + Check for updates fixed on macOS + +
+
+
+ + + <_p> + GIMP continues strengthening its bases with this new version 2.10.32 fixing many bugs and improving format support. + Notable changes: + +
    + <_li> + 8 and 16-bit CMYK(A) TIFF files import is now supported + + <_li> + BIGTIFF import and export are now supported + + <_li> + JPEG XL files import is now supported + + <_li> + DDS export has new "Flip" (useful for some game engine) and "Visible layers" options + + <_li> + Other improved format supports: BMP, DICOM, EPS, RAW, TGA, WebP + + <_li> + The screenshot plug-in on Windows has now an option to capture the cursor + + <_li> + Several usability improvements in official themes and icons + + <_li> + New support for localized glyphs ('locl') in Text tool + depending on the value of the "Language" tool option + + <_li> + More robust XCF import + + <_li> + Several metadata handling improvements + +
+
+
+ + + + <_p> + GIMP 2.10.30 fixes many bugs, updates backend implementations + to follow OS evolutions, improves metadata support as well as + support of several formats, such as PSD and AVIF. + + + + + + + <_p> + GIMP 2.10.28 fixes a build issue of GIMP 2.10.26, where some + theme data was not properly installed. + + + + + + <_p> + GIMP 2.10.26 is a bug fix release, containing dozens of + fixes, both in core, scripts and plug-in code. + + + + + https://www.gimp.org/news/2021/03/29/gimp-2-10-24-released/ + + <_p> + GIMP 2.10.24 is again mostly a bug fix release. Notable changes: + +
    + <_li> + GeoTIFF metadata support added + + <_li> + PDF import now proposes an option to load layers in reverse + orders and allows fractional pixel density + + <_li> + Raw image import updated to handle API changes in darktable 3.6 and over + + <_li> + File format improved support: HEIF, PSP, TIFF, JPEG, PNG, PDF, DDS, BMP, PSD + + <_li> + Many fixes and improvements to the metadata viewer and editor + + <_li> + New Kabyle translation + + <_li> + Off-canvas point snapping (to grid, guides, paths) made possible + +
+
+
+ + https://www.gimp.org/news/2020/10/04/gimp-2-10-22-released/ + + <_p> + GIMP 2.10.22 is mainly a bug fix release. Notable changes: + +
    + <_li> + HEIF support improvements: optional exporting with high bit depth, + AVIF importing and exporting + + <_li> + Multiple improvements in Corel PaintShop Pro support + + <_li> + "Sample merged" now available in GEGL operation tool options + + <_li> + "Sample merged" is now enabled by default for color picking + + <_li> + The option enabling OpenCL support has been moved to the + Playground tab in Preferences + + <_li> + Matting Levin is now the default engine of Foreground Select + tool as it performs a lot better + + <_li> + New progressive performance logs and dashboard updates + + <_li> + Verbose debug now shows Flatpak info when relevant + + <_li> + Various bug fixes + +
+
+
+ + https://www.gimp.org/news/2020/06/07/gimp-2-10-20-released/ + + <_p> + GIMP 2.10.20 comes with new features as well as important bugfixes. + Notable changes: + +
    + <_li> + Tool groups now expand on hover rather than click by default + + <_li> + Non-destructive cropping now available by cropping the canvas rather + than actual pixels + + <_li> + Better PSD support: exporting of 16-bit files now available, + reading/writing channels in the right order + + <_li> + On-canvas controls for the Vignette filter + + <_li> + New filters: Bloom, Focus Blur, Lens Blur, Variable Blur + + <_li> + Over 30 bugfixes + +
+
+
+ + https://www.gimp.org/news/2020/02/24/gimp-2-10-18-released/ + + <_p> + GIMP 2.10.18 fixes some critical bugs, introduces naive support for CMYK PSD files, + and adds a higher-contrast variation of the symbolic icon theme. + + + + + https://www.gimp.org/news/2020/02/24/gimp-2-10-18-released/ + + <_p> + GIMP 2.10.16 delivers several major usability improvements, a new tool + for transformations in 3D space, new release checker, and the usual amount + of bug fixes. Notable improvements: + +
    + <_li> + Tools are now grouped in the toolbox by default + + <_li> + Sliders now use a compact style with improved user interaction + + <_li> + Vastly improved user experience for the transformation preview + + <_li> + Dockable areas now highlighted when a dockable dialog is being dragged + + <_li> + New 3D Transform tool to rotate and pan items + + <_li> + Much smoother brush outline motion on the canvas + + <_li> + Consolidated user interface for merging down and anchoring layers + + <_li> + Update check to notify users that a new release/installer is available + +
+
+
+ + https://www.gimp.org/news/2019/10/27/gimp-2-10-14-released/ + + <_p> + GIMP 2.10.14 is again mostly a bug fix release, making GIMP rock-solid. + Furthermore many old filters got finally ported to GEGL. + + Of course it also has a few noteworthy improvements: + +
    + <_li> + View menu: new "Show All" option to reveal pixels outside the canvas boundary + + <_li> + Filters: new "Clipping" option to allow layer resize when relevant + + <_li> + Foreground Select tool: new "Grayscale" Preview Mode + + <_li> + Foreground Select tool: color/opacity selector for "Color" preview + + <_li> + Free Select tool: improved copy-paste interaction + + <_li> + Transform tools: new Image transform type to transform the whole image + + <_li> + Preferences: new "Allow editing on non-visible layers" setting + + <_li> + HEIF import/export: color profile support + + <_li> + PDF export: text layers in layer groups now exported as texts + + <_li> + TIFF import: now asks how to process unspecified TIFF channels + +
+
+
+ + https://www.gimp.org/news/2019/06/12/gimp-2-10-12-released/ + + <_p> + GIMP 2.10.12 is a significant bug fix release, which is to be expected + after a 2.10.10 with so many changes! + Still, very cool improvements are also available, in particular for + curves editing: + +
    + <_li> + Improved curves interaction overall + + <_li> + A few enhancements specific to the Curves tool + + <_li> + Layer support in TIFF + + <_li> + Discovery of user-installed fonts in Windows + + <_li> + Incremental mode in the Dodge/Burn tool + + <_li> + Free Select tool creates preliminary selection + +
+
+
+ + https://www.gimp.org/news/2019/04/07/gimp-2-10-10-released/ + + <_p> + GIMP 2.10.10 is quite a big update with many new features and + bug fixes. Notable improvements include: + +
    + <_li> + Bucket Fill tool: new "Fill by line art detection" for not + perfectly closed line art zones + + <_li> + Bucket Fill tool can now quickly color-pick with Ctrl+click + + <_li> + Bucket Fill tool allows holding the mouse when filling + "similar colors" and "by line art detection" + + <_li> + Scale tool scales around center even when using numeric input + + <_li> + Unified Transform tool now defaults to preserving aspect ratio + when scaling up or down + + <_li> + Add "Constrain handles" and "Around center" options to the + perspective-transform tool's GUI + + <_li> + New generic canvas modifier 'Alt + middle click' to pick + layers + + <_li> + Parametric brushes now 32-bit float to avoid posterization + + <_li> + Clipboard brushes and pattern can now be duplicated + + <_li> + Failure to edit locked layers will blink to shift attention to + the cause of the error + + <_li> + New on-canvas GUI (simple lines) for circular, linear, and + zoom motion blur + + <_li> + Several optimizations including faster layer group rendering + + <_li> + Swap and cache files are not saved in the configuration + directory anymore + + <_li> + Various file saving/exporting made more robust to error by not + saving partial files + + <_li> + HiDPI support improvements + + <_li> + New preference to choose the default export file type + + <_li> + New option to export PNG, JPEG and TIFF with a color profile; + always export PSD with a color profile + + <_li> + New DDS format loading/exporting plug-in + + <_li> + Full rewrite of the Spyrogimp plug-in with more options and + better interaction + +
+
+
+ + https://www.gimp.org/news/2018/11/08/gimp-2-10-8-released/ + + <_p> + GIMP 2.10.8 is mostly a bug fix and optimization release. In + particular, it includes: + +
    + <_li> + Adaptative chunk size when rendering projections, improving + responsiveness dynamically + + <_li> + Detection of RawTherapee (version 5.5 and above) improved on + Windows + + <_li> + XCF compatibility information in the Save dialog more + understandable and discoverable + + <_li> + Various performance log tools added and log recording made + available in the Dashboard dock + +
+
+
+ + https://www.gimp.org/news/2018/08/19/gimp-2-10-6-released/ + + <_p> + GIMP 2.10.6 comes with a lot of bug fixes, optimizations and + features. Most notable changes are: + +
    + <_li> + Text layers can now represent vertical texts (with various + character orientations and line directions) + + <_li> + New "Little Planet" (gegl:stereographic-projection) filter + + <_li> + New "Long Shadow" filter + + <_li> + The "Straighten" option of the Measure Tool now allows + vertical straightening + + <_li> + Drawable previews are now rendered asynchronously and layer + group previews can be disabled in Preferences + + <_li> + New "async" field in the Dashboard "misc" group, showing the + number of async operations currently running + + <_li> + File format filtering in Open/Save/Export dialogs made less + confusing + + <_li> + New language (having GIMP translated in 81 languages now): + Marathi + +
+
+
+ + https://www.gimp.org/news/2018/07/04/gimp-2-10-4-released/ + + <_p> + GIMP 2.10.4 includes a lot of bug fixes as well as various + optimizations. Most notable changes are: + +
    + <_li> + Straightening in Measurement tool: layers can be rotated using + the measurement line as horizon + + <_li> + Fast startup: fonts loading is not blocking startup anymore + + <_li> + Fonts Tagging with the same user interface as for brushes, + patterns, and gradients + + <_li> + PSD support: a pre-composited version of a PSD image can be + imported + + <_li> + Dashboard update: new "Memory" group and improved "Swap" + group showing various metrics + +
+
+
+ + https://www.gimp.org/news/2018/05/20/gimp-2-10-2-released/ + + <_p> + This second release in the GIMP 2.10 series, so soon after + 2.10.0, is mostly the usual bug-fixing version after a major + release, with a few dozen bugs fixed. + + <_p> + It also features a new plug-in for the support of the HEIF + format, both for importing and exporting, as well as 2 new + filters: "Spherize" and "Recursive Transform". These are + nice examples of our relaxed feature policy in stable micro + releases. + + + + + + https://www.gimp.org/news/2018/04/27/gimp-2-10-0-released/ + + <_p> + First release of the 2.10 series which prominently features + the port to a new image processing engine, GEGL. + The most outstanding changes are: + +
    + <_li> + High bit depth color processing (16/32-bit per color channel) + + <_li> + Color management is a core feature now, most widgets + and preview areas are color-managed + + <_li> + On-canvas effect preview, with split view for before/after + processing pixels + + <_li> + Multi-threaded and hardware-accelerated rendering, + processing and painting + + <_li> + Most tools improved, several new transformation tools + + <_li> + Improved support for many image formats, in particular better + PSD importing + + <_li> + Newly supported image formats: OpenEXR, RGBE, WebP, HGT… + + <_li> + Improved digital painting: canvas rotation and + flipping, symmetry painting, MyPaint brushes… + + <_li> + Metadata viewing and editing for Exif, XMP, IPTC, and DICOM + + <_li> + Basic HiDPI support: automatically or user-selected icon size + + <_li> + New themes for GIMP: Light, Gray, Dark, and System + + <_li> + And much, much more… + +
+
+
+ + + https://www.gimp.org/news/2018/04/17/gimp-2-10-0-rc2-released/ + + <_p> + In this second release candidate before GIMP 2.10.0, while + debugging is still a prime target, a new focus has been put on + speed and optimization in order to provide a smoother painting + experience. Bigger changes are: + +
    + <_li>Major core optimizations for painting and display, + including parallelized painting code + <_li>Symmetries are now preserved in XCF files (saved as image + parasites) + <_li>"Light" and "Dark" themes rewritten from scratch to get + rid of various usability issues. "Lighter" and "Darker" themes + removed. + <_li> New GimpToolGyroscope on-canvas control, currently used + for the Panorama Projection filter. The widget provides + on-canvas interaction for 3D rotation (yaw, pitch, roll). + <_li>Plug-in debugging improved to output stack traces from + plug-ins with --stack-trace-mode command line option not only + on receiving signals but also on warnings and critical errors + when "fatal-warnings" debug key is set +
+
+
+ + https://www.gimp.org/news/2018/03/26/gimp-2-10-0-rc1-released/ + + <_p> + GIMP 2.10.0-RC1 is the first release candidate before GIMP + 2.10.0 stable release, with a focus on debugging and stability. + Other than the many bug fixes, most notable improvements are: + +
    + <_li>New dashboard dockable to monitor GIMP resource usage + <_li>New debug dialog to produce back traces and other debug + data, encouraging to report bugs + <_li>Unsaved images can now be recovered after a crash + <_li>Layer masks on layer groups + <_li>JPEG 2000 support improved for high bit depth and various + color spaces + <_li>Screenshot and color picking improved on various platforms + <_li>Metadata defaults preferences now available + <_li>Various GUI polishing +
+
+
+ + + https://www.gimp.org/news/2017/12/12/gimp-2-9-8-released/ + + <_p>GIMP 2.9.8 introduces on-canvas gradient + editing and various enhancements while focusing on bugfixing + and stability. +
    + <_li>On-canvas gradient editing + <_li>Notification when an image is over/underexposed + <_li>Better and faster color management + <_li>Support for color picker and screenshots in Wayland on KDE Plasma + <_li>Paste in place feature + <_li>Many usability improvements + <_li>Manual can be displayed in the user's preferred language + <_li>Improvements for the Wavelet Decompose filter + <_li>Improved compatibility with Photoshop .psd files + <_li>New support for password-protected PDF + <_li>New support for HGT format (Digital Elevation Model data) +
+
+
+ + + + + + + + + + + + + + + + +
+ +
diff --git a/desktop/org.gimp.GIMP.appdata.xml.in.in b/desktop/org.gimp.GIMP.appdata.xml.in.in new file mode 100644 index 0000000..6cdbf35 --- /dev/null +++ b/desktop/org.gimp.GIMP.appdata.xml.in.in @@ -0,0 +1,749 @@ + + + + org.gimp.GIMP + + + CC0-1.0 + GPL-3.0+ AND LGPL-3.0+ + The GIMP team + <_name>GNU Image Manipulation Program + <_summary>Create images and edit photographs + + <_p> + GIMP is an acronym for GNU Image Manipulation Program. It is a + freely distributed program for such tasks as photo retouching, + image composition and image authoring. + + <_p> + It has many capabilities. It can be used as a simple paint + program, an expert quality photo retouching program, an online + batch processing system, a mass production image renderer, an + image format converter, etc. + + <_p> + GIMP is expandable and extensible. It is designed to be + augmented with plug-ins and extensions to do just about + anything. The advanced scripting interface allows everything + from the simplest task to the most complex image manipulation + procedures to be easily scripted. GIMP is available for Linux, + Microsoft Windows and OS X. + + + @BUG_REPORT_URL@ + https://www.gimp.org/donating/ + https://www.gimp.org/docs/ + https://www.gimp.org/ + + + https://www.gimp.org/screenshots/Screenshot-gimp-2.10-painting.jpg + <_caption>Painting in GIMP + + + https://www.gimp.org/screenshots/Screenshot-gimp-2.10-photo-editing.jpg + <_caption>Photo editing in GIMP + + + gimp-developer-list_at_gnome.org + + GIMP + Photoshop + + + HiDpiIcon + HighContrast + ModernToolkit + UserDocs + + GNOME + gimp20 + + gimp.desktop + + @GIMP_COMMAND@ + + gimp.desktop + + + + + + <_p> + A new stable releases with a lot of bug fixes and a few enhancements: + +
    + <_li> + New template selector in "Canvas Size" dialog + + <_li> + "Change Color" dialogs: color scale (0..255/0..100) and models (LCh/HSV) settings remembered across sessions + + <_li> + New header with "visible" and "link" icons in item dockables + + <_li> + Clipping layers better supported when importing PSD files + + <_li> + Paths are now exported to PSD + + <_li> + JPEG-XL export added + + <_li> + Metadata in JPEG-XL import and export + + <_li> + New option "Show reduced images" when loading TIFF images + + <_li> + 16-bit per channel export for raw image data + + <_li> + More plug-ins got bug-fixes: DDS, WebP, Flame, Animation Playback, HEIF, Dicom and Help + + <_li> + Color picking on X11 will ignore the Wayland portal; new implementation for color picking on Windows + + <_li> + Check for updates fixed on macOS + +
+
+
+ + + <_p> + GIMP continues strengthening its bases with this new version 2.10.32 fixing many bugs and improving format support. + Notable changes: + +
    + <_li> + 8 and 16-bit CMYK(A) TIFF files import is now supported + + <_li> + BIGTIFF import and export are now supported + + <_li> + JPEG XL files import is now supported + + <_li> + DDS export has new "Flip" (useful for some game engine) and "Visible layers" options + + <_li> + Other improved format supports: BMP, DICOM, EPS, RAW, TGA, WebP + + <_li> + The screenshot plug-in on Windows has now an option to capture the cursor + + <_li> + Several usability improvements in official themes and icons + + <_li> + New support for localized glyphs ('locl') in Text tool + depending on the value of the "Language" tool option + + <_li> + More robust XCF import + + <_li> + Several metadata handling improvements + +
+
+
+ + + + <_p> + GIMP 2.10.30 fixes many bugs, updates backend implementations + to follow OS evolutions, improves metadata support as well as + support of several formats, such as PSD and AVIF. + + + + + + + <_p> + GIMP 2.10.28 fixes a build issue of GIMP 2.10.26, where some + theme data was not properly installed. + + + + + + <_p> + GIMP 2.10.26 is a bug fix release, containing dozens of + fixes, both in core, scripts and plug-in code. + + + + + https://www.gimp.org/news/2021/03/29/gimp-2-10-24-released/ + + <_p> + GIMP 2.10.24 is again mostly a bug fix release. Notable changes: + +
    + <_li> + GeoTIFF metadata support added + + <_li> + PDF import now proposes an option to load layers in reverse + orders and allows fractional pixel density + + <_li> + Raw image import updated to handle API changes in darktable 3.6 and over + + <_li> + File format improved support: HEIF, PSP, TIFF, JPEG, PNG, PDF, DDS, BMP, PSD + + <_li> + Many fixes and improvements to the metadata viewer and editor + + <_li> + New Kabyle translation + + <_li> + Off-canvas point snapping (to grid, guides, paths) made possible + +
+
+
+ + https://www.gimp.org/news/2020/10/04/gimp-2-10-22-released/ + + <_p> + GIMP 2.10.22 is mainly a bug fix release. Notable changes: + +
    + <_li> + HEIF support improvements: optional exporting with high bit depth, + AVIF importing and exporting + + <_li> + Multiple improvements in Corel PaintShop Pro support + + <_li> + "Sample merged" now available in GEGL operation tool options + + <_li> + "Sample merged" is now enabled by default for color picking + + <_li> + The option enabling OpenCL support has been moved to the + Playground tab in Preferences + + <_li> + Matting Levin is now the default engine of Foreground Select + tool as it performs a lot better + + <_li> + New progressive performance logs and dashboard updates + + <_li> + Verbose debug now shows Flatpak info when relevant + + <_li> + Various bug fixes + +
+
+
+ + https://www.gimp.org/news/2020/06/07/gimp-2-10-20-released/ + + <_p> + GIMP 2.10.20 comes with new features as well as important bugfixes. + Notable changes: + +
    + <_li> + Tool groups now expand on hover rather than click by default + + <_li> + Non-destructive cropping now available by cropping the canvas rather + than actual pixels + + <_li> + Better PSD support: exporting of 16-bit files now available, + reading/writing channels in the right order + + <_li> + On-canvas controls for the Vignette filter + + <_li> + New filters: Bloom, Focus Blur, Lens Blur, Variable Blur + + <_li> + Over 30 bugfixes + +
+
+
+ + https://www.gimp.org/news/2020/02/24/gimp-2-10-18-released/ + + <_p> + GIMP 2.10.18 fixes some critical bugs, introduces naive support for CMYK PSD files, + and adds a higher-contrast variation of the symbolic icon theme. + + + + + https://www.gimp.org/news/2020/02/24/gimp-2-10-18-released/ + + <_p> + GIMP 2.10.16 delivers several major usability improvements, a new tool + for transformations in 3D space, new release checker, and the usual amount + of bug fixes. Notable improvements: + +
    + <_li> + Tools are now grouped in the toolbox by default + + <_li> + Sliders now use a compact style with improved user interaction + + <_li> + Vastly improved user experience for the transformation preview + + <_li> + Dockable areas now highlighted when a dockable dialog is being dragged + + <_li> + New 3D Transform tool to rotate and pan items + + <_li> + Much smoother brush outline motion on the canvas + + <_li> + Consolidated user interface for merging down and anchoring layers + + <_li> + Update check to notify users that a new release/installer is available + +
+
+
+ + https://www.gimp.org/news/2019/10/27/gimp-2-10-14-released/ + + <_p> + GIMP 2.10.14 is again mostly a bug fix release, making GIMP rock-solid. + Furthermore many old filters got finally ported to GEGL. + + Of course it also has a few noteworthy improvements: + +
    + <_li> + View menu: new "Show All" option to reveal pixels outside the canvas boundary + + <_li> + Filters: new "Clipping" option to allow layer resize when relevant + + <_li> + Foreground Select tool: new "Grayscale" Preview Mode + + <_li> + Foreground Select tool: color/opacity selector for "Color" preview + + <_li> + Free Select tool: improved copy-paste interaction + + <_li> + Transform tools: new Image transform type to transform the whole image + + <_li> + Preferences: new "Allow editing on non-visible layers" setting + + <_li> + HEIF import/export: color profile support + + <_li> + PDF export: text layers in layer groups now exported as texts + + <_li> + TIFF import: now asks how to process unspecified TIFF channels + +
+
+
+ + https://www.gimp.org/news/2019/06/12/gimp-2-10-12-released/ + + <_p> + GIMP 2.10.12 is a significant bug fix release, which is to be expected + after a 2.10.10 with so many changes! + Still, very cool improvements are also available, in particular for + curves editing: + +
    + <_li> + Improved curves interaction overall + + <_li> + A few enhancements specific to the Curves tool + + <_li> + Layer support in TIFF + + <_li> + Discovery of user-installed fonts in Windows + + <_li> + Incremental mode in the Dodge/Burn tool + + <_li> + Free Select tool creates preliminary selection + +
+
+
+ + https://www.gimp.org/news/2019/04/07/gimp-2-10-10-released/ + + <_p> + GIMP 2.10.10 is quite a big update with many new features and + bug fixes. Notable improvements include: + +
    + <_li> + Bucket Fill tool: new "Fill by line art detection" for not + perfectly closed line art zones + + <_li> + Bucket Fill tool can now quickly color-pick with Ctrl+click + + <_li> + Bucket Fill tool allows holding the mouse when filling + "similar colors" and "by line art detection" + + <_li> + Scale tool scales around center even when using numeric input + + <_li> + Unified Transform tool now defaults to preserving aspect ratio + when scaling up or down + + <_li> + Add "Constrain handles" and "Around center" options to the + perspective-transform tool's GUI + + <_li> + New generic canvas modifier 'Alt + middle click' to pick + layers + + <_li> + Parametric brushes now 32-bit float to avoid posterization + + <_li> + Clipboard brushes and pattern can now be duplicated + + <_li> + Failure to edit locked layers will blink to shift attention to + the cause of the error + + <_li> + New on-canvas GUI (simple lines) for circular, linear, and + zoom motion blur + + <_li> + Several optimizations including faster layer group rendering + + <_li> + Swap and cache files are not saved in the configuration + directory anymore + + <_li> + Various file saving/exporting made more robust to error by not + saving partial files + + <_li> + HiDPI support improvements + + <_li> + New preference to choose the default export file type + + <_li> + New option to export PNG, JPEG and TIFF with a color profile; + always export PSD with a color profile + + <_li> + New DDS format loading/exporting plug-in + + <_li> + Full rewrite of the Spyrogimp plug-in with more options and + better interaction + +
+
+
+ + https://www.gimp.org/news/2018/11/08/gimp-2-10-8-released/ + + <_p> + GIMP 2.10.8 is mostly a bug fix and optimization release. In + particular, it includes: + +
    + <_li> + Adaptative chunk size when rendering projections, improving + responsiveness dynamically + + <_li> + Detection of RawTherapee (version 5.5 and above) improved on + Windows + + <_li> + XCF compatibility information in the Save dialog more + understandable and discoverable + + <_li> + Various performance log tools added and log recording made + available in the Dashboard dock + +
+
+
+ + https://www.gimp.org/news/2018/08/19/gimp-2-10-6-released/ + + <_p> + GIMP 2.10.6 comes with a lot of bug fixes, optimizations and + features. Most notable changes are: + +
    + <_li> + Text layers can now represent vertical texts (with various + character orientations and line directions) + + <_li> + New "Little Planet" (gegl:stereographic-projection) filter + + <_li> + New "Long Shadow" filter + + <_li> + The "Straighten" option of the Measure Tool now allows + vertical straightening + + <_li> + Drawable previews are now rendered asynchronously and layer + group previews can be disabled in Preferences + + <_li> + New "async" field in the Dashboard "misc" group, showing the + number of async operations currently running + + <_li> + File format filtering in Open/Save/Export dialogs made less + confusing + + <_li> + New language (having GIMP translated in 81 languages now): + Marathi + +
+
+
+ + https://www.gimp.org/news/2018/07/04/gimp-2-10-4-released/ + + <_p> + GIMP 2.10.4 includes a lot of bug fixes as well as various + optimizations. Most notable changes are: + +
    + <_li> + Straightening in Measurement tool: layers can be rotated using + the measurement line as horizon + + <_li> + Fast startup: fonts loading is not blocking startup anymore + + <_li> + Fonts Tagging with the same user interface as for brushes, + patterns, and gradients + + <_li> + PSD support: a pre-composited version of a PSD image can be + imported + + <_li> + Dashboard update: new "Memory" group and improved "Swap" + group showing various metrics + +
+
+
+ + https://www.gimp.org/news/2018/05/20/gimp-2-10-2-released/ + + <_p> + This second release in the GIMP 2.10 series, so soon after + 2.10.0, is mostly the usual bug-fixing version after a major + release, with a few dozen bugs fixed. + + <_p> + It also features a new plug-in for the support of the HEIF + format, both for importing and exporting, as well as 2 new + filters: "Spherize" and "Recursive Transform". These are + nice examples of our relaxed feature policy in stable micro + releases. + + + + + + https://www.gimp.org/news/2018/04/27/gimp-2-10-0-released/ + + <_p> + First release of the 2.10 series which prominently features + the port to a new image processing engine, GEGL. + The most outstanding changes are: + +
    + <_li> + High bit depth color processing (16/32-bit per color channel) + + <_li> + Color management is a core feature now, most widgets + and preview areas are color-managed + + <_li> + On-canvas effect preview, with split view for before/after + processing pixels + + <_li> + Multi-threaded and hardware-accelerated rendering, + processing and painting + + <_li> + Most tools improved, several new transformation tools + + <_li> + Improved support for many image formats, in particular better + PSD importing + + <_li> + Newly supported image formats: OpenEXR, RGBE, WebP, HGT… + + <_li> + Improved digital painting: canvas rotation and + flipping, symmetry painting, MyPaint brushes… + + <_li> + Metadata viewing and editing for Exif, XMP, IPTC, and DICOM + + <_li> + Basic HiDPI support: automatically or user-selected icon size + + <_li> + New themes for GIMP: Light, Gray, Dark, and System + + <_li> + And much, much more… + +
+
+
+ + + https://www.gimp.org/news/2018/04/17/gimp-2-10-0-rc2-released/ + + <_p> + In this second release candidate before GIMP 2.10.0, while + debugging is still a prime target, a new focus has been put on + speed and optimization in order to provide a smoother painting + experience. Bigger changes are: + +
    + <_li>Major core optimizations for painting and display, + including parallelized painting code + <_li>Symmetries are now preserved in XCF files (saved as image + parasites) + <_li>"Light" and "Dark" themes rewritten from scratch to get + rid of various usability issues. "Lighter" and "Darker" themes + removed. + <_li> New GimpToolGyroscope on-canvas control, currently used + for the Panorama Projection filter. The widget provides + on-canvas interaction for 3D rotation (yaw, pitch, roll). + <_li>Plug-in debugging improved to output stack traces from + plug-ins with --stack-trace-mode command line option not only + on receiving signals but also on warnings and critical errors + when "fatal-warnings" debug key is set +
+
+
+ + https://www.gimp.org/news/2018/03/26/gimp-2-10-0-rc1-released/ + + <_p> + GIMP 2.10.0-RC1 is the first release candidate before GIMP + 2.10.0 stable release, with a focus on debugging and stability. + Other than the many bug fixes, most notable improvements are: + +
    + <_li>New dashboard dockable to monitor GIMP resource usage + <_li>New debug dialog to produce back traces and other debug + data, encouraging to report bugs + <_li>Unsaved images can now be recovered after a crash + <_li>Layer masks on layer groups + <_li>JPEG 2000 support improved for high bit depth and various + color spaces + <_li>Screenshot and color picking improved on various platforms + <_li>Metadata defaults preferences now available + <_li>Various GUI polishing +
+
+
+ + + https://www.gimp.org/news/2017/12/12/gimp-2-9-8-released/ + + <_p>GIMP 2.9.8 introduces on-canvas gradient + editing and various enhancements while focusing on bugfixing + and stability. +
    + <_li>On-canvas gradient editing + <_li>Notification when an image is over/underexposed + <_li>Better and faster color management + <_li>Support for color picker and screenshots in Wayland on KDE Plasma + <_li>Paste in place feature + <_li>Many usability improvements + <_li>Manual can be displayed in the user's preferred language + <_li>Improvements for the Wavelet Decompose filter + <_li>Improved compatibility with Photoshop .psd files + <_li>New support for password-protected PDF + <_li>New support for HGT format (Digital Elevation Model data) +
+
+
+ + + + + + + + + + + + + + + + +
+ +
diff --git a/desktop/test-appdata.sh.in b/desktop/test-appdata.sh.in new file mode 100755 index 0000000..733bcfc --- /dev/null +++ b/desktop/test-appdata.sh.in @@ -0,0 +1,15 @@ +#!/bin/sh + +# TODO: use validate-strict when the last errors for a strict validation +# are fixed. +appstream-util validate-relax ${GIMP_TESTING_ABS_TOP_BUILDDIR}/desktop/org.gimp.GIMP.appdata.xml && \ +appstream-util validate-relax ${GIMP_TESTING_ABS_TOP_BUILDDIR}/desktop/gimp-data-extras.metainfo.xml && \ +if [ $(expr @GIMP_MICRO_VERSION@ % 2) = 0 ]; then + grep TODO ${GIMP_TESTING_ABS_TOP_BUILDDIR}/desktop/org.gimp.GIMP.appdata.xml + if [ $? = 0 ]; then + echo "ERROR: stable version with remaining TODOs in appdata." + false + fi +else + true +fi diff --git a/desktop/test-desktop.sh b/desktop/test-desktop.sh new file mode 100755 index 0000000..6794034 --- /dev/null +++ b/desktop/test-desktop.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +desktop-file-validate ${GIMP_TESTING_ABS_TOP_BUILDDIR}/desktop/gimp.desktop -- cgit v1.2.3