aboutsummaryrefslogtreecommitdiff
path: root/graphics/rawtherapee
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2018-12-22 10:38:15 +0000
committerMatthias Andree <mandree@FreeBSD.org>2018-12-22 10:38:15 +0000
commit59762e06a6be4198d45cebe8f71572578e91dd9e (patch)
tree46b4d66f582ce457d73fb6beae3dbcbb56c7ee1f /graphics/rawtherapee
parentefbcacd6f5cff9090c3cc5f8f1acf9caabe3cd48 (diff)
downloadports-59762e06a6be4198d45cebe8f71572578e91dd9e.tar.gz
ports-59762e06a6be4198d45cebe8f71572578e91dd9e.zip
Update to new upstream release 5.5.
Credits to Greg for a thorough preparation of the update, much appreciated with a huge thank you. Release announcement: <https://rawtherapee.com/blog/rawtherapee-5.5-released> A selection of news (read the announcement for more, and screenshots): * stripe artifact removal for phase detection auto-focus (PDAF) for Nikon Z6, Z7, and various Sony cameras * improved support for Canon mRaw * new Shadows/Highlights tool * constrast threshold masks to filter effects by high/low detail regions * new color toning methods * new soft light tool * ICC profile creator * new "flexible" tone curve type * improved lensfun chromatic aberration correction While here, since the abort-on-exit bug persists, wrap rawtherapee in a script that runs ulimit -c 0, and make note of it in pkg-message. References: * <https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205370> * <https://github.com/Beep6581/RawTherapee/issues/3636> PR: 234153 Submitted by: Greg V <greg@unrelenting.technology>
Notes
Notes: svn path=/head/; revision=488088
Diffstat (limited to 'graphics/rawtherapee')
-rw-r--r--graphics/rawtherapee/Makefile12
-rw-r--r--graphics/rawtherapee/distinfo6
-rw-r--r--graphics/rawtherapee/files/patch-rtengine_imagedata.cc4
-rw-r--r--graphics/rawtherapee/files/patch-rtengine_previewimage.cc14
-rw-r--r--graphics/rawtherapee/files/patch-rtgui_CMakeLists.txt14
-rw-r--r--graphics/rawtherapee/files/run-rawtherapee.in6
-rw-r--r--graphics/rawtherapee/pkg-message12
-rw-r--r--graphics/rawtherapee/pkg-plist1385
8 files changed, 695 insertions, 758 deletions
diff --git a/graphics/rawtherapee/Makefile b/graphics/rawtherapee/Makefile
index 4e97e8414d97..ab2699031d42 100644
--- a/graphics/rawtherapee/Makefile
+++ b/graphics/rawtherapee/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= rawtherapee
-PORTVERSION= 5.4
-PORTREVISION= 2
+PORTVERSION= 5.5
#DISTNAME= ${PORTNAME}-${PORTVERSION:R}-r${PORTVERSION:E}${DISTVERSIONSUFFIX}
CATEGORIES= graphics
MASTER_SITES= http://rawtherapee.com/shared/source/
@@ -28,7 +27,7 @@ LIB_DEPENDS= \
libsigc-2.0.so:devel/libsigc++20 \
libtiff.so:graphics/tiff
-USES= cmake:outsource desktop-file-utils dos2unix \
+USES= cmake:outsource desktop-file-utils gnome dos2unix \
jpeg localbase:ldflags pkgconfig tar:xz
DOS2UNIX_REGEX= .*\.(cc|h)
LDFLAGS+= -Wl,--as-needed # fontconfig, freetype, gettext, libX11
@@ -52,6 +51,8 @@ CMAKE_ARGS+= -DDOCDIR="${DOCSDIR}" \
# linker flags are passed. Else -lomp is not found with clang.
# See: https://cmake.org/cmake/help/v3.4/policy/CMP0056.html
+SUB_FILES= run-rawtherapee
+
INSTALLS_ICONS= yes
.if defined(PACKAGE_BUILDING) && empty(CFLAGS:M-march*)
@@ -138,5 +139,10 @@ post-install:
| ${EGREP} -q "RawTherapee, version ${PKGVERSION:C/_.*//:C/,.*//}|cannot open display:" && \
${SETENV} LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME="$$TMP" ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli --version 2>&1 \
| ${EGREP} -q "RawTherapee, version ${PKGVERSION:C/_.*//:C/,.*//}"
+ @${ECHO_MSG} "===> Wrapping rawtherapee to prevent core dumps unless \$$DEBUG is nonempty"
+ # wrap things in a script that prevents core dumps
+ ${MV} ${STAGEDIR}${PREFIX}/bin/rawtherapee ${STAGEDIR}${PREFIX}/bin/rawtherapee.real
+ ${INSTALL_SCRIPT} ${WRKDIR}/run-rawtherapee ${STAGEDIR}${PREFIX}/bin/rawtherapee
+
.include <bsd.port.post.mk>
diff --git a/graphics/rawtherapee/distinfo b/graphics/rawtherapee/distinfo
index 893e36fd7faf..149d7aae1c50 100644
--- a/graphics/rawtherapee/distinfo
+++ b/graphics/rawtherapee/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1521624118
-SHA256 (rawtherapee-5.4.tar.xz) = ed08c1c3caf5dd34b41ea3261d215c729eabe9734c78181e6690088471874988
-SIZE (rawtherapee-5.4.tar.xz) = 11991988
+TIMESTAMP = 1545145340
+SHA256 (rawtherapee-5.5.tar.xz) = c169c9fb37dd5183de795200338af1e597f8189b1f75a48f8688db6eb35048f0
+SIZE (rawtherapee-5.5.tar.xz) = 12163556
diff --git a/graphics/rawtherapee/files/patch-rtengine_imagedata.cc b/graphics/rawtherapee/files/patch-rtengine_imagedata.cc
index 7190bb595dcd..6612060de18d 100644
--- a/graphics/rawtherapee/files/patch-rtengine_imagedata.cc
+++ b/graphics/rawtherapee/files/patch-rtengine_imagedata.cc
@@ -1,6 +1,6 @@
---- rtengine/imagedata.cc.orig 2017-01-26 22:12:23 UTC
+--- rtengine/imagedata.cc.orig 2018-12-18 19:12:08 UTC
+++ rtengine/imagedata.cc
-@@ -444,7 +444,7 @@ void ImageData::extractInfo ()
+@@ -413,7 +413,7 @@ FrameData::FrameData (rtexif::TagDirectory* frameRootD
if (baseIsoTag) {
std::string isoData = baseIsoTag->valueToString();
if (isoData.size() > 1) {
diff --git a/graphics/rawtherapee/files/patch-rtengine_previewimage.cc b/graphics/rawtherapee/files/patch-rtengine_previewimage.cc
new file mode 100644
index 000000000000..db720e9a7187
--- /dev/null
+++ b/graphics/rawtherapee/files/patch-rtengine_previewimage.cc
@@ -0,0 +1,14 @@
+Fixes high idle CPU usage with libomp
+https://github.com/Beep6581/RawTherapee/issues/5105
+
+--- rtengine/previewimage.cc.orig 2018-12-18 19:27:33 UTC
++++ rtengine/previewimage.cc
+@@ -119,7 +119,7 @@ PreviewImage::PreviewImage (const Glib::ustring &fname
+ rawImage.getImage (wb, TR_NONE, &image, pp, params.toneCurve, params.raw);
+ rtengine::Image8 output(fw, fh);
+ rawImage.convertColorSpace(&image, params.icm, wb);
+- #pragma omp parallel for schedule(dynamic, 10)
++ #pragma omp parallel for
+ for (int i = 0; i < fh; ++i)
+ for (int j = 0; j < fw; ++j) {
+ image.r(i, j) = Color::gamma2curve[image.r(i, j)];
diff --git a/graphics/rawtherapee/files/patch-rtgui_CMakeLists.txt b/graphics/rawtherapee/files/patch-rtgui_CMakeLists.txt
new file mode 100644
index 000000000000..e62a2309a1d6
--- /dev/null
+++ b/graphics/rawtherapee/files/patch-rtgui_CMakeLists.txt
@@ -0,0 +1,14 @@
+LLVM doesn't have a libatomic, it's all in compiler-rt
+--- rtgui/CMakeLists.txt.orig 2018-12-18 19:27:46 UTC
++++ rtgui/CMakeLists.txt
+@@ -226,10 +226,6 @@ else()
+ )
+ endif()
+
+-if(OPENMP_FOUND AND NOT APPLE)
+- set(EXTRA_LIB_RTGUI ${EXTRA_LIB_RTGUI} "atomic")
+-endif()
+-
+ # Create config.h which defines where data are stored
+ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/config.h.in" "${CMAKE_CURRENT_BINARY_DIR}/config.h")
+
diff --git a/graphics/rawtherapee/files/run-rawtherapee.in b/graphics/rawtherapee/files/run-rawtherapee.in
new file mode 100644
index 000000000000..b7591fad0cb9
--- /dev/null
+++ b/graphics/rawtherapee/files/run-rawtherapee.in
@@ -0,0 +1,6 @@
+#!/bin/sh
+# suppress core files unless DEBUG variable is set
+if test -z "$DEBUG" ; then
+ ulimit -c 0
+fi
+exec "%%PREFIX%%/bin/rawtherapee.real" "$@"
diff --git a/graphics/rawtherapee/pkg-message b/graphics/rawtherapee/pkg-message
index ac0e1ed156a7..f25a5c920120 100644
--- a/graphics/rawtherapee/pkg-message
+++ b/graphics/rawtherapee/pkg-message
@@ -1,5 +1,4 @@
-
-======================================================================
+=======================================================================
DISK SPACE WARNING:
Note that RawTherapee uses version-dependent cache and configuration
@@ -9,4 +8,11 @@ remove older cache directories.
Also, after configurations have been moved to the new version's
directory, older $HOME/.config/RawTherapee* directories may be removed.
-======================================================================
+=======================================================================
+Also, due to a bug that has not yet been found, RawTherapee will
+cause an abort trap when shutting down. rawtherapee is now installed
+as rawtherapee.real, and rawtherapee is a wrapper script that will
+prevent the creation of a core file in this situation, unless the
+environment variable DEBUG is set and not empty.
+-> <https://github.com/Beep6581/RawTherapee/issues/3636>
+=======================================================================
diff --git a/graphics/rawtherapee/pkg-plist b/graphics/rawtherapee/pkg-plist
index 9a4870a1c60a..81d5886d3ddf 100644
--- a/graphics/rawtherapee/pkg-plist
+++ b/graphics/rawtherapee/pkg-plist
@@ -1,5 +1,6 @@
@comment env LC_ALL=C sort -f
bin/rawtherapee
+bin/rawtherapee.real
bin/rawtherapee-cli
man/man1/rawtherapee.1.gz
share/applications/rawtherapee.desktop
@@ -11,10 +12,10 @@ share/icons/hicolor/128x128/apps/rawtherapee.png
share/icons/hicolor/16x16/apps/rawtherapee.png
share/icons/hicolor/24x24/apps/rawtherapee.png
share/icons/hicolor/256x256/apps/rawtherapee.png
-share/icons/hicolor/32x32/apps/rawtherapee.png
share/icons/hicolor/48x48/apps/rawtherapee.png
share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/camconst.json
+%%DATADIR%%/dcpprofiles/camera_model_aliases.json
%%DATADIR%%/dcpprofiles/Canon EOS 100D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 1300D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 20D.dcp
@@ -25,40 +26,41 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/dcpprofiles/Canon EOS 550D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 5D Mark III.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 5D.dcp
+%%DATADIR%%/dcpprofiles/Canon EOS 600D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 60D.dcp
+%%DATADIR%%/dcpprofiles/Canon EOS 650D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 6D Mark II.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 6D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 7D Mark II.dcp
%%DATADIR%%/dcpprofiles/Canon EOS 7D.dcp
%%DATADIR%%/dcpprofiles/Canon EOS D60.dcp
-%%DATADIR%%/dcpprofiles/Canon EOS Digital Rebel XSi.dcp
-%%DATADIR%%/dcpprofiles/Canon EOS Digital Rebel XTi.dcp
-%%DATADIR%%/dcpprofiles/Canon EOS Kiss X7.dcp
-%%DATADIR%%/dcpprofiles/Canon EOS Rebel SL1.dcp
-%%DATADIR%%/dcpprofiles/Canon EOS Rebel T2i.dcp
%%DATADIR%%/dcpprofiles/Canon EOS-1D Mark III.dcp
%%DATADIR%%/dcpprofiles/Canon PowerShot G10.dcp
%%DATADIR%%/dcpprofiles/Canon PowerShot G12.dcp
%%DATADIR%%/dcpprofiles/Canon PowerShot G7 X.dcp
%%DATADIR%%/dcpprofiles/Canon PowerShot S110.dcp
+%%DATADIR%%/dcpprofiles/FUJIFILM FinePix F600EXR.dcp
%%DATADIR%%/dcpprofiles/Fujifilm FinePix S9500.dcp
%%DATADIR%%/dcpprofiles/Fujifilm X-E1.dcp
%%DATADIR%%/dcpprofiles/Fujifilm X-E2.dcp
%%DATADIR%%/dcpprofiles/FUJIFILM X-Pro2.dcp
+%%DATADIR%%/dcpprofiles/FUJIFILM X-S1.dcp
%%DATADIR%%/dcpprofiles/FUJIFILM X-T1.dcp
-%%DATADIR%%/dcpprofiles/Fujifilm X-T10.dcp
+%%DATADIR%%/dcpprofiles/FUJIFILM X-T10.dcp
%%DATADIR%%/dcpprofiles/FUJIFILM X-T20.dcp
%%DATADIR%%/dcpprofiles/FUJIFILM X100S.dcp
%%DATADIR%%/dcpprofiles/FUJIFILM X100T.dcp
%%DATADIR%%/dcpprofiles/Leaf Aptus 75.dcp
%%DATADIR%%/dcpprofiles/LG Mobile LG-H815.dcp
%%DATADIR%%/dcpprofiles/MINOLTA DYNAX 7D.dcp
+%%DATADIR%%/dcpprofiles/NIKON COOLPIX P7800.dcp
%%DATADIR%%/dcpprofiles/Nikon D200.dcp
%%DATADIR%%/dcpprofiles/NIKON D300.dcp
%%DATADIR%%/dcpprofiles/Nikon D3000.dcp
%%DATADIR%%/dcpprofiles/Nikon D3100.dcp
%%DATADIR%%/dcpprofiles/Nikon D3S.dcp
-%%DATADIR%%/dcpprofiles/Nikon D50.dcp
+%%DATADIR%%/dcpprofiles/NIKON D50.dcp
+%%DATADIR%%/dcpprofiles/NIKON D5000.dcp
%%DATADIR%%/dcpprofiles/Nikon D5100.dcp
%%DATADIR%%/dcpprofiles/NIKON D5600.dcp
%%DATADIR%%/dcpprofiles/NIKON D600.dcp
@@ -67,20 +69,20 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/dcpprofiles/NIKON D7200.dcp
%%DATADIR%%/dcpprofiles/NIKON D750.dcp
%%DATADIR%%/dcpprofiles/NIKON D80.dcp
-%%DATADIR%%/dcpprofiles/Nikon D800.dcp
+%%DATADIR%%/dcpprofiles/NIKON D800E.dcp
%%DATADIR%%/dcpprofiles/NIKON D810.dcp
%%DATADIR%%/dcpprofiles/Olympus E-1.dcp
-%%DATADIR%%/dcpprofiles/Olympus E-510.dcp
+%%DATADIR%%/dcpprofiles/OLYMPUS E-510.dcp
%%DATADIR%%/dcpprofiles/Olympus E-520.dcp
%%DATADIR%%/dcpprofiles/OLYMPUS E-M10.dcp
%%DATADIR%%/dcpprofiles/OLYMPUS E-M1MarkII.dcp
%%DATADIR%%/dcpprofiles/Olympus E-M5.dcp
%%DATADIR%%/dcpprofiles/Olympus E-P2.dcp
%%DATADIR%%/dcpprofiles/Olympus XZ-1.dcp
-%%DATADIR%%/dcpprofiles/Panasonic DC-TZ90.dcp
+%%DATADIR%%/dcpprofiles/Panasonic DC-G9.dcp
+%%DATADIR%%/dcpprofiles/Panasonic DC-GX9.dcp
%%DATADIR%%/dcpprofiles/Panasonic DC-TZ91.dcp
-%%DATADIR%%/dcpprofiles/Panasonic DC-TZ92.dcp
-%%DATADIR%%/dcpprofiles/Panasonic DC-TZ93.dcp
+%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ1000.dcp
%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ150.dcp
%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ35.dcp
%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ38.dcp
@@ -102,6 +104,7 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/dcpprofiles/Sony DSLR-A900.dcp
%%DATADIR%%/dcpprofiles/SONY ILCE-6000.dcp
%%DATADIR%%/dcpprofiles/SONY ILCE-7M2.dcp
+%%DATADIR%%/dcpprofiles/SONY ILCE-7M3.dcp
%%DATADIR%%/dcpprofiles/SONY ILCE-7RM3.dcp
%%DATADIR%%/dcpprofiles/Sony NEX-5N.dcp
%%DATADIR%%/dcpprofiles/Sony SLT-A55V.dcp
@@ -112,8 +115,6 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/iccprofiles/input/Canon EOS 450D.icc
%%DATADIR%%/iccprofiles/input/Canon EOS 550D.icc
%%DATADIR%%/iccprofiles/input/Canon EOS 5D.icc
-%%DATADIR%%/iccprofiles/input/Canon EOS Digital Rebel XSi.icc
-%%DATADIR%%/iccprofiles/input/Canon EOS Rebel T2i.icc
%%DATADIR%%/iccprofiles/input/Canon EOS-1D Mark III.icc
%%DATADIR%%/iccprofiles/input/Canon PowerShot G10.icc
%%DATADIR%%/iccprofiles/input/Canon PowerShot G12.icc
@@ -144,684 +145,627 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/iccprofiles/input/Sony DSLR-A700.icc
%%DATADIR%%/iccprofiles/input/Sony DSLR-A900.icc
%%DATADIR%%/iccprofiles/input/Sony SLT-A55V.icc
-%%DATADIR%%/iccprofiles/output/ACES.icc
%%DATADIR%%/iccprofiles/output/DCI-P3 D65.icc
%%DATADIR%%/iccprofiles/output/DCI-P3 Theater.icc
-%%DATADIR%%/iccprofiles/output/Rec2020.icm
-%%DATADIR%%/iccprofiles/output/RT_Large_g10.icc
-%%DATADIR%%/iccprofiles/output/RT_Large_gBT709.icc
-%%DATADIR%%/iccprofiles/output/RT_Large_gsRGB.icc
-%%DATADIR%%/iccprofiles/output/RT_Medium_gsRGB.icc
-%%DATADIR%%/iccprofiles/output/RT_sRGB.icm
-%%DATADIR%%/iccprofiles/output/RT_sRGB_g10.icm
-%%DATADIR%%/iccprofiles/output/RT_sRGB_gBT709.icm
-%%DATADIR%%/images/beforeafter.png
-%%DATADIR%%/images/cglabel0.png
-%%DATADIR%%/images/cglabel1.png
-%%DATADIR%%/images/cglabel2.png
-%%DATADIR%%/images/cglabel3.png
-%%DATADIR%%/images/cglabel4.png
-%%DATADIR%%/images/cglabel5.png
-%%DATADIR%%/images/Chanmixer-B.png
-%%DATADIR%%/images/Chanmixer-BB.png
-%%DATADIR%%/images/Chanmixer-BG.png
-%%DATADIR%%/images/Chanmixer-BR.png
-%%DATADIR%%/images/Chanmixer-BY.png
-%%DATADIR%%/images/Chanmixer-C.png
-%%DATADIR%%/images/Chanmixer-G.png
-%%DATADIR%%/images/Chanmixer-GB.png
-%%DATADIR%%/images/Chanmixer-GG.png
-%%DATADIR%%/images/Chanmixer-GR.png
-%%DATADIR%%/images/Chanmixer-M.png
-%%DATADIR%%/images/Chanmixer-O.png
-%%DATADIR%%/images/Chanmixer-P.png
-%%DATADIR%%/images/Chanmixer-R.png
-%%DATADIR%%/images/Chanmixer-RB.png
-%%DATADIR%%/images/Chanmixer-RG.png
-%%DATADIR%%/images/Chanmixer-RR.png
-%%DATADIR%%/images/Chanmixer-Y.png
-%%DATADIR%%/images/clabel0.png
-%%DATADIR%%/images/clabel1.png
-%%DATADIR%%/images/clabel2.png
-%%DATADIR%%/images/clabel3.png
-%%DATADIR%%/images/clabel4.png
-%%DATADIR%%/images/clabel5.png
-%%DATADIR%%/images/closedhand.png
-%%DATADIR%%/images/colour.png
-%%DATADIR%%/images/crop-auto.png
-%%DATADIR%%/images/crop.png
-%%DATADIR%%/images/cross.png
-%%DATADIR%%/images/crossed-arrows-out.png
-%%DATADIR%%/images/curveType-controlPoints.png
-%%DATADIR%%/images/curveType-flatLinear.png
-%%DATADIR%%/images/curveType-linear.png
-%%DATADIR%%/images/curveType-NURBS.png
-%%DATADIR%%/images/curveType-parametric.png
-%%DATADIR%%/images/curveType-spline.png
-%%DATADIR%%/images/curveType-unchanged.png
-%%DATADIR%%/images/Dark/actions/adj-black.png
-%%DATADIR%%/images/Dark/actions/adj-white.png
-%%DATADIR%%/images/Dark/actions/ajd-ca-blue1.png
-%%DATADIR%%/images/Dark/actions/ajd-ca-blue2.png
-%%DATADIR%%/images/Dark/actions/ajd-ca-red1.png
-%%DATADIR%%/images/Dark/actions/ajd-ca-red2.png
-%%DATADIR%%/images/Dark/actions/ajd-wb-bluered1.png
-%%DATADIR%%/images/Dark/actions/ajd-wb-bluered2.png
-%%DATADIR%%/images/Dark/actions/ajd-wb-green1.png
-%%DATADIR%%/images/Dark/actions/ajd-wb-green2.png
-%%DATADIR%%/images/Dark/actions/ajd-wb-temp1.png
-%%DATADIR%%/images/Dark/actions/ajd-wb-temp2.png
-%%DATADIR%%/images/Dark/actions/arrow-down-small.png
-%%DATADIR%%/images/Dark/actions/arrow-down.png
-%%DATADIR%%/images/Dark/actions/arrow-left-small.png
-%%DATADIR%%/images/Dark/actions/arrow-left.png
-%%DATADIR%%/images/Dark/actions/arrow-right-small.png
-%%DATADIR%%/images/Dark/actions/arrow-right.png
-%%DATADIR%%/images/Dark/actions/arrow-up-small.png
-%%DATADIR%%/images/Dark/actions/arrow-up.png
-%%DATADIR%%/images/Dark/actions/atom.png
-%%DATADIR%%/images/Dark/actions/beforeafter.png
-%%DATADIR%%/images/Dark/actions/cglabel0.png
-%%DATADIR%%/images/Dark/actions/cglabel1.png
-%%DATADIR%%/images/Dark/actions/cglabel2.png
-%%DATADIR%%/images/Dark/actions/cglabel3.png
-%%DATADIR%%/images/Dark/actions/cglabel4.png
-%%DATADIR%%/images/Dark/actions/cglabel5.png
-%%DATADIR%%/images/Dark/actions/Chanmixer-Bgamma.png
-%%DATADIR%%/images/Dark/actions/Chanmixer-Ggamma.png
-%%DATADIR%%/images/Dark/actions/Chanmixer-Rgamma.png
-%%DATADIR%%/images/Dark/actions/clabel0.png
-%%DATADIR%%/images/Dark/actions/clabel1.png
-%%DATADIR%%/images/Dark/actions/clabel2.png
-%%DATADIR%%/images/Dark/actions/clabel3.png
-%%DATADIR%%/images/Dark/actions/clabel4.png
-%%DATADIR%%/images/Dark/actions/clabel5.png
-%%DATADIR%%/images/Dark/actions/closedhand.png
-%%DATADIR%%/images/Dark/actions/colorPickers-hide.png
-%%DATADIR%%/images/Dark/actions/colorPickers-show.png
-%%DATADIR%%/images/Dark/actions/colour.png
-%%DATADIR%%/images/Dark/actions/crop-auto.png
-%%DATADIR%%/images/Dark/actions/crop.png
-%%DATADIR%%/images/Dark/actions/crossed-arrows-in.png
-%%DATADIR%%/images/Dark/actions/crossed-arrows-out.png
-%%DATADIR%%/images/Dark/actions/curveType-controlPoints.png
-%%DATADIR%%/images/Dark/actions/curveType-flatLinear.png
-%%DATADIR%%/images/Dark/actions/curveType-linear.png
-%%DATADIR%%/images/Dark/actions/curveType-NURBS.png
-%%DATADIR%%/images/Dark/actions/curveType-parametric.png
-%%DATADIR%%/images/Dark/actions/curveType-spline.png
-%%DATADIR%%/images/Dark/actions/detail.png
-%%DATADIR%%/images/Dark/actions/distorsion.png
-%%DATADIR%%/images/Dark/actions/distortion-auto.png
-%%DATADIR%%/images/Dark/actions/distortion-barrel.png
-%%DATADIR%%/images/Dark/actions/distortion-pincushion.png
-%%DATADIR%%/images/Dark/actions/document-open-recent.png
-%%DATADIR%%/images/Dark/actions/document-open.png
-%%DATADIR%%/images/Dark/actions/edit-copy.png
-%%DATADIR%%/images/Dark/actions/edit-find.png
-%%DATADIR%%/images/Dark/actions/edit-paste.png
-%%DATADIR%%/images/Dark/actions/edited-small.png
-%%DATADIR%%/images/Dark/actions/edited.png
-%%DATADIR%%/images/Dark/actions/editedg-small.png
-%%DATADIR%%/images/Dark/actions/editednot-small.png
-%%DATADIR%%/images/Dark/actions/editednotg-small.png
-%%DATADIR%%/images/Dark/actions/editmodehand.png
-%%DATADIR%%/images/Dark/actions/equalizer-narrow.png
-%%DATADIR%%/images/Dark/actions/equalizer-wide.png
-%%DATADIR%%/images/Dark/actions/expanderClosed.png
-%%DATADIR%%/images/Dark/actions/expanderDisabled.png
-%%DATADIR%%/images/Dark/actions/expanderEnabled.png
-%%DATADIR%%/images/Dark/actions/expanderInconsistent.png
-%%DATADIR%%/images/Dark/actions/expanderOpened.png
-%%DATADIR%%/images/Dark/actions/exposure.png
-%%DATADIR%%/images/Dark/actions/filter-original-1.png
-%%DATADIR%%/images/Dark/actions/filter-original-2.png
-%%DATADIR%%/images/Dark/actions/filter.png
-%%DATADIR%%/images/Dark/actions/filterclear.png
-%%DATADIR%%/images/Dark/actions/fullscreen-exit.png
-%%DATADIR%%/images/Dark/actions/fullscreen.png
-%%DATADIR%%/images/Dark/actions/gamut-hist.png
-%%DATADIR%%/images/Dark/actions/gamut-softproof.png
-%%DATADIR%%/images/Dark/actions/gamut-warning.png
-%%DATADIR%%/images/Dark/actions/grayrated.png
-%%DATADIR%%/images/Dark/actions/gtk-add.png
-%%DATADIR%%/images/Dark/actions/gtk-apply.png
-%%DATADIR%%/images/Dark/actions/gtk-cancel.png
-%%DATADIR%%/images/Dark/actions/gtk-close-small.png
-%%DATADIR%%/images/Dark/actions/gtk-close.png
-%%DATADIR%%/images/Dark/actions/gtk-color-picker-add.png
-%%DATADIR%%/images/Dark/actions/gtk-color-picker-small.png
-%%DATADIR%%/images/Dark/actions/gtk-color-picker.png
-%%DATADIR%%/images/Dark/actions/gtk-copy.png
-%%DATADIR%%/images/Dark/actions/gtk-edit.png
-%%DATADIR%%/images/Dark/actions/gtk-find.png
-%%DATADIR%%/images/Dark/actions/gtk-media-play.png
-%%DATADIR%%/images/Dark/actions/gtk-media-stop.png
-%%DATADIR%%/images/Dark/actions/gtk-ok.png
-%%DATADIR%%/images/Dark/actions/gtk-open.png
-%%DATADIR%%/images/Dark/actions/gtk-paste.png
-%%DATADIR%%/images/Dark/actions/gtk-preferences.png
-%%DATADIR%%/images/Dark/actions/gtk-remove.png
-%%DATADIR%%/images/Dark/actions/gtk-save-large.png
-%%DATADIR%%/images/Dark/actions/gtk-save.png
-%%DATADIR%%/images/Dark/actions/gtk-undo-ltr-small.png
-%%DATADIR%%/images/Dark/actions/gtk-undo-ltr.png
-%%DATADIR%%/images/Dark/actions/gtk-undo-rtl-small.png
-%%DATADIR%%/images/Dark/actions/gtk-undo-rtl.png
-%%DATADIR%%/images/Dark/actions/gtk-undoall-ltr.png
-%%DATADIR%%/images/Dark/actions/gtk-undoall-rtl.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-100-small.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-100.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-crop.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-fit.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-in-small.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-in.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-out-small.png
-%%DATADIR%%/images/Dark/actions/gtk-zoom-out.png
-%%DATADIR%%/images/Dark/actions/HDR-thumbnail.png
-%%DATADIR%%/images/Dark/actions/histBar.png
-%%DATADIR%%/images/Dark/actions/histBarg.png
-%%DATADIR%%/images/Dark/actions/histBlue.png
-%%DATADIR%%/images/Dark/actions/histBlueg.png
-%%DATADIR%%/images/Dark/actions/histChro.png
-%%DATADIR%%/images/Dark/actions/histChrog.png
-%%DATADIR%%/images/Dark/actions/histFull.png
-%%DATADIR%%/images/Dark/actions/histFullg.png
-%%DATADIR%%/images/Dark/actions/histGreen.png
-%%DATADIR%%/images/Dark/actions/histGreeng.png
-%%DATADIR%%/images/Dark/actions/histRaw.png
-%%DATADIR%%/images/Dark/actions/histRawg.png
-%%DATADIR%%/images/Dark/actions/histRed.png
-%%DATADIR%%/images/Dark/actions/histRedg.png
-%%DATADIR%%/images/Dark/actions/histValue.png
-%%DATADIR%%/images/Dark/actions/histValueg.png
-%%DATADIR%%/images/Dark/actions/image-editor.png
-%%DATADIR%%/images/Dark/actions/info.png
-%%DATADIR%%/images/Dark/actions/intent-absolute.png
-%%DATADIR%%/images/Dark/actions/intent-perceptual.png
-%%DATADIR%%/images/Dark/actions/intent-relative.png
-%%DATADIR%%/images/Dark/actions/intent-saturation.png
-%%DATADIR%%/images/Dark/actions/list-add-small.png
-%%DATADIR%%/images/Dark/actions/list-add.png
-%%DATADIR%%/images/Dark/actions/list-remove-red-small.png
-%%DATADIR%%/images/Dark/actions/list-remove.png
-%%DATADIR%%/images/Dark/actions/lock-off.png
-%%DATADIR%%/images/Dark/actions/lock-on.png
-%%DATADIR%%/images/Dark/actions/media-usb.png
-%%DATADIR%%/images/Dark/actions/meta.png
-%%DATADIR%%/images/Dark/actions/nav-next.png
-%%DATADIR%%/images/Dark/actions/nav-prev.png
-%%DATADIR%%/images/Dark/actions/nav-sync.png
-%%DATADIR%%/images/Dark/actions/new-detail-window.png
-%%DATADIR%%/images/Dark/actions/openhand.png
-%%DATADIR%%/images/Dark/actions/panel-to-bottom.png
-%%DATADIR%%/images/Dark/actions/panel-to-left.png
-%%DATADIR%%/images/Dark/actions/panel-to-right.png
-%%DATADIR%%/images/Dark/actions/panel-to-top.png
-%%DATADIR%%/images/Dark/actions/PanelEnding.png
-%%DATADIR%%/images/Dark/actions/perspective-h1.png
-%%DATADIR%%/images/Dark/actions/perspective-h2.png
-%%DATADIR%%/images/Dark/actions/perspective-v1.png
-%%DATADIR%%/images/Dark/actions/perspective-v2.png
-%%DATADIR%%/images/Dark/actions/PixelShift-thumbnail.png
-%%DATADIR%%/images/Dark/actions/popuparrow.png
-%%DATADIR%%/images/Dark/actions/previewmodeB-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeB-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC0-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC0-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC1-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC1-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC2-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC2-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC3-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeBC3-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeF-focusScreen-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeF-focusScreen-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeF-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeF-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeG-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeG-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeL-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeL-on.png
-%%DATADIR%%/images/Dark/actions/previewmodeR-off.png
-%%DATADIR%%/images/Dark/actions/previewmodeR-on.png
-%%DATADIR%%/images/Dark/actions/processing-pause.png
-%%DATADIR%%/images/Dark/actions/processing-play.png
-%%DATADIR%%/images/Dark/actions/processing-thumbnail.png
-%%DATADIR%%/images/Dark/actions/processing.png
-%%DATADIR%%/images/Dark/actions/profile-filled.png
-%%DATADIR%%/images/Dark/actions/profile-partial.png
-%%DATADIR%%/images/Dark/actions/rated.png
-%%DATADIR%%/images/Dark/actions/ratednot.png
-%%DATADIR%%/images/Dark/actions/ratednotg.png
-%%DATADIR%%/images/Dark/actions/raw.png
-%%DATADIR%%/images/Dark/actions/refresh-red.png
-%%DATADIR%%/images/Dark/actions/refresh-white.png
-%%DATADIR%%/images/Dark/actions/rotate-left-1.png
-%%DATADIR%%/images/Dark/actions/rotate-left-2.png
-%%DATADIR%%/images/Dark/actions/rotate-left-3.png
-%%DATADIR%%/images/Dark/actions/rotate-left.png
-%%DATADIR%%/images/Dark/actions/rotate-right-1.png
-%%DATADIR%%/images/Dark/actions/rotate-right-2.png
-%%DATADIR%%/images/Dark/actions/rotate-right-3.png
-%%DATADIR%%/images/Dark/actions/rotate-right.png
-%%DATADIR%%/images/Dark/actions/rtwindow.png
-%%DATADIR%%/images/Dark/actions/softProof.png
-%%DATADIR%%/images/Dark/actions/spGamutCheck.png
-%%DATADIR%%/images/Dark/actions/stock-flip-horizontal.png
-%%DATADIR%%/images/Dark/actions/stock-flip-vertical.png
-%%DATADIR%%/images/Dark/actions/stock-rotate-270.png
-%%DATADIR%%/images/Dark/actions/stock-rotate-90.png
-%%DATADIR%%/images/Dark/actions/straighten-small.png
-%%DATADIR%%/images/Dark/actions/straighten.png
-%%DATADIR%%/images/Dark/actions/toleftend.png
-%%DATADIR%%/images/Dark/actions/torightend.png
-%%DATADIR%%/images/Dark/actions/transform.png
-%%DATADIR%%/images/Dark/actions/trash-hide-deleted.png
-%%DATADIR%%/images/Dark/actions/trash-show-empty.png
-%%DATADIR%%/images/Dark/actions/trash-show-full.png
-%%DATADIR%%/images/Dark/actions/trash-thumbnail.png
-%%DATADIR%%/images/Dark/actions/trash.png
-%%DATADIR%%/images/Dark/actions/unchanged-18.png
-%%DATADIR%%/images/Dark/actions/unchanged-22.png
-%%DATADIR%%/images/Dark/actions/undelete-rtl.png
-%%DATADIR%%/images/Dark/actions/undelete-thumbnail-rtl.png
-%%DATADIR%%/images/Dark/actions/undelete-thumbnail.png
-%%DATADIR%%/images/Dark/actions/undelete.png
-%%DATADIR%%/images/Dark/actions/warnhl.png
-%%DATADIR%%/images/Dark/actions/warnsh.png
-%%DATADIR%%/images/Dark/actions/wavelet.png
-%%DATADIR%%/images/Dark/actions/wb-auto.png
-%%DATADIR%%/images/Dark/actions/wb-camera.png
-%%DATADIR%%/images/Dark/actions/wb-cloudy.png
-%%DATADIR%%/images/Dark/actions/wb-custom.png
-%%DATADIR%%/images/Dark/actions/wb-flash.png
-%%DATADIR%%/images/Dark/actions/wb-fluorescent.png
-%%DATADIR%%/images/Dark/actions/wb-lamp.png
-%%DATADIR%%/images/Dark/actions/wb-led.png
-%%DATADIR%%/images/Dark/actions/wb-shade.png
-%%DATADIR%%/images/Dark/actions/wb-sun.png
-%%DATADIR%%/images/Dark/actions/wb-tungsten.png
-%%DATADIR%%/images/Dark/actions/wb-water.png
-%%DATADIR%%/images/Dark/actions/zoom-100-identifier.png
-%%DATADIR%%/images/Dark/devices/computer.png
-%%DATADIR%%/images/Dark/devices/drive-harddisk.png
-%%DATADIR%%/images/Dark/devices/drive-optical.png
-%%DATADIR%%/images/Dark/devices/drive-removable-media.png
-%%DATADIR%%/images/Dark/devices/gtk-cdrom.png
-%%DATADIR%%/images/Dark/devices/media-flash.png
-%%DATADIR%%/images/Dark/devices/media-floppy.png
-%%DATADIR%%/images/Dark/devices/media-optical-bd.png
-%%DATADIR%%/images/Dark/devices/media-optical-dvd.png
-%%DATADIR%%/images/Dark/devices/media-optical.png
-%%DATADIR%%/images/Dark/devices/media-tape.png
-%%DATADIR%%/images/Dark/index.theme
-%%DATADIR%%/images/Dark/places/folder.png
-%%DATADIR%%/images/Dark/places/gtk-directory.png
-%%DATADIR%%/images/Dark/places/user-desktop.png
-%%DATADIR%%/images/Dark/places/user-home.png
-%%DATADIR%%/images/default-settings-ltr.png
-%%DATADIR%%/images/default-settings-rtl.png
-%%DATADIR%%/images/detail.png
-%%DATADIR%%/images/distortion-auto.png
-%%DATADIR%%/images/distortion.png
-%%DATADIR%%/images/edited-small.png
-%%DATADIR%%/images/edited.png
-%%DATADIR%%/images/editedg-small.png
-%%DATADIR%%/images/editednot-small.png
-%%DATADIR%%/images/editednotg-small.png
+%%DATADIR%%/iccprofiles/output/RTv2_ACES-AP0.icc
+%%DATADIR%%/iccprofiles/output/RTv2_ACES-AP1.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Best.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Beta.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Bruce.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Large.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Medium.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Rec2020.icc
+%%DATADIR%%/iccprofiles/output/RTv2_sRGB.icc
+%%DATADIR%%/iccprofiles/output/RTv2_Wide.icc
+%%DATADIR%%/iccprofiles/output/RTv4_ACES-AP0.icc
+%%DATADIR%%/iccprofiles/output/RTv4_ACES-AP1.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Best.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Beta.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Bruce.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Large.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Medium.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Rec2020.icc
+%%DATADIR%%/iccprofiles/output/RTv4_sRGB.icc
+%%DATADIR%%/iccprofiles/output/RTv4_Wide.icc
+%%DATADIR%%/images/dark/add-small.png
+%%DATADIR%%/images/dark/add.png
+%%DATADIR%%/images/dark/aperture.png
+%%DATADIR%%/images/dark/arrow-down-small.png
+%%DATADIR%%/images/dark/arrow-left-small.png
+%%DATADIR%%/images/dark/arrow-right-small.png
+%%DATADIR%%/images/dark/arrow-up-small.png
+%%DATADIR%%/images/dark/arrow-updown.png
+%%DATADIR%%/images/dark/arrow2-left.png
+%%DATADIR%%/images/dark/arrow2-right.png
+%%DATADIR%%/images/dark/atom.png
+%%DATADIR%%/images/dark/bayer.png
+%%DATADIR%%/images/dark/beforeafter.png
+%%DATADIR%%/images/dark/cancel-small.png
+%%DATADIR%%/images/dark/cancel.png
+%%DATADIR%%/images/dark/circle-black-small.png
+%%DATADIR%%/images/dark/circle-blue-green-small.png
+%%DATADIR%%/images/dark/circle-blue-red-small.png
+%%DATADIR%%/images/dark/circle-blue-small.png
+%%DATADIR%%/images/dark/circle-blue-yellow-small.png
+%%DATADIR%%/images/dark/circle-cyan-red-small.png
+%%DATADIR%%/images/dark/circle-cyan-small.png
+%%DATADIR%%/images/dark/circle-darkgray-small.png
+%%DATADIR%%/images/dark/circle-empty-blue-small.png
+%%DATADIR%%/images/dark/circle-empty-darkgray-small.png
+%%DATADIR%%/images/dark/circle-empty-gray-small.png
+%%DATADIR%%/images/dark/circle-empty-green-small.png
+%%DATADIR%%/images/dark/circle-empty-purple-small.png
+%%DATADIR%%/images/dark/circle-empty-red-small.png
+%%DATADIR%%/images/dark/circle-empty-yellow-small.png
+%%DATADIR%%/images/dark/circle-gray-blue-small.png
+%%DATADIR%%/images/dark/circle-gray-green-small.png
+%%DATADIR%%/images/dark/circle-gray-red-small.png
+%%DATADIR%%/images/dark/circle-gray-small.png
+%%DATADIR%%/images/dark/circle-green-blue-small.png
+%%DATADIR%%/images/dark/circle-green-red-small.png
+%%DATADIR%%/images/dark/circle-green-small.png
+%%DATADIR%%/images/dark/circle-magenta-small.png
+%%DATADIR%%/images/dark/circle-orange-small.png
+%%DATADIR%%/images/dark/circle-purple-small.png
+%%DATADIR%%/images/dark/circle-red-blue-small.png
+%%DATADIR%%/images/dark/circle-red-cyan-small.png
+%%DATADIR%%/images/dark/circle-red-green-small.png
+%%DATADIR%%/images/dark/circle-red-small.png
+%%DATADIR%%/images/dark/circle-white-small.png
+%%DATADIR%%/images/dark/circle-yellow-blue-small.png
+%%DATADIR%%/images/dark/circle-yellow-small.png
+%%DATADIR%%/images/dark/color-circles.png
+%%DATADIR%%/images/dark/color-picker-add-hicontrast.png
+%%DATADIR%%/images/dark/color-picker-add.png
+%%DATADIR%%/images/dark/color-picker-bars.png
+%%DATADIR%%/images/dark/color-picker-hicontrast.png
+%%DATADIR%%/images/dark/color-picker-hide.png
+%%DATADIR%%/images/dark/color-picker-small.png
+%%DATADIR%%/images/dark/color-picker.png
+%%DATADIR%%/images/dark/contrastmask-off.png
+%%DATADIR%%/images/dark/contrastmask-on.png
+%%DATADIR%%/images/dark/copy.png
+%%DATADIR%%/images/dark/crop-auto-small.png
+%%DATADIR%%/images/dark/crop-auto.png
+%%DATADIR%%/images/dark/crop-point-hicontrast.png
+%%DATADIR%%/images/dark/crop-small.png
+%%DATADIR%%/images/dark/crop.png
+%%DATADIR%%/images/dark/crossed-arrows-in.png
+%%DATADIR%%/images/dark/crossed-arrows-out.png
+%%DATADIR%%/images/dark/crosshair-adjust.png
+%%DATADIR%%/images/dark/crosshair-hicontrast.png
+%%DATADIR%%/images/dark/crosshair-node-curve.png
+%%DATADIR%%/images/dark/crosshair-small.png
+%%DATADIR%%/images/dark/curve-catmullrom-small.png
+%%DATADIR%%/images/dark/curve-catmullrom.png
+%%DATADIR%%/images/dark/curve-controlpoints-small.png
+%%DATADIR%%/images/dark/curve-controlpoints.png
+%%DATADIR%%/images/dark/curve-flat-small.png
+%%DATADIR%%/images/dark/curve-flat.png
+%%DATADIR%%/images/dark/curve-linear-small.png
+%%DATADIR%%/images/dark/curve-linear.png
+%%DATADIR%%/images/dark/curve-nurbs-small.png
+%%DATADIR%%/images/dark/curve-nurbs.png
+%%DATADIR%%/images/dark/curve-parametric-small.png
+%%DATADIR%%/images/dark/curve-parametric.png
+%%DATADIR%%/images/dark/curve-spline-small.png
+%%DATADIR%%/images/dark/curve-spline.png
+%%DATADIR%%/images/dark/detail.png
+%%DATADIR%%/images/dark/device-floppy.png
+%%DATADIR%%/images/dark/device-hdd.png
+%%DATADIR%%/images/dark/device-network.png
+%%DATADIR%%/images/dark/device-optical.png
+%%DATADIR%%/images/dark/device-usb.png
+%%DATADIR%%/images/dark/distortion-auto-small.png
+%%DATADIR%%/images/dark/distortion-auto.png
+%%DATADIR%%/images/dark/distortion-barrel-small.png
+%%DATADIR%%/images/dark/distortion-barrel.png
+%%DATADIR%%/images/dark/distortion-pincushion-small.png
+%%DATADIR%%/images/dark/distortion-pincushion.png
+%%DATADIR%%/images/dark/edit-point.png
+%%DATADIR%%/images/dark/equilizer-narrow.png
+%%DATADIR%%/images/dark/equilizer-wide.png
+%%DATADIR%%/images/dark/expander-closed-small.png
+%%DATADIR%%/images/dark/expander-open-small.png
+%%DATADIR%%/images/dark/exposure.png
+%%DATADIR%%/images/dark/filetype-hdr.png
+%%DATADIR%%/images/dark/filetype-ps.png
+%%DATADIR%%/images/dark/filter-clear.png
+%%DATADIR%%/images/dark/filter-original.png
+%%DATADIR%%/images/dark/filter-original2.png
+%%DATADIR%%/images/dark/filter.png
+%%DATADIR%%/images/dark/flip-horizontal.png
+%%DATADIR%%/images/dark/flip-vertical.png
+%%DATADIR%%/images/dark/focusscreen-off.png
+%%DATADIR%%/images/dark/focusscreen-on.png
+%%DATADIR%%/images/dark/folder-closed-home-small.png
+%%DATADIR%%/images/dark/folder-closed-home.png
+%%DATADIR%%/images/dark/folder-closed-recent-small.png
+%%DATADIR%%/images/dark/folder-closed-recent.png
+%%DATADIR%%/images/dark/folder-closed-small.png
+%%DATADIR%%/images/dark/folder-closed.png
+%%DATADIR%%/images/dark/folder-open-recent-small.png
+%%DATADIR%%/images/dark/folder-open-recent.png
+%%DATADIR%%/images/dark/folder-open-small.png
+%%DATADIR%%/images/dark/folder-open.png
+%%DATADIR%%/images/dark/fullscreen-enter.png
+%%DATADIR%%/images/dark/fullscreen-leave.png
+%%DATADIR%%/images/dark/gamut-hist.png
+%%DATADIR%%/images/dark/gamut-plus.png
+%%DATADIR%%/images/dark/gamut-softproof.png
+%%DATADIR%%/images/dark/gamut-warning.png
+%%DATADIR%%/images/dark/gamut_srgb_prophoto_xy.png
+%%DATADIR%%/images/dark/gears-pause.png
+%%DATADIR%%/images/dark/gears-play.png
+%%DATADIR%%/images/dark/gears-small.png
+%%DATADIR%%/images/dark/gears.png
+%%DATADIR%%/images/dark/goto-end-small.png
+%%DATADIR%%/images/dark/goto-start-small.png
+%%DATADIR%%/images/dark/hand-closed-hicontrast.png
+%%DATADIR%%/images/dark/hand-open-hicontrast.png
+%%DATADIR%%/images/dark/hand-open.png
+%%DATADIR%%/images/dark/histogram-bar-off-small.png
+%%DATADIR%%/images/dark/histogram-bar-on-small.png
+%%DATADIR%%/images/dark/histogram-bayer-off-small.png
+%%DATADIR%%/images/dark/histogram-bayer-on-small.png
+%%DATADIR%%/images/dark/histogram-blue-off-small.png
+%%DATADIR%%/images/dark/histogram-blue-on-small.png
+%%DATADIR%%/images/dark/histogram-gold-off-small.png
+%%DATADIR%%/images/dark/histogram-gold-on-small.png
+%%DATADIR%%/images/dark/histogram-green-off-small.png
+%%DATADIR%%/images/dark/histogram-green-on-small.png
+%%DATADIR%%/images/dark/histogram-mode-linear-small.png
+%%DATADIR%%/images/dark/histogram-mode-logx-small.png
+%%DATADIR%%/images/dark/histogram-mode-logxy-small.png
+%%DATADIR%%/images/dark/histogram-red-off-small.png
+%%DATADIR%%/images/dark/histogram-red-on-small.png
+%%DATADIR%%/images/dark/histogram-silver-off-small.png
+%%DATADIR%%/images/dark/histogram-silver-on-small.png
+%%DATADIR%%/images/dark/info.png
+%%DATADIR%%/images/dark/intent-absolute.png
+%%DATADIR%%/images/dark/intent-perceptual.png
+%%DATADIR%%/images/dark/intent-relative.png
+%%DATADIR%%/images/dark/intent-saturation.png
+%%DATADIR%%/images/dark/magnifier-1to1-small.png
+%%DATADIR%%/images/dark/magnifier-1to1.png
+%%DATADIR%%/images/dark/magnifier-crop.png
+%%DATADIR%%/images/dark/magnifier-fit.png
+%%DATADIR%%/images/dark/magnifier-minus-small.png
+%%DATADIR%%/images/dark/magnifier-minus.png
+%%DATADIR%%/images/dark/magnifier-plus-small.png
+%%DATADIR%%/images/dark/magnifier-plus.png
+%%DATADIR%%/images/dark/magnifier.png
+%%DATADIR%%/images/dark/metadata.png
+%%DATADIR%%/images/dark/node-move-nw-se-hicontrast.png
+%%DATADIR%%/images/dark/node-move-sw-ne-hicontrast.png
+%%DATADIR%%/images/dark/node-move-x-hicontrast.png
+%%DATADIR%%/images/dark/node-move-xy-hicontrast.png
+%%DATADIR%%/images/dark/node-move-y-hicontrast.png
+%%DATADIR%%/images/dark/one-to-one-small.png
+%%DATADIR%%/images/dark/ornament1.png
+%%DATADIR%%/images/dark/padlock-locked-small.png
+%%DATADIR%%/images/dark/padlock-unlocked-small.png
+%%DATADIR%%/images/dark/palette-brush.png
+%%DATADIR%%/images/dark/panel-to-bottom.png
+%%DATADIR%%/images/dark/panel-to-left.png
+%%DATADIR%%/images/dark/panel-to-right.png
+%%DATADIR%%/images/dark/panel-to-top.png
+%%DATADIR%%/images/dark/paste.png
+%%DATADIR%%/images/dark/perspective-horizontal-left-small.png
+%%DATADIR%%/images/dark/perspective-horizontal-left.png
+%%DATADIR%%/images/dark/perspective-horizontal-right-small.png
+%%DATADIR%%/images/dark/perspective-horizontal-right.png
+%%DATADIR%%/images/dark/perspective-vertical-bottom-small.png
+%%DATADIR%%/images/dark/perspective-vertical-bottom.png
+%%DATADIR%%/images/dark/perspective-vertical-top-small.png
+%%DATADIR%%/images/dark/perspective-vertical-top.png
+%%DATADIR%%/images/dark/power-inconsistent-small.png
+%%DATADIR%%/images/dark/power-off-small.png
+%%DATADIR%%/images/dark/power-on-small.png
+%%DATADIR%%/images/dark/preferences.png
+%%DATADIR%%/images/dark/profile-filled.png
+%%DATADIR%%/images/dark/profile-partial.png
+%%DATADIR%%/images/dark/redo-all.png
+%%DATADIR%%/images/dark/redo-small.png
+%%DATADIR%%/images/dark/redo.png
+%%DATADIR%%/images/dark/refresh-red-small.png
+%%DATADIR%%/images/dark/refresh-small.png
+%%DATADIR%%/images/dark/refresh.png
+%%DATADIR%%/images/dark/remove-small.png
+%%DATADIR%%/images/dark/remove.png
+%%DATADIR%%/images/dark/rotate-aroundnode-hicontrast.png
+%%DATADIR%%/images/dark/rotate-aroundnode.png
+%%DATADIR%%/images/dark/rotate-left-90.png
+%%DATADIR%%/images/dark/rotate-left-small.png
+%%DATADIR%%/images/dark/rotate-left.png
+%%DATADIR%%/images/dark/rotate-right-90.png
+%%DATADIR%%/images/dark/rotate-right-small.png
+%%DATADIR%%/images/dark/rotate-right.png
+%%DATADIR%%/images/dark/rotate-straighten-small.png
+%%DATADIR%%/images/dark/rotate-straighten.png
+%%DATADIR%%/images/dark/save-small.png
+%%DATADIR%%/images/dark/save.png
+%%DATADIR%%/images/dark/saved-no-small.png
+%%DATADIR%%/images/dark/saved-yes-small.png
+%%DATADIR%%/images/dark/square-toggle-black-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-black-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-blue-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-blue-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-gray-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-gray-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-green-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-green-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-luminosity-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-luminosity-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-red-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-red-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-theme-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-theme-on-narrow.png
+%%DATADIR%%/images/dark/square-toggle-white-off-narrow.png
+%%DATADIR%%/images/dark/square-toggle-white-on-narrow.png
+%%DATADIR%%/images/dark/star-gold-hollow-narrow.png
+%%DATADIR%%/images/dark/star-gold-hollow-small.png
+%%DATADIR%%/images/dark/star-gold-narrow.png
+%%DATADIR%%/images/dark/star-gold-small.png
+%%DATADIR%%/images/dark/star-hollow-narrow.png
+%%DATADIR%%/images/dark/star-hollow-small.png
+%%DATADIR%%/images/dark/star-narrow.png
+%%DATADIR%%/images/dark/star-small.png
+%%DATADIR%%/images/dark/template-16.png
+%%DATADIR%%/images/dark/template-24.png
+%%DATADIR%%/images/dark/template-narrow.png
+%%DATADIR%%/images/dark/tick-green-hollow-small.png
+%%DATADIR%%/images/dark/tick-green-hollow.png
+%%DATADIR%%/images/dark/tick-green-small.png
+%%DATADIR%%/images/dark/tick-green.png
+%%DATADIR%%/images/dark/tick-hollow-small.png
+%%DATADIR%%/images/dark/tick-small.png
+%%DATADIR%%/images/dark/tick.png
+%%DATADIR%%/images/dark/transform.png
+%%DATADIR%%/images/dark/trash-delete.png
+%%DATADIR%%/images/dark/trash-empty-show.png
+%%DATADIR%%/images/dark/trash-empty.png
+%%DATADIR%%/images/dark/trash-full-show.png
+%%DATADIR%%/images/dark/trash-full.png
+%%DATADIR%%/images/dark/trash-hide-deleted.png
+%%DATADIR%%/images/dark/trash-remove-small.png
+%%DATADIR%%/images/dark/trash-remove.png
+%%DATADIR%%/images/dark/trash-small.png
+%%DATADIR%%/images/dark/undo-all.png
+%%DATADIR%%/images/dark/undo-small.png
+%%DATADIR%%/images/dark/undo.png
+%%DATADIR%%/images/dark/warning-highlights.png
+%%DATADIR%%/images/dark/warning-shadows.png
+%%DATADIR%%/images/dark/warning.png
+%%DATADIR%%/images/dark/wavelets.png
+%%DATADIR%%/images/dark/wb-auto-small.png
+%%DATADIR%%/images/dark/wb-auto.png
+%%DATADIR%%/images/dark/wb-camera-small.png
+%%DATADIR%%/images/dark/wb-camera.png
+%%DATADIR%%/images/dark/wb-cloudy-small.png
+%%DATADIR%%/images/dark/wb-cloudy.png
+%%DATADIR%%/images/dark/wb-custom-small.png
+%%DATADIR%%/images/dark/wb-custom.png
+%%DATADIR%%/images/dark/wb-flash-small.png
+%%DATADIR%%/images/dark/wb-flash.png
+%%DATADIR%%/images/dark/wb-fluorescent-small.png
+%%DATADIR%%/images/dark/wb-fluorescent.png
+%%DATADIR%%/images/dark/wb-lamp-small.png
+%%DATADIR%%/images/dark/wb-lamp.png
+%%DATADIR%%/images/dark/wb-led-small.png
+%%DATADIR%%/images/dark/wb-led.png
+%%DATADIR%%/images/dark/wb-shade-small.png
+%%DATADIR%%/images/dark/wb-shade.png
+%%DATADIR%%/images/dark/wb-sun-small.png
+%%DATADIR%%/images/dark/wb-sun.png
+%%DATADIR%%/images/dark/wb-tungsten-small.png
+%%DATADIR%%/images/dark/wb-tungsten.png
+%%DATADIR%%/images/dark/wb-water-small.png
+%%DATADIR%%/images/dark/wb-water.png
+%%DATADIR%%/images/dark/window-add.png
%%DATADIR%%/images/empty.png
-%%DATADIR%%/images/exposure.png
-%%DATADIR%%/images/filter.png
-%%DATADIR%%/images/filterclear.png
-%%DATADIR%%/images/folder.png
-%%DATADIR%%/images/fullscreen-exit.png
-%%DATADIR%%/images/fullscreen.png
-%%DATADIR%%/images/grayrated.png
-%%DATADIR%%/images/gtk-add.png
-%%DATADIR%%/images/gtk-apply.png
-%%DATADIR%%/images/gtk-close-small.png
-%%DATADIR%%/images/gtk-close.png
-%%DATADIR%%/images/gtk-color-picker-small.png
-%%DATADIR%%/images/gtk-color-picker.png
-%%DATADIR%%/images/gtk-open.png
-%%DATADIR%%/images/gtk-save-large.png
-%%DATADIR%%/images/gtk-undo-ltr.png
-%%DATADIR%%/images/gtk-undo-rtl.png
-%%DATADIR%%/images/gtk-undoall-ltr.png
-%%DATADIR%%/images/gtk-undoall-rtl.png
-%%DATADIR%%/images/gtk-zoom-100.png
-%%DATADIR%%/images/gtk-zoom-fit.png
-%%DATADIR%%/images/gtk-zoom-in.png
-%%DATADIR%%/images/gtk-zoom-out.png
-%%DATADIR%%/images/histBar.png
-%%DATADIR%%/images/histBlue.png
-%%DATADIR%%/images/histGreen.png
-%%DATADIR%%/images/histRaw.png
-%%DATADIR%%/images/histRed.png
-%%DATADIR%%/images/histValue.png
-%%DATADIR%%/images/image-editor.png
-%%DATADIR%%/images/info.png
-%%DATADIR%%/images/Light/actions/adj-black.png
-%%DATADIR%%/images/Light/actions/adj-white.png
-%%DATADIR%%/images/Light/actions/ajd-ca-blue1.png
-%%DATADIR%%/images/Light/actions/ajd-ca-blue2.png
-%%DATADIR%%/images/Light/actions/ajd-ca-red1.png
-%%DATADIR%%/images/Light/actions/ajd-ca-red2.png
-%%DATADIR%%/images/Light/actions/ajd-wb-bluered1.png
-%%DATADIR%%/images/Light/actions/ajd-wb-bluered2.png
-%%DATADIR%%/images/Light/actions/ajd-wb-green1.png
-%%DATADIR%%/images/Light/actions/ajd-wb-green2.png
-%%DATADIR%%/images/Light/actions/ajd-wb-temp1.png
-%%DATADIR%%/images/Light/actions/ajd-wb-temp2.png
-%%DATADIR%%/images/Light/actions/arrow-down-small.png
-%%DATADIR%%/images/Light/actions/arrow-down.png
-%%DATADIR%%/images/Light/actions/arrow-left-small.png
-%%DATADIR%%/images/Light/actions/arrow-left.png
-%%DATADIR%%/images/Light/actions/arrow-right-small.png
-%%DATADIR%%/images/Light/actions/arrow-right.png
-%%DATADIR%%/images/Light/actions/arrow-up-small.png
-%%DATADIR%%/images/Light/actions/arrow-up.png
-%%DATADIR%%/images/Light/actions/atom.png
-%%DATADIR%%/images/Light/actions/beforeafter.png
-%%DATADIR%%/images/Light/actions/cglabel0.png
-%%DATADIR%%/images/Light/actions/cglabel1.png
-%%DATADIR%%/images/Light/actions/cglabel2.png
-%%DATADIR%%/images/Light/actions/cglabel3.png
-%%DATADIR%%/images/Light/actions/cglabel4.png
-%%DATADIR%%/images/Light/actions/cglabel5.png
-%%DATADIR%%/images/Light/actions/Chanmixer-Bgamma.png
-%%DATADIR%%/images/Light/actions/Chanmixer-Ggamma.png
-%%DATADIR%%/images/Light/actions/Chanmixer-Rgamma.png
-%%DATADIR%%/images/Light/actions/clabel0.png
-%%DATADIR%%/images/Light/actions/clabel1.png
-%%DATADIR%%/images/Light/actions/clabel2.png
-%%DATADIR%%/images/Light/actions/clabel3.png
-%%DATADIR%%/images/Light/actions/clabel4.png
-%%DATADIR%%/images/Light/actions/clabel5.png
-%%DATADIR%%/images/Light/actions/closedhand.png
-%%DATADIR%%/images/Light/actions/colorPickers-hide.png
-%%DATADIR%%/images/Light/actions/colorPickers-show.png
-%%DATADIR%%/images/Light/actions/colour.png
-%%DATADIR%%/images/Light/actions/crop-auto.png
-%%DATADIR%%/images/Light/actions/crop.png
-%%DATADIR%%/images/Light/actions/crossed-arrows-in.png
-%%DATADIR%%/images/Light/actions/crossed-arrows-out.png
-%%DATADIR%%/images/Light/actions/curveType-controlPoints.png
-%%DATADIR%%/images/Light/actions/curveType-flatLinear.png
-%%DATADIR%%/images/Light/actions/curveType-linear.png
-%%DATADIR%%/images/Light/actions/curveType-NURBS.png
-%%DATADIR%%/images/Light/actions/curveType-parametric.png
-%%DATADIR%%/images/Light/actions/curveType-spline.png
-%%DATADIR%%/images/Light/actions/detail.png
-%%DATADIR%%/images/Light/actions/distorsion.png
-%%DATADIR%%/images/Light/actions/distortion-auto.png
-%%DATADIR%%/images/Light/actions/distortion-barrel.png
-%%DATADIR%%/images/Light/actions/distortion-pincushion.png
-%%DATADIR%%/images/Light/actions/document-open-recent.png
-%%DATADIR%%/images/Light/actions/document-open.png
-%%DATADIR%%/images/Light/actions/edit-copy.png
-%%DATADIR%%/images/Light/actions/edit-find.png
-%%DATADIR%%/images/Light/actions/edit-paste.png
-%%DATADIR%%/images/Light/actions/edited-small.png
-%%DATADIR%%/images/Light/actions/edited.png
-%%DATADIR%%/images/Light/actions/editedg-small.png
-%%DATADIR%%/images/Light/actions/editednot-small.png
-%%DATADIR%%/images/Light/actions/editednotg-small.png
-%%DATADIR%%/images/Light/actions/editmodehand.png
-%%DATADIR%%/images/Light/actions/equalizer-narrow.png
-%%DATADIR%%/images/Light/actions/equalizer-wide.png
-%%DATADIR%%/images/Light/actions/expanderClosed.png
-%%DATADIR%%/images/Light/actions/expanderDisabled.png
-%%DATADIR%%/images/Light/actions/expanderEnabled.png
-%%DATADIR%%/images/Light/actions/expanderInconsistent.png
-%%DATADIR%%/images/Light/actions/expanderOpened.png
-%%DATADIR%%/images/Light/actions/exposure.png
-%%DATADIR%%/images/Light/actions/filter-original-1.png
-%%DATADIR%%/images/Light/actions/filter-original-2.png
-%%DATADIR%%/images/Light/actions/filter.png
-%%DATADIR%%/images/Light/actions/filterclear.png
-%%DATADIR%%/images/Light/actions/fullscreen-exit.png
-%%DATADIR%%/images/Light/actions/fullscreen.png
-%%DATADIR%%/images/Light/actions/gamut-hist.png
-%%DATADIR%%/images/Light/actions/gamut-softproof.png
-%%DATADIR%%/images/Light/actions/gamut-warning.png
-%%DATADIR%%/images/Light/actions/grayrated.png
-%%DATADIR%%/images/Light/actions/gtk-add.png
-%%DATADIR%%/images/Light/actions/gtk-apply.png
-%%DATADIR%%/images/Light/actions/gtk-cancel.png
-%%DATADIR%%/images/Light/actions/gtk-close-small.png
-%%DATADIR%%/images/Light/actions/gtk-close.png
-%%DATADIR%%/images/Light/actions/gtk-color-picker-add.png
-%%DATADIR%%/images/Light/actions/gtk-color-picker-small.png
-%%DATADIR%%/images/Light/actions/gtk-color-picker.png
-%%DATADIR%%/images/Light/actions/gtk-copy.png
-%%DATADIR%%/images/Light/actions/gtk-edit.png
-%%DATADIR%%/images/Light/actions/gtk-find.png
-%%DATADIR%%/images/Light/actions/gtk-media-play.png
-%%DATADIR%%/images/Light/actions/gtk-media-stop.png
-%%DATADIR%%/images/Light/actions/gtk-ok.png
-%%DATADIR%%/images/Light/actions/gtk-open.png
-%%DATADIR%%/images/Light/actions/gtk-paste.png
-%%DATADIR%%/images/Light/actions/gtk-preferences.png
-%%DATADIR%%/images/Light/actions/gtk-remove.png
-%%DATADIR%%/images/Light/actions/gtk-save-large.png
-%%DATADIR%%/images/Light/actions/gtk-save.png
-%%DATADIR%%/images/Light/actions/gtk-undo-ltr-small.png
-%%DATADIR%%/images/Light/actions/gtk-undo-ltr.png
-%%DATADIR%%/images/Light/actions/gtk-undo-rtl-small.png
-%%DATADIR%%/images/Light/actions/gtk-undo-rtl.png
-%%DATADIR%%/images/Light/actions/gtk-undoall-ltr.png
-%%DATADIR%%/images/Light/actions/gtk-undoall-rtl.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-100-small.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-100.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-crop.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-fit.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-in-small.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-in.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-out-small.png
-%%DATADIR%%/images/Light/actions/gtk-zoom-out.png
-%%DATADIR%%/images/Light/actions/HDR-thumbnail.png
-%%DATADIR%%/images/Light/actions/histBar.png
-%%DATADIR%%/images/Light/actions/histBarg.png
-%%DATADIR%%/images/Light/actions/histBlue.png
-%%DATADIR%%/images/Light/actions/histBlueg.png
-%%DATADIR%%/images/Light/actions/histChro.png
-%%DATADIR%%/images/Light/actions/histChrog.png
-%%DATADIR%%/images/Light/actions/histFull.png
-%%DATADIR%%/images/Light/actions/histFullg.png
-%%DATADIR%%/images/Light/actions/histGreen.png
-%%DATADIR%%/images/Light/actions/histGreeng.png
-%%DATADIR%%/images/Light/actions/histRaw.png
-%%DATADIR%%/images/Light/actions/histRawg.png
-%%DATADIR%%/images/Light/actions/histRed.png
-%%DATADIR%%/images/Light/actions/histRedg.png
-%%DATADIR%%/images/Light/actions/histValue.png
-%%DATADIR%%/images/Light/actions/histValueg.png
-%%DATADIR%%/images/Light/actions/image-editor.png
-%%DATADIR%%/images/Light/actions/info.png
-%%DATADIR%%/images/Light/actions/intent-absolute.png
-%%DATADIR%%/images/Light/actions/intent-perceptual.png
-%%DATADIR%%/images/Light/actions/intent-relative.png
-%%DATADIR%%/images/Light/actions/intent-saturation.png
-%%DATADIR%%/images/Light/actions/list-add-small.png
-%%DATADIR%%/images/Light/actions/list-add.png
-%%DATADIR%%/images/Light/actions/list-remove-red-small.png
-%%DATADIR%%/images/Light/actions/list-remove.png
-%%DATADIR%%/images/Light/actions/lock-off.png
-%%DATADIR%%/images/Light/actions/lock-on.png
-%%DATADIR%%/images/Light/actions/media-usb.png
-%%DATADIR%%/images/Light/actions/meta.png
-%%DATADIR%%/images/Light/actions/nav-next.png
-%%DATADIR%%/images/Light/actions/nav-prev.png
-%%DATADIR%%/images/Light/actions/nav-sync.png
-%%DATADIR%%/images/Light/actions/new-detail-window.png
-%%DATADIR%%/images/Light/actions/openhand.png
-%%DATADIR%%/images/Light/actions/panel-to-bottom.png
-%%DATADIR%%/images/Light/actions/panel-to-left.png
-%%DATADIR%%/images/Light/actions/panel-to-right.png
-%%DATADIR%%/images/Light/actions/panel-to-top.png
-%%DATADIR%%/images/Light/actions/PanelEnding.png
-%%DATADIR%%/images/Light/actions/perspective-h1.png
-%%DATADIR%%/images/Light/actions/perspective-h2.png
-%%DATADIR%%/images/Light/actions/perspective-v1.png
-%%DATADIR%%/images/Light/actions/perspective-v2.png
-%%DATADIR%%/images/Light/actions/PixelShift-thumbnail.png
-%%DATADIR%%/images/Light/actions/popuparrow.png
-%%DATADIR%%/images/Light/actions/previewmodeB-off.png
-%%DATADIR%%/images/Light/actions/previewmodeB-on.png
-%%DATADIR%%/images/Light/actions/previewmodeBC0-off.png
-%%DATADIR%%/images/Light/actions/previewmodeBC0-on.png
-%%DATADIR%%/images/Light/actions/previewmodeBC1-off.png
-%%DATADIR%%/images/Light/actions/previewmodeBC1-on.png
-%%DATADIR%%/images/Light/actions/previewmodeBC2-off.png
-%%DATADIR%%/images/Light/actions/previewmodeBC2-on.png
-%%DATADIR%%/images/Light/actions/previewmodeBC3-off.png
-%%DATADIR%%/images/Light/actions/previewmodeBC3-on.png
-%%DATADIR%%/images/Light/actions/previewmodeF-focusScreen-off.png
-%%DATADIR%%/images/Light/actions/previewmodeF-focusScreen-on.png
-%%DATADIR%%/images/Light/actions/previewmodeF-off.png
-%%DATADIR%%/images/Light/actions/previewmodeF-on.png
-%%DATADIR%%/images/Light/actions/previewmodeG-off.png
-%%DATADIR%%/images/Light/actions/previewmodeG-on.png
-%%DATADIR%%/images/Light/actions/previewmodeL-off.png
-%%DATADIR%%/images/Light/actions/previewmodeL-on.png
-%%DATADIR%%/images/Light/actions/previewmodeR-off.png
-%%DATADIR%%/images/Light/actions/previewmodeR-on.png
-%%DATADIR%%/images/Light/actions/processing-pause.png
-%%DATADIR%%/images/Light/actions/processing-play.png
-%%DATADIR%%/images/Light/actions/processing-thumbnail.png
-%%DATADIR%%/images/Light/actions/processing.png
-%%DATADIR%%/images/Light/actions/profile-filled.png
-%%DATADIR%%/images/Light/actions/profile-partial.png
-%%DATADIR%%/images/Light/actions/rated.png
-%%DATADIR%%/images/Light/actions/ratednot.png
-%%DATADIR%%/images/Light/actions/ratednotg.png
-%%DATADIR%%/images/Light/actions/raw.png
-%%DATADIR%%/images/Light/actions/refresh-red.png
-%%DATADIR%%/images/Light/actions/refresh-white.png
-%%DATADIR%%/images/Light/actions/rotate-left-1.png
-%%DATADIR%%/images/Light/actions/rotate-left-2.png
-%%DATADIR%%/images/Light/actions/rotate-left-3.png
-%%DATADIR%%/images/Light/actions/rotate-left.png
-%%DATADIR%%/images/Light/actions/rotate-right-1.png
-%%DATADIR%%/images/Light/actions/rotate-right-2.png
-%%DATADIR%%/images/Light/actions/rotate-right-3.png
-%%DATADIR%%/images/Light/actions/rotate-right.png
-%%DATADIR%%/images/Light/actions/rtwindow.png
-%%DATADIR%%/images/Light/actions/softProof.png
-%%DATADIR%%/images/Light/actions/spGamutCheck.png
-%%DATADIR%%/images/Light/actions/stock-flip-horizontal.png
-%%DATADIR%%/images/Light/actions/stock-flip-vertical.png
-%%DATADIR%%/images/Light/actions/stock-rotate-270.png
-%%DATADIR%%/images/Light/actions/stock-rotate-90.png
-%%DATADIR%%/images/Light/actions/straighten-small.png
-%%DATADIR%%/images/Light/actions/straighten.png
-%%DATADIR%%/images/Light/actions/toleftend.png
-%%DATADIR%%/images/Light/actions/torightend.png
-%%DATADIR%%/images/Light/actions/transform.png
-%%DATADIR%%/images/Light/actions/trash-hide-deleted.png
-%%DATADIR%%/images/Light/actions/trash-show-empty.png
-%%DATADIR%%/images/Light/actions/trash-show-full.png
-%%DATADIR%%/images/Light/actions/trash-thumbnail.png
-%%DATADIR%%/images/Light/actions/trash.png
-%%DATADIR%%/images/Light/actions/unchanged-18.png
-%%DATADIR%%/images/Light/actions/unchanged-22.png
-%%DATADIR%%/images/Light/actions/undelete-rtl.png
-%%DATADIR%%/images/Light/actions/undelete-thumbnail-rtl.png
-%%DATADIR%%/images/Light/actions/undelete-thumbnail.png
-%%DATADIR%%/images/Light/actions/undelete.png
-%%DATADIR%%/images/Light/actions/warnhl.png
-%%DATADIR%%/images/Light/actions/warnsh.png
-%%DATADIR%%/images/Light/actions/wavelet.png
-%%DATADIR%%/images/Light/actions/wb-auto.png
-%%DATADIR%%/images/Light/actions/wb-camera.png
-%%DATADIR%%/images/Light/actions/wb-cloudy.png
-%%DATADIR%%/images/Light/actions/wb-custom.png
-%%DATADIR%%/images/Light/actions/wb-flash.png
-%%DATADIR%%/images/Light/actions/wb-fluorescent.png
-%%DATADIR%%/images/Light/actions/wb-lamp.png
-%%DATADIR%%/images/Light/actions/wb-led.png
-%%DATADIR%%/images/Light/actions/wb-shade.png
-%%DATADIR%%/images/Light/actions/wb-sun.png
-%%DATADIR%%/images/Light/actions/wb-tungsten.png
-%%DATADIR%%/images/Light/actions/wb-water.png
-%%DATADIR%%/images/Light/actions/zoom-100-identifier.png
-%%DATADIR%%/images/Light/devices/computer.png
-%%DATADIR%%/images/Light/devices/drive-harddisk.png
-%%DATADIR%%/images/Light/devices/drive-optical.png
-%%DATADIR%%/images/Light/devices/drive-removable-media.png
-%%DATADIR%%/images/Light/devices/gtk-cdrom.png
-%%DATADIR%%/images/Light/devices/media-flash.png
-%%DATADIR%%/images/Light/devices/media-floppy.png
-%%DATADIR%%/images/Light/devices/media-optical-bd.png
-%%DATADIR%%/images/Light/devices/media-optical-dvd.png
-%%DATADIR%%/images/Light/devices/media-optical.png
-%%DATADIR%%/images/Light/devices/media-tape.png
-%%DATADIR%%/images/Light/index.theme
-%%DATADIR%%/images/Light/places/folder.png
-%%DATADIR%%/images/Light/places/gtk-directory.png
-%%DATADIR%%/images/Light/places/user-desktop.png
-%%DATADIR%%/images/Light/places/user-home.png
-%%DATADIR%%/images/list-add-small.png
-%%DATADIR%%/images/list-remove-red-small.png
-%%DATADIR%%/images/list-remove.png
-%%DATADIR%%/images/lock-off.png
-%%DATADIR%%/images/lock-on.png
-%%DATADIR%%/images/logoicon-wind.png
-%%DATADIR%%/images/media-usb.png
-%%DATADIR%%/images/meta.png
-%%DATADIR%%/images/move-1D-h.png
-%%DATADIR%%/images/move-1D-v.png
-%%DATADIR%%/images/move-2D.png
-%%DATADIR%%/images/move-rotate.png
-%%DATADIR%%/images/network.png
-%%DATADIR%%/images/nocolorlabel.png
-%%DATADIR%%/images/notrated.png
-%%DATADIR%%/images/openhand.png
-%%DATADIR%%/images/panel-to-bottom.png
-%%DATADIR%%/images/panel-to-left.png
-%%DATADIR%%/images/panel-to-right.png
-%%DATADIR%%/images/panel-to-top.png
-%%DATADIR%%/images/PanelEnding.png
-%%DATADIR%%/images/popuparrow.png
-%%DATADIR%%/images/processing-pause.png
-%%DATADIR%%/images/processing-play.png
-%%DATADIR%%/images/processing.png
-%%DATADIR%%/images/rated.png
-%%DATADIR%%/images/ratednot.png
-%%DATADIR%%/images/ratednotg.png
-%%DATADIR%%/images/raw.png
-%%DATADIR%%/images/recent-save.png
-%%DATADIR%%/images/refresh-red.png
-%%DATADIR%%/images/refresh-white.png
-%%DATADIR%%/images/resize.png
-%%DATADIR%%/images/rt-logo-large.png
-%%DATADIR%%/images/rt-logo-medium.png
-%%DATADIR%%/images/rt-logo-small.png
-%%DATADIR%%/images/rt-logo-tiny.png
-%%DATADIR%%/images/saved.png
-%%DATADIR%%/images/savedg.png
-%%DATADIR%%/images/savednot.png
-%%DATADIR%%/images/savednotg.png
+%%DATADIR%%/images/light/add-small.png
+%%DATADIR%%/images/light/add.png
+%%DATADIR%%/images/light/aperture.png
+%%DATADIR%%/images/light/arrow-down-small.png
+%%DATADIR%%/images/light/arrow-left-small.png
+%%DATADIR%%/images/light/arrow-right-small.png
+%%DATADIR%%/images/light/arrow-up-small.png
+%%DATADIR%%/images/light/arrow-updown.png
+%%DATADIR%%/images/light/arrow2-left.png
+%%DATADIR%%/images/light/arrow2-right.png
+%%DATADIR%%/images/light/atom.png
+%%DATADIR%%/images/light/bayer.png
+%%DATADIR%%/images/light/beforeafter.png
+%%DATADIR%%/images/light/cancel-small.png
+%%DATADIR%%/images/light/cancel.png
+%%DATADIR%%/images/light/circle-black-small.png
+%%DATADIR%%/images/light/circle-blue-green-small.png
+%%DATADIR%%/images/light/circle-blue-red-small.png
+%%DATADIR%%/images/light/circle-blue-small.png
+%%DATADIR%%/images/light/circle-blue-yellow-small.png
+%%DATADIR%%/images/light/circle-cyan-red-small.png
+%%DATADIR%%/images/light/circle-cyan-small.png
+%%DATADIR%%/images/light/circle-darkgray-small.png
+%%DATADIR%%/images/light/circle-empty-blue-small.png
+%%DATADIR%%/images/light/circle-empty-darkgray-small.png
+%%DATADIR%%/images/light/circle-empty-gray-small.png
+%%DATADIR%%/images/light/circle-empty-green-small.png
+%%DATADIR%%/images/light/circle-empty-purple-small.png
+%%DATADIR%%/images/light/circle-empty-red-small.png
+%%DATADIR%%/images/light/circle-empty-yellow-small.png
+%%DATADIR%%/images/light/circle-gray-blue-small.png
+%%DATADIR%%/images/light/circle-gray-green-small.png
+%%DATADIR%%/images/light/circle-gray-red-small.png
+%%DATADIR%%/images/light/circle-gray-small.png
+%%DATADIR%%/images/light/circle-green-blue-small.png
+%%DATADIR%%/images/light/circle-green-red-small.png
+%%DATADIR%%/images/light/circle-green-small.png
+%%DATADIR%%/images/light/circle-magenta-small.png
+%%DATADIR%%/images/light/circle-orange-small.png
+%%DATADIR%%/images/light/circle-purple-small.png
+%%DATADIR%%/images/light/circle-red-blue-small.png
+%%DATADIR%%/images/light/circle-red-cyan-small.png
+%%DATADIR%%/images/light/circle-red-green-small.png
+%%DATADIR%%/images/light/circle-red-small.png
+%%DATADIR%%/images/light/circle-white-small.png
+%%DATADIR%%/images/light/circle-yellow-blue-small.png
+%%DATADIR%%/images/light/circle-yellow-small.png
+%%DATADIR%%/images/light/color-circles.png
+%%DATADIR%%/images/light/color-picker-add-hicontrast.png
+%%DATADIR%%/images/light/color-picker-add.png
+%%DATADIR%%/images/light/color-picker-bars.png
+%%DATADIR%%/images/light/color-picker-hicontrast.png
+%%DATADIR%%/images/light/color-picker-hide.png
+%%DATADIR%%/images/light/color-picker-small.png
+%%DATADIR%%/images/light/color-picker.png
+%%DATADIR%%/images/light/contrastmask-off.png
+%%DATADIR%%/images/light/contrastmask-on.png
+%%DATADIR%%/images/light/copy.png
+%%DATADIR%%/images/light/crop-auto-small.png
+%%DATADIR%%/images/light/crop-auto.png
+%%DATADIR%%/images/light/crop-point-hicontrast.png
+%%DATADIR%%/images/light/crop-small.png
+%%DATADIR%%/images/light/crop.png
+%%DATADIR%%/images/light/crossed-arrows-in.png
+%%DATADIR%%/images/light/crossed-arrows-out.png
+%%DATADIR%%/images/light/crosshair-adjust.png
+%%DATADIR%%/images/light/crosshair-hicontrast.png
+%%DATADIR%%/images/light/crosshair-node-curve.png
+%%DATADIR%%/images/light/crosshair-small.png
+%%DATADIR%%/images/light/curve-catmullrom-small.png
+%%DATADIR%%/images/light/curve-catmullrom.png
+%%DATADIR%%/images/light/curve-controlpoints-small.png
+%%DATADIR%%/images/light/curve-controlpoints.png
+%%DATADIR%%/images/light/curve-flat-small.png
+%%DATADIR%%/images/light/curve-flat.png
+%%DATADIR%%/images/light/curve-linear-small.png
+%%DATADIR%%/images/light/curve-linear.png
+%%DATADIR%%/images/light/curve-nurbs-small.png
+%%DATADIR%%/images/light/curve-nurbs.png
+%%DATADIR%%/images/light/curve-parametric-small.png
+%%DATADIR%%/images/light/curve-parametric.png
+%%DATADIR%%/images/light/curve-spline-small.png
+%%DATADIR%%/images/light/curve-spline.png
+%%DATADIR%%/images/light/detail.png
+%%DATADIR%%/images/light/device-floppy.png
+%%DATADIR%%/images/light/device-hdd.png
+%%DATADIR%%/images/light/device-network.png
+%%DATADIR%%/images/light/device-optical.png
+%%DATADIR%%/images/light/device-usb.png
+%%DATADIR%%/images/light/distortion-auto-small.png
+%%DATADIR%%/images/light/distortion-auto.png
+%%DATADIR%%/images/light/distortion-barrel-small.png
+%%DATADIR%%/images/light/distortion-barrel.png
+%%DATADIR%%/images/light/distortion-pincushion-small.png
+%%DATADIR%%/images/light/distortion-pincushion.png
+%%DATADIR%%/images/light/edit-point.png
+%%DATADIR%%/images/light/equilizer-narrow.png
+%%DATADIR%%/images/light/equilizer-wide.png
+%%DATADIR%%/images/light/expander-closed-small.png
+%%DATADIR%%/images/light/expander-open-small.png
+%%DATADIR%%/images/light/exposure.png
+%%DATADIR%%/images/light/filetype-hdr.png
+%%DATADIR%%/images/light/filetype-ps.png
+%%DATADIR%%/images/light/filter-clear.png
+%%DATADIR%%/images/light/filter-original.png
+%%DATADIR%%/images/light/filter-original2.png
+%%DATADIR%%/images/light/filter.png
+%%DATADIR%%/images/light/flip-horizontal.png
+%%DATADIR%%/images/light/flip-vertical.png
+%%DATADIR%%/images/light/focusscreen-off.png
+%%DATADIR%%/images/light/focusscreen-on.png
+%%DATADIR%%/images/light/folder-closed-home-small.png
+%%DATADIR%%/images/light/folder-closed-home.png
+%%DATADIR%%/images/light/folder-closed-recent-small.png
+%%DATADIR%%/images/light/folder-closed-recent.png
+%%DATADIR%%/images/light/folder-closed-small.png
+%%DATADIR%%/images/light/folder-closed.png
+%%DATADIR%%/images/light/folder-open-recent-small.png
+%%DATADIR%%/images/light/folder-open-recent.png
+%%DATADIR%%/images/light/folder-open-small.png
+%%DATADIR%%/images/light/folder-open.png
+%%DATADIR%%/images/light/fullscreen-enter.png
+%%DATADIR%%/images/light/fullscreen-leave.png
+%%DATADIR%%/images/light/gamut-hist.png
+%%DATADIR%%/images/light/gamut-plus.png
+%%DATADIR%%/images/light/gamut-softproof.png
+%%DATADIR%%/images/light/gamut-warning.png
+%%DATADIR%%/images/light/gamut_srgb_prophoto_xy.png
+%%DATADIR%%/images/light/gears-pause.png
+%%DATADIR%%/images/light/gears-play.png
+%%DATADIR%%/images/light/gears-small.png
+%%DATADIR%%/images/light/gears.png
+%%DATADIR%%/images/light/goto-end-small.png
+%%DATADIR%%/images/light/goto-start-small.png
+%%DATADIR%%/images/light/hand-closed-hicontrast.png
+%%DATADIR%%/images/light/hand-open-hicontrast.png
+%%DATADIR%%/images/light/hand-open.png
+%%DATADIR%%/images/light/histogram-bar-off-small.png
+%%DATADIR%%/images/light/histogram-bar-on-small.png
+%%DATADIR%%/images/light/histogram-bayer-off-small.png
+%%DATADIR%%/images/light/histogram-bayer-on-small.png
+%%DATADIR%%/images/light/histogram-blue-off-small.png
+%%DATADIR%%/images/light/histogram-blue-on-small.png
+%%DATADIR%%/images/light/histogram-gold-off-small.png
+%%DATADIR%%/images/light/histogram-gold-on-small.png
+%%DATADIR%%/images/light/histogram-green-off-small.png
+%%DATADIR%%/images/light/histogram-green-on-small.png
+%%DATADIR%%/images/light/histogram-mode-linear-small.png
+%%DATADIR%%/images/light/histogram-mode-logx-small.png
+%%DATADIR%%/images/light/histogram-mode-logxy-small.png
+%%DATADIR%%/images/light/histogram-red-off-small.png
+%%DATADIR%%/images/light/histogram-red-on-small.png
+%%DATADIR%%/images/light/histogram-silver-off-small.png
+%%DATADIR%%/images/light/histogram-silver-on-small.png
+%%DATADIR%%/images/light/info.png
+%%DATADIR%%/images/light/intent-absolute.png
+%%DATADIR%%/images/light/intent-perceptual.png
+%%DATADIR%%/images/light/intent-relative.png
+%%DATADIR%%/images/light/intent-saturation.png
+%%DATADIR%%/images/light/magnifier-1to1-small.png
+%%DATADIR%%/images/light/magnifier-1to1.png
+%%DATADIR%%/images/light/magnifier-crop.png
+%%DATADIR%%/images/light/magnifier-fit.png
+%%DATADIR%%/images/light/magnifier-minus-small.png
+%%DATADIR%%/images/light/magnifier-minus.png
+%%DATADIR%%/images/light/magnifier-plus-small.png
+%%DATADIR%%/images/light/magnifier-plus.png
+%%DATADIR%%/images/light/magnifier.png
+%%DATADIR%%/images/light/metadata.png
+%%DATADIR%%/images/light/node-move-nw-se-hicontrast.png
+%%DATADIR%%/images/light/node-move-sw-ne-hicontrast.png
+%%DATADIR%%/images/light/node-move-x-hicontrast.png
+%%DATADIR%%/images/light/node-move-xy-hicontrast.png
+%%DATADIR%%/images/light/node-move-y-hicontrast.png
+%%DATADIR%%/images/light/one-to-one-small.png
+%%DATADIR%%/images/light/ornament1.png
+%%DATADIR%%/images/light/padlock-locked-small.png
+%%DATADIR%%/images/light/padlock-unlocked-small.png
+%%DATADIR%%/images/light/palette-brush.png
+%%DATADIR%%/images/light/panel-to-bottom.png
+%%DATADIR%%/images/light/panel-to-left.png
+%%DATADIR%%/images/light/panel-to-right.png
+%%DATADIR%%/images/light/panel-to-top.png
+%%DATADIR%%/images/light/paste.png
+%%DATADIR%%/images/light/perspective-horizontal-left-small.png
+%%DATADIR%%/images/light/perspective-horizontal-left.png
+%%DATADIR%%/images/light/perspective-horizontal-right-small.png
+%%DATADIR%%/images/light/perspective-horizontal-right.png
+%%DATADIR%%/images/light/perspective-vertical-bottom-small.png
+%%DATADIR%%/images/light/perspective-vertical-bottom.png
+%%DATADIR%%/images/light/perspective-vertical-top-small.png
+%%DATADIR%%/images/light/perspective-vertical-top.png
+%%DATADIR%%/images/light/power-inconsistent-small.png
+%%DATADIR%%/images/light/power-off-small.png
+%%DATADIR%%/images/light/power-on-small.png
+%%DATADIR%%/images/light/preferences.png
+%%DATADIR%%/images/light/profile-filled.png
+%%DATADIR%%/images/light/profile-partial.png
+%%DATADIR%%/images/light/redo-all.png
+%%DATADIR%%/images/light/redo-small.png
+%%DATADIR%%/images/light/redo.png
+%%DATADIR%%/images/light/refresh-red-small.png
+%%DATADIR%%/images/light/refresh-small.png
+%%DATADIR%%/images/light/refresh.png
+%%DATADIR%%/images/light/remove-small.png
+%%DATADIR%%/images/light/remove.png
+%%DATADIR%%/images/light/rotate-aroundnode-hicontrast.png
+%%DATADIR%%/images/light/rotate-aroundnode.png
+%%DATADIR%%/images/light/rotate-left-90.png
+%%DATADIR%%/images/light/rotate-left-small.png
+%%DATADIR%%/images/light/rotate-left.png
+%%DATADIR%%/images/light/rotate-right-90.png
+%%DATADIR%%/images/light/rotate-right-small.png
+%%DATADIR%%/images/light/rotate-right.png
+%%DATADIR%%/images/light/rotate-straighten-small.png
+%%DATADIR%%/images/light/rotate-straighten.png
+%%DATADIR%%/images/light/save-small.png
+%%DATADIR%%/images/light/save.png
+%%DATADIR%%/images/light/saved-no-small.png
+%%DATADIR%%/images/light/saved-yes-small.png
+%%DATADIR%%/images/light/square-toggle-black-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-black-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-blue-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-blue-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-gray-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-gray-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-green-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-green-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-luminosity-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-luminosity-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-red-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-red-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-theme-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-theme-on-narrow.png
+%%DATADIR%%/images/light/square-toggle-white-off-narrow.png
+%%DATADIR%%/images/light/square-toggle-white-on-narrow.png
+%%DATADIR%%/images/light/star-gold-hollow-narrow.png
+%%DATADIR%%/images/light/star-gold-hollow-small.png
+%%DATADIR%%/images/light/star-gold-narrow.png
+%%DATADIR%%/images/light/star-gold-small.png
+%%DATADIR%%/images/light/star-hollow-narrow.png
+%%DATADIR%%/images/light/star-hollow-small.png
+%%DATADIR%%/images/light/star-narrow.png
+%%DATADIR%%/images/light/star-small.png
+%%DATADIR%%/images/light/template-16.png
+%%DATADIR%%/images/light/template-24.png
+%%DATADIR%%/images/light/template-narrow.png
+%%DATADIR%%/images/light/tick-green-hollow-small.png
+%%DATADIR%%/images/light/tick-green-hollow.png
+%%DATADIR%%/images/light/tick-green-small.png
+%%DATADIR%%/images/light/tick-green.png
+%%DATADIR%%/images/light/tick-hollow-small.png
+%%DATADIR%%/images/light/tick-small.png
+%%DATADIR%%/images/light/tick.png
+%%DATADIR%%/images/light/transform.png
+%%DATADIR%%/images/light/trash-delete.png
+%%DATADIR%%/images/light/trash-empty-show.png
+%%DATADIR%%/images/light/trash-empty.png
+%%DATADIR%%/images/light/trash-full-show.png
+%%DATADIR%%/images/light/trash-full.png
+%%DATADIR%%/images/light/trash-hide-deleted.png
+%%DATADIR%%/images/light/trash-remove-small.png
+%%DATADIR%%/images/light/trash-remove.png
+%%DATADIR%%/images/light/trash-small.png
+%%DATADIR%%/images/light/undo-all.png
+%%DATADIR%%/images/light/undo-small.png
+%%DATADIR%%/images/light/undo.png
+%%DATADIR%%/images/light/warning-highlights.png
+%%DATADIR%%/images/light/warning-shadows.png
+%%DATADIR%%/images/light/warning.png
+%%DATADIR%%/images/light/wavelets.png
+%%DATADIR%%/images/light/wb-auto-small.png
+%%DATADIR%%/images/light/wb-auto.png
+%%DATADIR%%/images/light/wb-camera-small.png
+%%DATADIR%%/images/light/wb-camera.png
+%%DATADIR%%/images/light/wb-cloudy-small.png
+%%DATADIR%%/images/light/wb-cloudy.png
+%%DATADIR%%/images/light/wb-custom-small.png
+%%DATADIR%%/images/light/wb-custom.png
+%%DATADIR%%/images/light/wb-flash-small.png
+%%DATADIR%%/images/light/wb-flash.png
+%%DATADIR%%/images/light/wb-fluorescent-small.png
+%%DATADIR%%/images/light/wb-fluorescent.png
+%%DATADIR%%/images/light/wb-lamp-small.png
+%%DATADIR%%/images/light/wb-lamp.png
+%%DATADIR%%/images/light/wb-led-small.png
+%%DATADIR%%/images/light/wb-led.png
+%%DATADIR%%/images/light/wb-shade-small.png
+%%DATADIR%%/images/light/wb-shade.png
+%%DATADIR%%/images/light/wb-sun-small.png
+%%DATADIR%%/images/light/wb-sun.png
+%%DATADIR%%/images/light/wb-tungsten-small.png
+%%DATADIR%%/images/light/wb-tungsten.png
+%%DATADIR%%/images/light/wb-water-small.png
+%%DATADIR%%/images/light/wb-water.png
+%%DATADIR%%/images/light/window-add.png
+%%DATADIR%%/images/rawtherapee-logo-128.png
+%%DATADIR%%/images/rawtherapee-logo-16.png
+%%DATADIR%%/images/rawtherapee-logo-24.png
+%%DATADIR%%/images/rawtherapee-logo-256.png
+%%DATADIR%%/images/rawtherapee-logo-48.png
%%DATADIR%%/images/splash.png
-%%DATADIR%%/images/stock-flip-horizontal.png
-%%DATADIR%%/images/stock-flip-vertical.png
-%%DATADIR%%/images/stock-rotate-270.png
-%%DATADIR%%/images/stock-rotate-90.png
-%%DATADIR%%/images/straighten-small.png
-%%DATADIR%%/images/straighten.png
-%%DATADIR%%/images/toleftend.png
-%%DATADIR%%/images/torightend.png
-%%DATADIR%%/images/transform.png
-%%DATADIR%%/images/trash-show-empty.png
-%%DATADIR%%/images/trash-show-full.png
-%%DATADIR%%/images/trash.png
-%%DATADIR%%/images/uncolorlabel.png
-%%DATADIR%%/images/undelete.png
-%%DATADIR%%/images/unrated.png
-%%DATADIR%%/images/warnhl.png
-%%DATADIR%%/images/warnsh.png
%%DATADIR%%/languages/Catala
%%DATADIR%%/languages/Chinese (Simplified)
%%DATADIR%%/languages/Chinese (Traditional)
@@ -858,71 +802,15 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/profiles/Auto-Matched Curve - ISO High.pp3
%%DATADIR%%/profiles/Auto-Matched Curve - ISO Low.pp3
%%DATADIR%%/profiles/Auto-Matched Curve - ISO Medium.pp3
-%%DATADIR%%/profiles/Black-and-White/Black-and-White 1.pp3
-%%DATADIR%%/profiles/Black-and-White/Black-and-White 2.pp3
-%%DATADIR%%/profiles/Black-and-White/Black-and-White 3.pp3
-%%DATADIR%%/profiles/Black-and-White/Black-and-White 4.pp3
-%%DATADIR%%/profiles/Faded/Faded Amber 1 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Amber 1 TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Amber 1.pp3
-%%DATADIR%%/profiles/Faded/Faded Blue 1 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Blue 1 TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Blue 1.pp3
-%%DATADIR%%/profiles/Faded/Faded Blue Pink TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Blue Pink.pp3
-%%DATADIR%%/profiles/Faded/Faded Chocolate 1 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Chocolate 2 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Golden 1.pp3
-%%DATADIR%%/profiles/Faded/Faded Golden 2.pp3
-%%DATADIR%%/profiles/Faded/Faded Green 1 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Green 1 TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Green 1.pp3
-%%DATADIR%%/profiles/Faded/Faded Green 2.pp3
-%%DATADIR%%/profiles/Faded/Faded Green 3.pp3
-%%DATADIR%%/profiles/Faded/Faded Neutral TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Neutral.pp3
-%%DATADIR%%/profiles/Faded/Faded Purple 1 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Purple 1 TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Purple 1.pp3
-%%DATADIR%%/profiles/Faded/Faded Purple 2 TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Purple 2.pp3
-%%DATADIR%%/profiles/Faded/Faded Teal Orange TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Teal Orange TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Teal Orange.pp3
-%%DATADIR%%/profiles/Faded/Faded Warm 1 TM Bright.pp3
-%%DATADIR%%/profiles/Faded/Faded Warm 1 TM.pp3
-%%DATADIR%%/profiles/Faded/Faded Warm 1.pp3
-%%DATADIR%%/profiles/Faded/Faded Warm 2.pp3
-%%DATADIR%%/profiles/Faded/Faded Warm 3.pp3
-%%DATADIR%%/profiles/Generic/Deep Shadows.pp3
-%%DATADIR%%/profiles/Generic/Equilibrated.pp3
-%%DATADIR%%/profiles/Generic/High-Key.pp3
-%%DATADIR%%/profiles/Generic/Natural 1.pp3
-%%DATADIR%%/profiles/Generic/Natural 2.pp3
-%%DATADIR%%/profiles/Generic/Punchy 1.pp3
-%%DATADIR%%/profiles/Generic/Punchy 2.pp3
%%DATADIR%%/profiles/Non-raw/Brighten.pp3
%%DATADIR%%/profiles/Pixel Shift/PS ISO High.pp3
%%DATADIR%%/profiles/Pixel Shift/PS ISO Low.pp3
%%DATADIR%%/profiles/Pixel Shift/PS ISO Medium.pp3
%%DATADIR%%/profiles/Pixel Shift/PS No Motion.pp3
%%DATADIR%%/profiles/Pop/Pop 1.pp3
-%%DATADIR%%/profiles/Pop/Pop 2 L.pp3
+%%DATADIR%%/profiles/Pop/Pop 2 Lab.pp3
%%DATADIR%%/profiles/Pop/Pop 3 Skin.pp3
-%%DATADIR%%/profiles/Pop/Pop 4 BW.pp3
-%%DATADIR%%/profiles/Portrait/Portrait Lejto.pp3
-%%DATADIR%%/profiles/Portrait/Portrait Smooth.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Natural TM.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Natural.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Pale TM Bright.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Pale TM.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Pale.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Soft Texture.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Strong Texture.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Studio TM.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - Studio.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - StudioBase 1 TM.pp3
-%%DATADIR%%/profiles/Skintones/Skintones - StudioBase 1.pp3
+%%DATADIR%%/profiles/Pop/Pop 4 Black-and-White.pp3
%%DATADIR%%/profiles/Standard Film Curve - ISO High.pp3
%%DATADIR%%/profiles/Standard Film Curve - ISO Low.pp3
%%DATADIR%%/profiles/Standard Film Curve - ISO Medium.pp3
@@ -961,3 +849,6 @@ share/metainfo/rawtherapee.appdata.xml
%%DATADIR%%/themes/TooWaBlue-GTK3-20_.css
%%DATADIR%%/themes/TooWaBlue-GTK3-_19.css
%%DATADIR%%/themes/TooWaGrey - Average Surround-GTK3-20_.css
+%%DATADIR%%/themes/TooWaGrey - Bright-GTK3-20_.css
+%%DATADIR%%/themes/TooWaGrey - Dark-GTK3-20_.css
+%%DATADIR%%/themes/TooWaGrey-GTK3-20_.css