Date: Sat, 27 Apr 2013 21:27:32 GMT From: Waitman Gobble <uzimac@da3m0n8t3r.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/178206: [updated port] graphics/rawtherapee to 4.0.10 Message-ID: <201304272127.r3RLRWMW021328@red.freebsd.org> Resent-Message-ID: <201304272130.r3RLU0oN070711@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 178206 >Category: ports >Synopsis: [updated port] graphics/rawtherapee to 4.0.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Apr 27 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Waitman Gobble >Release: 10.0-CURRENT >Organization: Waitman Gobble >Environment: FreeBSD dx.burplex.com 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r248937: Sat Mar 30 21:53:14 PDT 2013 root@dx.burplex.com:/usr/obj/usr/src/sys/FURAHA amd64 >Description: updated port to 4.0.10. the new version is totally awesome, and adds support for more cameras. I have one issue, that i am not sure how to deal with. I'd like to ask people on the ports list however for some unknown reason i've been totally and completely banned from all FreeBSD mailing lists since April 18. (?) send OR receive, from any of my servers on different networks, and i have absolutely no idea what the heck i did? or who i must have upset? help please? Anyhow, the issue has to do with libgomp. I do not understand how to configure the Makefile to link to the proper libstc++ and libgomp, despite adding USE_GCC=4.6 and specifically adding the path in LDFLAGS, etc it still links the binary to /usr/lib/libgomp.so which is from base gcc and does not work with this program. Therefor, I put the following into /etc/libmap.conf > cat /etc/libmap.conf libgcc_s.so.1 gcc46/libgcc_s.so.1 libgomp.so.1 gcc46/libgomp.so.1 libobjc.so.3 gcc46/libobjc.so.2 libssp.so.0 gcc46/libssp.so.0 libstdc++.so.6 gcc46/libstdc++.so.6 This needs to be done _before_ building the program. I am not sure how to get it to work properly in the Makefile without this step, which i'd obviously rather avoid. Notes: removed: files/patch-AboutThisBuild.cmake removed: files/patch-CMakeLists.txt These changes are no longer required with updated cmake files in wrksrc added: canberra-gtk3:${PORTSDIR}/audio/libcanberra-gtk3 to LIB_DEPENDS. This depency will pull in x11-toolkits/gtk30 which cannot be built by base gcc because of a duplicate typdef of PointerBarrier in XInput2.h, however gcc4.6+ (tested with gcc4.6) will build gtk30 (and possibly clang, untested) USE_GNOME= gtk30 added USE_GCC= 4.6 (needs newer libgomp.so in /usr/local/lib/gcc46, base libgomp doesn't work) added cmake:outsource to avoid CMake error about in-source build updated pkg-plist >How-To-Repeat: >Fix: thank you Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rawtherapee # rawtherapee/files # rawtherapee/files/patch-rtengine_myfile.h # rawtherapee/files/rawtherapee.in # rawtherapee/files/patch-rtengine_improcfun.h # rawtherapee/files/patch-rtengine_safegtk.cc # rawtherapee/pkg-plist # rawtherapee/Makefile # rawtherapee/distinfo # rawtherapee/pkg-descr # echo c - rawtherapee mkdir -p rawtherapee > /dev/null 2>&1 echo c - rawtherapee/files mkdir -p rawtherapee/files > /dev/null 2>&1 echo x - rawtherapee/files/patch-rtengine_myfile.h sed 's/^X//' >rawtherapee/files/patch-rtengine_myfile.h << '3ec586577302b21dceef95fe76261b02' X--- ./rtengine/myfile.h.orig 2012-01-31 05:00:05.000000000 +0400 X+++ ./rtengine/myfile.h 2012-03-29 19:28:04.000000000 +0400 X@@ -22,6 +22,8 @@ X #include <glib/gstdio.h> X #include <cstdio> X #include <cstring> X+#undef feof X+#undef getc X struct IMFILE { X int fd; X int pos; 3ec586577302b21dceef95fe76261b02 echo x - rawtherapee/files/rawtherapee.in sed 's/^X//' >rawtherapee/files/rawtherapee.in << '7afc660306d43d30ce735216d45d82bd' X#!/bin/csh X# X# $FreeBSD: head/graphics/rawtherapee/files/rawtherapee.in 300896 2012-07-14 13:54:48Z beat $ X Xset RTH = "%%RTDIR%%/rth" Xset CONFDIR = "%%RTDIR%%" X Xexec "${RTH}" ${CONFDIR} 7afc660306d43d30ce735216d45d82bd echo x - rawtherapee/files/patch-rtengine_improcfun.h sed 's/^X//' >rawtherapee/files/patch-rtengine_improcfun.h << 'ed582c0876f58ad2f42d1399c81bea53' X--- ./rtengine/improcfun.h.orig 2012-01-31 05:00:05.000000000 +0400 X+++ ./rtengine/improcfun.h 2012-03-31 11:46:27.000000000 +0400 X@@ -19,6 +19,11 @@ X #ifndef _IMPROCFUN_H_ X #define _IMPROCFUN_H_ X X+#include <sys/param.h> X+#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027) X+#define log2(x) (log(x) / M_LN2) X+#endif X+ X #include "imagefloat.h" X #include "image16.h" X #include "image8.h" ed582c0876f58ad2f42d1399c81bea53 echo x - rawtherapee/files/patch-rtengine_safegtk.cc sed 's/^X//' >rawtherapee/files/patch-rtengine_safegtk.cc << 'c85010e51f9276d9c80854af13a381f3' X--- ./rtengine/safegtk.cc.orig 2012-01-31 05:00:05.000000000 +0400 X+++ ./rtengine/safegtk.cc 2012-03-29 19:31:25.000000000 +0400 X@@ -98,7 +98,7 @@ X Glib::RefPtr<Gio::FileEnumerator> dirList; X if (dir) { X SAFE_ENUMERATOR_CODE_START X- flist.push_back (FileMTimeInfo (removeExtension(info->get_name()), info->modification_time())); X+ flist.push_back (FileMTimeInfo (removeExtension(info->get_display_name()), info->modification_time())); X SAFE_ENUMERATOR_CODE_END; X } X } X@@ -113,7 +113,7 @@ X if (dir) { X if (!extensions) { X SAFE_ENUMERATOR_CODE_START X- names.push_back (Glib::build_filename (directory, info->get_name())); X+ names.push_back (Glib::build_filename (directory, info->get_display_name())); X SAFE_ENUMERATOR_CODE_END; X } X else { X@@ -124,7 +124,7 @@ X X SAFE_ENUMERATOR_CODE_START X // convert the current filename to lowercase in a new ustring X- Glib::ustring fname = Glib::ustring(info->get_name()).lowercase(); X+ Glib::ustring fname = Glib::ustring(info->get_display_name()).lowercase(); X X int pos = fname.find_last_of('.'); X if (pos > -1 && pos < (fname.length()-1)) { X@@ -135,7 +135,7 @@ X // look out if it has one of the retained extensions X for (unsigned int i=0; i<lcExtensions.size(); i++) { X if (lcFileExt == lcExtensions[i]) { X- names.push_back (Glib::build_filename (directory, info->get_name())); X+ names.push_back (Glib::build_filename (directory, info->get_display_name())); X break; X } X } X@@ -156,7 +156,7 @@ X X SAFE_ENUMERATOR_CODE_START X if (info->get_file_type() == Gio::FILE_TYPE_DIRECTORY && (!info->is_hidden() || add_hidden)) X- subDirs.push_back (info->get_name()); X+ subDirs.push_back (info->get_display_name()); X SAFE_ENUMERATOR_CODE_END; X } X } c85010e51f9276d9c80854af13a381f3 echo x - rawtherapee/pkg-plist sed 's/^X//' >rawtherapee/pkg-plist << 'd830ddd61d7164e253793a31b7038bd2' X%%DOCSDIR%%/AUTHORS.txt X%%DOCSDIR%%/LICENSE.txt X%%DOCSDIR%%/AboutThisBuild.txt X%%DOCSDIR%%/RELEASE_NOTES.txt Xshare/applications/rawtherapee.desktop Xshare/icons/hicolor/16x16/apps/rawtherapee.png Xshare/icons/hicolor/24x24/apps/rawtherapee.png Xshare/icons/hicolor/32x32/apps/rawtherapee.png Xshare/icons/hicolor/48x48/apps/rawtherapee.png Xshare/icons/hicolor/128x128/apps/rawtherapee.png Xshare/icons/hicolor/256x256/apps/rawtherapee.png X%%DATADIR%%/languages/Catala X%%DATADIR%%/languages/Chinese (Simplified) X%%DATADIR%%/languages/Chinese (Traditional) X%%DATADIR%%/languages/Czech X%%DATADIR%%/languages/Dansk X%%DATADIR%%/languages/Deutsch X%%DATADIR%%/languages/English (UK) X%%DATADIR%%/languages/English (US) X%%DATADIR%%/languages/Espanol X%%DATADIR%%/languages/Euskara X%%DATADIR%%/languages/Francais X%%DATADIR%%/languages/Greek X%%DATADIR%%/languages/Hebrew X%%DATADIR%%/languages/Italiano X%%DATADIR%%/languages/Japanese X%%DATADIR%%/languages/LICENSE X%%DATADIR%%/languages/Latvian X%%DATADIR%%/languages/Magyar X%%DATADIR%%/languages/Nederlands X%%DATADIR%%/languages/Norsk BM X%%DATADIR%%/languages/Polish X%%DATADIR%%/languages/Polish (Latin Characters) X%%DATADIR%%/languages/Portugues (Brasil) X%%DATADIR%%/languages/README X%%DATADIR%%/languages/Russian X%%DATADIR%%/languages/Serbian (Cyrilic Characters) X%%DATADIR%%/languages/Serbian (Latin Characters) X%%DATADIR%%/languages/Slovak X%%DATADIR%%/languages/Suomi X%%DATADIR%%/languages/Swedish X%%DATADIR%%/languages/Turkish X%%DATADIR%%/languages/default X%%DATADIR%%/profiles/BW 1.pp3 X%%DATADIR%%/profiles/BW 2.pp3 X%%DATADIR%%/profiles/BW 3.pp3 X%%DATADIR%%/profiles/BW 4.pp3 X%%DATADIR%%/profiles/Deep Shadows.pp3 X%%DATADIR%%/profiles/Default ISO High.pp3 X%%DATADIR%%/profiles/Default ISO Medium.pp3 X%%DATADIR%%/profiles/Default.pp3 X%%DATADIR%%/profiles/Equilibrated.pp3 X%%DATADIR%%/profiles/High-Key.pp3 X%%DATADIR%%/profiles/Natural 1.pp3 X%%DATADIR%%/profiles/Natural 2.pp3 X%%DATADIR%%/profiles/Neutral.pp3 X%%DATADIR%%/profiles/Pop BW.pp3 X%%DATADIR%%/profiles/Pop.pp3 X%%DATADIR%%/profiles/Portrait Lejto.pp3 X%%DATADIR%%/profiles/Portrait Smooth.pp3 X%%DATADIR%%/profiles/Punchy 1.pp3 X%%DATADIR%%/profiles/Punchy 2.pp3 X%%DATADIR%%/profiles/Skintones - Enhanced.pp3 X%%DATADIR%%/profiles/Skintones - Pale.pp3 X%%DATADIR%%/profiles/Skintones - Soft Texture.pp3 X%%DATADIR%%/profiles/Skintones - Strong Texture.pp3 X%%DATADIR%%/sounds/BatchComplete.wav X%%DATADIR%%/sounds/Empty.wav X%%DATADIR%%/sounds/ProcessComplete.wav X%%DATADIR%%/iccprofiles/input/Canon EOS 20D.icc X%%DATADIR%%/iccprofiles/input/Canon EOS 40D.icc X%%DATADIR%%/iccprofiles/input/Canon EOS 450D.icc X%%DATADIR%%/iccprofiles/input/Canon EOS 550D.icc X%%DATADIR%%/iccprofiles/input/Canon EOS 5D.icc X%%DATADIR%%/iccprofiles/input/Canon EOS Digital Rebel XSi.icc X%%DATADIR%%/iccprofiles/input/Canon EOS Rebel T2i.icc X%%DATADIR%%/iccprofiles/input/Canon EOS-1D Mark III.icc X%%DATADIR%%/iccprofiles/input/Canon PowerShot G10.icc X%%DATADIR%%/iccprofiles/input/Canon PowerShot G12.icc X%%DATADIR%%/iccprofiles/input/Nikon D200.icc X%%DATADIR%%/iccprofiles/input/Nikon D3000.icc X%%DATADIR%%/iccprofiles/input/Nikon D3100.icc X%%DATADIR%%/iccprofiles/input/Nikon D3S.icc X%%DATADIR%%/iccprofiles/input/Nikon D700.icc X%%DATADIR%%/iccprofiles/input/Nikon D7000.icc X%%DATADIR%%/iccprofiles/input/Olympus E-P2.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-FZ150.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-FZ35.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-FZ38.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-G1.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-G3.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-GH1.icc X%%DATADIR%%/iccprofiles/input/Panasonic DMC-GH2.icc X%%DATADIR%%/iccprofiles/input/Pentax K200D.icc X%%DATADIR%%/iccprofiles/input/Sony DSLR-A700.icc X%%DATADIR%%/iccprofiles/input/Sony DSLR-A900.icc X%%DATADIR%%/iccprofiles/input/Sony SLT-A55V.icc X%%DATADIR%%/iccprofiles/output/RT_Large_g10.icc X%%DATADIR%%/iccprofiles/output/RT_Large_gBT709.icc X%%DATADIR%%/iccprofiles/output/RT_Large_gsRGB.icc X%%DATADIR%%/iccprofiles/output/RT_Medium_gsRGB.icc X%%DATADIR%%/iccprofiles/output/RT_sRGB.icm X%%DATADIR%%/iccprofiles/output/RT_sRGB_g10.icm X%%DATADIR%%/iccprofiles/output/RT_sRGB_gBT709.icm X%%DATADIR%%/dcpprofiles/Canon EOS 20D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 400D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 40D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 450D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 550D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 5D Mark III.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 5D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS 7D.dcp X%%DATADIR%%/dcpprofiles/Canon EOS D60.dcp X%%DATADIR%%/dcpprofiles/Canon EOS Digital Rebel XSi.dcp X%%DATADIR%%/dcpprofiles/Canon EOS Digital Rebel XTi.dcp X%%DATADIR%%/dcpprofiles/Canon EOS Rebel T2i.dcp X%%DATADIR%%/dcpprofiles/Canon EOS-1D Mark III.dcp X%%DATADIR%%/dcpprofiles/Canon PowerShot G10.dcp X%%DATADIR%%/dcpprofiles/Canon PowerShot G12.dcp X%%DATADIR%%/dcpprofiles/Leaf Aptus 75.dcp X%%DATADIR%%/dcpprofiles/Nikon D200.dcp X%%DATADIR%%/dcpprofiles/Nikon D300.dcp X%%DATADIR%%/dcpprofiles/Nikon D3000.dcp X%%DATADIR%%/dcpprofiles/Nikon D3100.dcp X%%DATADIR%%/dcpprofiles/Nikon D3S.dcp X%%DATADIR%%/dcpprofiles/Nikon D50.dcp X%%DATADIR%%/dcpprofiles/Nikon D5100.dcp X%%DATADIR%%/dcpprofiles/Nikon D700.dcp X%%DATADIR%%/dcpprofiles/Nikon D7000.dcp X%%DATADIR%%/dcpprofiles/Nikon D800.dcp X%%DATADIR%%/dcpprofiles/Olympus E-1.dcp X%%DATADIR%%/dcpprofiles/Olympus E-510.dcp X%%DATADIR%%/dcpprofiles/Olympus E-520.dcp X%%DATADIR%%/dcpprofiles/Olympus E-M5.dcp X%%DATADIR%%/dcpprofiles/Olympus E-P2.dcp X%%DATADIR%%/dcpprofiles/Olympus XZ-1.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ150.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ35.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-FZ38.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-G1.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-G3.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-G5.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-GH1.dcp X%%DATADIR%%/dcpprofiles/Panasonic DMC-GH2.dcp X%%DATADIR%%/dcpprofiles/Pentax K10D.dcp X%%DATADIR%%/dcpprofiles/Pentax K200D.dcp X%%DATADIR%%/dcpprofiles/Sony DSLR-A700.dcp X%%DATADIR%%/dcpprofiles/Sony DSLR-A900.dcp X%%DATADIR%%/dcpprofiles/Sony NEX-5N.dcp X%%DATADIR%%/dcpprofiles/Sony SLT-A55V.dcp X%%DATADIR%%/themes/09-Gray-Orange.gtkrc X%%DATADIR%%/themes/09-Gray-Orange.iconset X%%DATADIR%%/themes/17-Gray-Red.gtkrc X%%DATADIR%%/themes/17-Gray-Red.iconset X%%DATADIR%%/themes/21-Gray-Gray.gtkrc X%%DATADIR%%/themes/21-Gray-Gray.iconset X%%DATADIR%%/themes/25-Gray-Gray.gtkrc X%%DATADIR%%/themes/25-Gray-Gray.iconset X%%DATADIR%%/themes/25-Gray-Purple.gtkrc X%%DATADIR%%/themes/25-Gray-Purple.iconset X%%DATADIR%%/themes/25-Gray-Red.gtkrc X%%DATADIR%%/themes/25-Gray-Red.iconset X%%DATADIR%%/themes/37-Gray-Red-Textured.gtkrc X%%DATADIR%%/themes/37-Gray-Red-Textured.iconset X%%DATADIR%%/themes/37-Gray-Red.gtkrc X%%DATADIR%%/themes/Default.gtkrc X%%DATADIR%%/themes/37-Gray-Red.iconset X%%DATADIR%%/themes/63-Gray-Cyan.gtkrc X%%DATADIR%%/themes/63-Gray-Cyan.iconset X%%DATADIR%%/themes/92-Beige-DarkCyan.gtkrc X%%DATADIR%%/themes/Default.iconset X%%DATADIR%%/themes/gray_textured/arrow-down-ins.png X%%DATADIR%%/themes/gray_textured/arrow-down-pre.png X%%DATADIR%%/themes/gray_textured/arrow-down.png X%%DATADIR%%/themes/gray_textured/arrow-left-ins.png X%%DATADIR%%/themes/gray_textured/arrow-left-pre.png X%%DATADIR%%/themes/gray_textured/arrow-left.png X%%DATADIR%%/themes/gray_textured/arrow-right-ins.png X%%DATADIR%%/themes/gray_textured/arrow-right-pre.png X%%DATADIR%%/themes/gray_textured/arrow-right.png X%%DATADIR%%/themes/gray_textured/arrow-up-ins.png X%%DATADIR%%/themes/gray_textured/arrow-up-pre.png X%%DATADIR%%/themes/gray_textured/arrow-up.png X%%DATADIR%%/themes/gray_textured/button-insensitive.png X%%DATADIR%%/themes/gray_textured/button-normal.png X%%DATADIR%%/themes/gray_textured/button-normal.xcf X%%DATADIR%%/themes/gray_textured/button-prelight.png X%%DATADIR%%/themes/gray_textured/button-pressed.png X%%DATADIR%%/themes/gray_textured/null.png X%%DATADIR%%/themes/gray_textured/pbtroughh.png X%%DATADIR%%/themes/gray_textured/pbtroughv.png X%%DATADIR%%/themes/gray_textured/rangeslider-ins.png X%%DATADIR%%/themes/gray_textured/rangeslider-pre.png X%%DATADIR%%/themes/gray_textured/rangeslider.png X%%DATADIR%%/themes/gray_textured/slider-h-ins.png X%%DATADIR%%/themes/gray_textured/slider-h-pre.png X%%DATADIR%%/themes/gray_textured/slider-h.png X%%DATADIR%%/themes/gray_textured/slider-v-ins.png X%%DATADIR%%/themes/gray_textured/slider-v-pre.png X%%DATADIR%%/themes/gray_textured/slider-v.png X%%DATADIR%%/themes/gray_textured/trough2-h.png X%%DATADIR%%/themes/gray_textured/trough2.png X%%DATADIR%%/themes/slim X%%DATADIR%%/themes/system.iconset X%%DATADIR%%/images/Dark/actions/PanelEnding.png X%%DATADIR%%/images/Dark/actions/beforeafter.png X%%DATADIR%%/images/Dark/actions/cglabel0.png X%%DATADIR%%/images/Dark/actions/cglabel1.png X%%DATADIR%%/images/Dark/actions/cglabel2.png X%%DATADIR%%/images/Dark/actions/cglabel3.png X%%DATADIR%%/images/Dark/actions/cglabel4.png X%%DATADIR%%/images/Dark/actions/cglabel5.png X%%DATADIR%%/images/Dark/actions/clabel0.png X%%DATADIR%%/images/Dark/actions/clabel1.png X%%DATADIR%%/images/Dark/actions/clabel2.png X%%DATADIR%%/images/Dark/actions/clabel3.png X%%DATADIR%%/images/Dark/actions/clabel4.png X%%DATADIR%%/images/Dark/actions/clabel5.png X%%DATADIR%%/images/Dark/actions/closedhand.png X%%DATADIR%%/images/Dark/actions/colour.png X%%DATADIR%%/images/Dark/actions/crop-auto.png X%%DATADIR%%/images/Dark/actions/crop.png X%%DATADIR%%/images/Dark/actions/crossed-arrows-in.png X%%DATADIR%%/images/Dark/actions/crossed-arrows-out.png X%%DATADIR%%/images/Dark/actions/detail.png X%%DATADIR%%/images/Dark/actions/curveType-NURBS.png X%%DATADIR%%/images/Dark/actions/curveType-controlPoints.png X%%DATADIR%%/images/Dark/actions/curveType-flatLinear.png X%%DATADIR%%/images/Dark/actions/curveType-linear.png X%%DATADIR%%/images/Dark/actions/curveType-parametric.png X%%DATADIR%%/images/Dark/actions/curveType-spline.png X%%DATADIR%%/images/Dark/actions/distorsion.png X%%DATADIR%%/images/Dark/actions/distortion-auto.png X%%DATADIR%%/images/Dark/actions/document-open-recent.png X%%DATADIR%%/images/Dark/actions/document-open.png X%%DATADIR%%/images/Dark/actions/edit-copy.png X%%DATADIR%%/images/Dark/actions/edit-find.png X%%DATADIR%%/images/Dark/actions/edit-paste.png X%%DATADIR%%/images/Dark/actions/edited-small.png X%%DATADIR%%/images/Dark/actions/edited.png X%%DATADIR%%/images/Dark/actions/editedg-small.png X%%DATADIR%%/images/Dark/actions/editednot-small.png X%%DATADIR%%/images/Dark/actions/filter.png X%%DATADIR%%/images/Dark/actions/editednotg-small.png X%%DATADIR%%/images/Dark/actions/exposure.png X%%DATADIR%%/images/Dark/actions/filterclear.png X%%DATADIR%%/images/Dark/actions/fullscreen-exit.png X%%DATADIR%%/images/Dark/actions/fullscreen.png X%%DATADIR%%/images/Dark/actions/grayrated.png X%%DATADIR%%/images/Dark/actions/gtk-add.png X%%DATADIR%%/images/Dark/actions/gtk-apply.png X%%DATADIR%%/images/Dark/actions/gtk-cancel.png X%%DATADIR%%/images/Dark/actions/gtk-close-small.png X%%DATADIR%%/images/Dark/actions/gtk-close.png X%%DATADIR%%/images/Dark/actions/gtk-color-picker-small.png X%%DATADIR%%/images/Dark/actions/gtk-color-picker.png X%%DATADIR%%/images/Dark/actions/gtk-copy.png X%%DATADIR%%/images/Dark/actions/gtk-edit.png X%%DATADIR%%/images/Dark/actions/gtk-find.png X%%DATADIR%%/images/Dark/actions/gtk-media-play.png X%%DATADIR%%/images/Dark/actions/gtk-media-stop.png X%%DATADIR%%/images/Dark/actions/gtk-ok.png X%%DATADIR%%/images/Dark/actions/histBar.png X%%DATADIR%%/images/Dark/actions/gtk-open.png X%%DATADIR%%/images/Dark/actions/gtk-paste.png X%%DATADIR%%/images/Dark/actions/gtk-preferences.png X%%DATADIR%%/images/Dark/actions/gtk-remove.png X%%DATADIR%%/images/Dark/actions/gtk-save-large.png X%%DATADIR%%/images/Dark/actions/gtk-save.png X%%DATADIR%%/images/Dark/actions/gtk-undo-ltr-small.png X%%DATADIR%%/images/Dark/actions/gtk-undo-ltr.png X%%DATADIR%%/images/Dark/actions/gtk-undo-rtl-small.png X%%DATADIR%%/images/Dark/actions/gtk-undo-rtl.png X%%DATADIR%%/images/Dark/actions/gtk-undoall-ltr.png X%%DATADIR%%/images/Dark/actions/gtk-undoall-rtl.png X%%DATADIR%%/images/Dark/actions/gtk-zoom-100.png X%%DATADIR%%/images/Dark/actions/gtk-zoom-fit.png X%%DATADIR%%/images/Dark/actions/gtk-zoom-in.png X%%DATADIR%%/images/Dark/actions/gtk-zoom-out.png X%%DATADIR%%/images/Dark/actions/histBarg.png X%%DATADIR%%/images/Dark/actions/histBlue.png X%%DATADIR%%/images/Dark/actions/histBlueg.png X%%DATADIR%%/images/Dark/actions/histChro.png X%%DATADIR%%/images/Dark/actions/histChrog.png X%%DATADIR%%/images/Dark/actions/histFull.png X%%DATADIR%%/images/Dark/actions/histFullg.png X%%DATADIR%%/images/Dark/actions/histGreen.png X%%DATADIR%%/images/Dark/actions/histGreeng.png X%%DATADIR%%/images/Dark/actions/histRaw.png X%%DATADIR%%/images/Dark/actions/histRawg.png X%%DATADIR%%/images/Dark/actions/histRed.png X%%DATADIR%%/images/Dark/actions/histRedg.png X%%DATADIR%%/images/Dark/actions/histValue.png X%%DATADIR%%/images/Dark/actions/histValueg.png X%%DATADIR%%/images/Dark/actions/image-editor.png X%%DATADIR%%/images/Dark/actions/info.png X%%DATADIR%%/images/Dark/actions/list-add-small.png X%%DATADIR%%/images/Dark/actions/list-add.png X%%DATADIR%%/images/Dark/actions/list-remove-red-small.png X%%DATADIR%%/images/Dark/actions/list-remove.png X%%DATADIR%%/images/Dark/actions/lock-off.png X%%DATADIR%%/images/Dark/actions/lock-on.png X%%DATADIR%%/images/Dark/actions/media-usb.png X%%DATADIR%%/images/Dark/actions/meta.png X%%DATADIR%%/images/Dark/actions/new-detail-window.png X%%DATADIR%%/images/Dark/actions/openhand.png X%%DATADIR%%/images/Dark/actions/panel-to-bottom.png X%%DATADIR%%/images/Dark/actions/panel-to-left.png X%%DATADIR%%/images/Dark/actions/panel-to-right.png X%%DATADIR%%/images/Dark/actions/panel-to-top.png X%%DATADIR%%/images/Dark/actions/popuparrow.png X%%DATADIR%%/images/Dark/actions/previewmodeB-off.png X%%DATADIR%%/images/Dark/actions/previewmodeB-on.png X%%DATADIR%%/images/Dark/actions/previewmodeBC0-off.png X%%DATADIR%%/images/Dark/actions/previewmodeBC0-on.png X%%DATADIR%%/images/Dark/actions/previewmodeBC1-off.png X%%DATADIR%%/images/Dark/actions/previewmodeBC1-on.png X%%DATADIR%%/images/Dark/actions/previewmodeBC2-off.png X%%DATADIR%%/images/Dark/actions/previewmodeBC2-on.png X%%DATADIR%%/images/Dark/actions/previewmodeF-off.png X%%DATADIR%%/images/Dark/actions/raw.png X%%DATADIR%%/images/Dark/actions/previewmodeF-on.png X%%DATADIR%%/images/Dark/actions/previewmodeG-off.png X%%DATADIR%%/images/Dark/actions/previewmodeG-on.png X%%DATADIR%%/images/Dark/actions/previewmodeL-off.png X%%DATADIR%%/images/Dark/actions/previewmodeL-on.png X%%DATADIR%%/images/Dark/actions/previewmodeR-off.png X%%DATADIR%%/images/Dark/actions/previewmodeR-on.png X%%DATADIR%%/images/Dark/actions/processing-pause.png X%%DATADIR%%/images/Dark/actions/processing-play.png X%%DATADIR%%/images/Dark/actions/processing-thumbnail.png X%%DATADIR%%/images/Dark/actions/processing.png X%%DATADIR%%/images/Dark/actions/rated.png X%%DATADIR%%/images/Dark/actions/ratednot.png X%%DATADIR%%/images/Dark/actions/ratednotg.png X%%DATADIR%%/images/Dark/actions/refresh-red.png X%%DATADIR%%/images/Dark/actions/refresh-white.png X%%DATADIR%%/images/Dark/actions/rtwindow.png X%%DATADIR%%/images/Dark/actions/stock-flip-horizontal.png X%%DATADIR%%/images/Dark/actions/stock-flip-vertical.png X%%DATADIR%%/images/Dark/actions/stock-rotate-270.png X%%DATADIR%%/images/Dark/actions/stock-rotate-90.png X%%DATADIR%%/images/Dark/actions/straighten-small.png X%%DATADIR%%/images/Dark/actions/straighten.png X%%DATADIR%%/images/Dark/actions/toleftend.png X%%DATADIR%%/images/Dark/actions/torightend.png X%%DATADIR%%/images/Dark/actions/transform.png X%%DATADIR%%/images/Dark/actions/trash-show-empty.png X%%DATADIR%%/images/Dark/actions/trash-show-full.png X%%DATADIR%%/images/Dark/actions/trash-thumbnail.png X%%DATADIR%%/images/Dark/actions/trash.png X%%DATADIR%%/images/Dark/actions/undelete-rtl.png X%%DATADIR%%/images/Dark/actions/undelete-thumbnail-rtl.png X%%DATADIR%%/images/Dark/actions/undelete-thumbnail.png X%%DATADIR%%/images/Dark/actions/undelete.png X%%DATADIR%%/images/Dark/actions/warnhl.png X%%DATADIR%%/images/Dark/actions/warnsh.png X%%DATADIR%%/images/Dark/actions/wb-auto.png X%%DATADIR%%/images/Dark/actions/wb-camera.png X%%DATADIR%%/images/Dark/actions/wb-cloudy.png X%%DATADIR%%/images/Dark/actions/wb-custom.png X%%DATADIR%%/images/Dark/actions/wb-flash.png X%%DATADIR%%/images/Dark/actions/wb-fluorescent.png X%%DATADIR%%/images/Dark/actions/wb-lamp.png X%%DATADIR%%/images/Dark/actions/wb-led.png X%%DATADIR%%/images/Dark/actions/wb-shade.png X%%DATADIR%%/images/Dark/actions/wb-sun.png X%%DATADIR%%/images/Dark/actions/wb-tungsten.png X%%DATADIR%%/images/Dark/devices/computer.png X%%DATADIR%%/images/Dark/devices/drive-harddisk.png X%%DATADIR%%/images/Dark/devices/drive-optical.png X%%DATADIR%%/images/Dark/devices/drive-removable-media.png X%%DATADIR%%/images/Dark/devices/gtk-cdrom.png X%%DATADIR%%/images/Dark/devices/media-flash.png X%%DATADIR%%/images/Dark/devices/media-floppy.png X%%DATADIR%%/images/Dark/devices/media-optical-bd.png X%%DATADIR%%/images/Dark/devices/media-optical-dvd.png X%%DATADIR%%/images/Dark/devices/media-optical.png X%%DATADIR%%/images/Dark/devices/media-tape.png X%%DATADIR%%/images/Dark/index.theme X%%DATADIR%%/images/Dark/places/folder.png X%%DATADIR%%/images/Dark/places/gtk-directory.png X%%DATADIR%%/images/Dark/places/user-desktop.png X%%DATADIR%%/images/Dark/places/user-home.png X%%DATADIR%%/images/Light/actions/PanelEnding.png X%%DATADIR%%/images/Light/actions/beforeafter.png X%%DATADIR%%/images/Light/actions/cglabel0.png X%%DATADIR%%/images/Light/actions/cglabel1.png X%%DATADIR%%/images/Light/actions/cglabel2.png X%%DATADIR%%/images/Light/actions/cglabel3.png X%%DATADIR%%/images/Light/actions/cglabel4.png X%%DATADIR%%/images/Light/actions/cglabel5.png X%%DATADIR%%/images/Light/actions/clabel0.png X%%DATADIR%%/images/Light/actions/clabel1.png X%%DATADIR%%/images/Light/actions/clabel2.png X%%DATADIR%%/images/Light/actions/clabel3.png X%%DATADIR%%/images/Light/actions/clabel4.png X%%DATADIR%%/images/Light/actions/clabel5.png X%%DATADIR%%/images/Light/actions/closedhand.png X%%DATADIR%%/images/Light/actions/colour.png X%%DATADIR%%/images/Light/actions/crop-auto.png X%%DATADIR%%/images/Light/actions/crop.png X%%DATADIR%%/images/Light/actions/crossed-arrows-in.png X%%DATADIR%%/images/Light/actions/crossed-arrows-out.png X%%DATADIR%%/images/Light/actions/detail.png X%%DATADIR%%/images/Light/actions/curveType-NURBS.png X%%DATADIR%%/images/Light/actions/curveType-controlPoints.png X%%DATADIR%%/images/Light/actions/curveType-flatLinear.png X%%DATADIR%%/images/Light/actions/curveType-linear.png X%%DATADIR%%/images/Light/actions/curveType-parametric.png X%%DATADIR%%/images/Light/actions/curveType-spline.png X%%DATADIR%%/images/Light/actions/distorsion.png X%%DATADIR%%/images/Light/actions/distortion-auto.png X%%DATADIR%%/images/Light/actions/document-open-recent.png X%%DATADIR%%/images/Light/actions/document-open.png X%%DATADIR%%/images/Light/actions/edit-copy.png X%%DATADIR%%/images/Light/actions/edit-find.png X%%DATADIR%%/images/Light/actions/edit-paste.png X%%DATADIR%%/images/Light/actions/edited-small.png X%%DATADIR%%/images/Light/actions/edited.png X%%DATADIR%%/images/Light/actions/editedg-small.png X%%DATADIR%%/images/Light/actions/editednot-small.png X%%DATADIR%%/images/Light/actions/filter.png X%%DATADIR%%/images/Light/actions/editednotg-small.png X%%DATADIR%%/images/Light/actions/exposure.png X%%DATADIR%%/images/Light/actions/filterclear.png X%%DATADIR%%/images/Light/actions/fullscreen-exit.png X%%DATADIR%%/images/Light/actions/fullscreen.png X%%DATADIR%%/images/Light/actions/grayrated.png X%%DATADIR%%/images/Light/actions/gtk-add.png X%%DATADIR%%/images/Light/actions/gtk-apply.png X%%DATADIR%%/images/Light/actions/gtk-cancel.png X%%DATADIR%%/images/Light/actions/gtk-close-small.png X%%DATADIR%%/images/Light/actions/gtk-close.png X%%DATADIR%%/images/Light/actions/gtk-color-picker-small.png X%%DATADIR%%/images/Light/actions/gtk-color-picker.png X%%DATADIR%%/images/Light/actions/gtk-copy.png X%%DATADIR%%/images/Light/actions/gtk-edit.png X%%DATADIR%%/images/Light/actions/gtk-find.png X%%DATADIR%%/images/Light/actions/gtk-media-play.png X%%DATADIR%%/images/Light/actions/gtk-media-stop.png X%%DATADIR%%/images/Light/actions/gtk-ok.png X%%DATADIR%%/images/Light/actions/histBar.png X%%DATADIR%%/images/Light/actions/gtk-open.png X%%DATADIR%%/images/Light/actions/gtk-paste.png X%%DATADIR%%/images/Light/actions/gtk-preferences.png X%%DATADIR%%/images/Light/actions/gtk-remove.png X%%DATADIR%%/images/Light/actions/gtk-save-large.png X%%DATADIR%%/images/Light/actions/gtk-save.png X%%DATADIR%%/images/Light/actions/gtk-undo-ltr-small.png X%%DATADIR%%/images/Light/actions/gtk-undo-ltr.png X%%DATADIR%%/images/Light/actions/gtk-undo-rtl-small.png X%%DATADIR%%/images/Light/actions/gtk-undo-rtl.png X%%DATADIR%%/images/Light/actions/gtk-undoall-ltr.png X%%DATADIR%%/images/Light/actions/gtk-undoall-rtl.png X%%DATADIR%%/images/Light/actions/gtk-zoom-100.png X%%DATADIR%%/images/Light/actions/gtk-zoom-fit.png X%%DATADIR%%/images/Light/actions/gtk-zoom-in.png X%%DATADIR%%/images/Light/actions/gtk-zoom-out.png X%%DATADIR%%/images/Light/actions/histBarg.png X%%DATADIR%%/images/Light/actions/histBlue.png X%%DATADIR%%/images/Light/actions/histBlueg.png X%%DATADIR%%/images/Light/actions/histChro.png X%%DATADIR%%/images/Light/actions/histChrog.png X%%DATADIR%%/images/Light/actions/histFull.png X%%DATADIR%%/images/Light/actions/histFullg.png X%%DATADIR%%/images/Light/actions/histGreen.png X%%DATADIR%%/images/Light/actions/histGreeng.png X%%DATADIR%%/images/Light/actions/histRaw.png X%%DATADIR%%/images/Light/actions/histRawg.png X%%DATADIR%%/images/Light/actions/histRed.png X%%DATADIR%%/images/Light/actions/histRedg.png X%%DATADIR%%/images/Light/actions/histValue.png X%%DATADIR%%/images/Light/actions/histValueg.png X%%DATADIR%%/images/Light/actions/image-editor.png X%%DATADIR%%/images/Light/actions/info.png X%%DATADIR%%/images/Light/actions/list-add-small.png X%%DATADIR%%/images/Light/actions/list-add.png X%%DATADIR%%/images/Light/actions/list-remove-red-small.png X%%DATADIR%%/images/Light/actions/list-remove.png X%%DATADIR%%/images/Light/actions/lock-off.png X%%DATADIR%%/images/Light/actions/lock-on.png X%%DATADIR%%/images/Light/actions/media-usb.png X%%DATADIR%%/images/Light/actions/meta.png X%%DATADIR%%/images/Light/actions/new-detail-window.png X%%DATADIR%%/images/Light/actions/openhand.png X%%DATADIR%%/images/Light/actions/panel-to-bottom.png X%%DATADIR%%/images/Light/actions/panel-to-left.png X%%DATADIR%%/images/Light/actions/panel-to-right.png X%%DATADIR%%/images/Light/actions/panel-to-top.png X%%DATADIR%%/images/Light/actions/popuparrow.png X%%DATADIR%%/images/Light/actions/previewmodeB-off.png X%%DATADIR%%/images/Light/actions/previewmodeB-on.png X%%DATADIR%%/images/Light/actions/previewmodeBC0-off.png X%%DATADIR%%/images/Light/actions/previewmodeBC0-on.png X%%DATADIR%%/images/Light/actions/previewmodeBC1-off.png X%%DATADIR%%/images/Light/actions/previewmodeBC1-on.png X%%DATADIR%%/images/Light/actions/previewmodeBC2-off.png X%%DATADIR%%/images/Light/actions/previewmodeBC2-on.png X%%DATADIR%%/images/Light/actions/previewmodeF-off.png X%%DATADIR%%/images/Light/actions/raw.png X%%DATADIR%%/images/Light/actions/previewmodeF-on.png X%%DATADIR%%/images/Light/actions/previewmodeG-off.png X%%DATADIR%%/images/Light/actions/previewmodeG-on.png X%%DATADIR%%/images/Light/actions/previewmodeL-off.png X%%DATADIR%%/images/Light/actions/previewmodeL-on.png X%%DATADIR%%/images/Light/actions/previewmodeR-off.png X%%DATADIR%%/images/Light/actions/previewmodeR-on.png X%%DATADIR%%/images/Light/actions/processing-pause.png X%%DATADIR%%/images/Light/actions/processing-play.png X%%DATADIR%%/images/Light/actions/processing-thumbnail.png X%%DATADIR%%/images/Light/actions/processing.png X%%DATADIR%%/images/Light/actions/rated.png X%%DATADIR%%/images/Light/actions/ratednot.png X%%DATADIR%%/images/Light/actions/ratednotg.png X%%DATADIR%%/images/Light/actions/refresh-red.png X%%DATADIR%%/images/Light/actions/refresh-white.png X%%DATADIR%%/images/Light/actions/rtwindow.png X%%DATADIR%%/images/Light/actions/stock-flip-horizontal.png X%%DATADIR%%/images/Light/actions/stock-flip-vertical.png X%%DATADIR%%/images/Light/actions/stock-rotate-270.png X%%DATADIR%%/images/Light/actions/stock-rotate-90.png X%%DATADIR%%/images/Light/actions/straighten-small.png X%%DATADIR%%/images/Light/actions/straighten.png X%%DATADIR%%/images/Light/actions/toleftend.png X%%DATADIR%%/images/Light/actions/torightend.png X%%DATADIR%%/images/Light/actions/transform.png X%%DATADIR%%/images/Light/actions/trash-show-empty.png X%%DATADIR%%/images/Light/actions/trash-show-full.png X%%DATADIR%%/images/Light/actions/trash-thumbnail.png X%%DATADIR%%/images/Light/actions/trash.png X%%DATADIR%%/images/Light/actions/undelete-rtl.png X%%DATADIR%%/images/Light/actions/undelete-thumbnail-rtl.png X%%DATADIR%%/images/Light/actions/undelete-thumbnail.png X%%DATADIR%%/images/Light/actions/undelete.png X%%DATADIR%%/images/Light/actions/warnhl.png X%%DATADIR%%/images/Light/actions/warnsh.png X%%DATADIR%%/images/Light/actions/wb-auto.png X%%DATADIR%%/images/Light/actions/wb-camera.png X%%DATADIR%%/images/Light/actions/wb-cloudy.png X%%DATADIR%%/images/Light/actions/wb-custom.png X%%DATADIR%%/images/Light/actions/wb-flash.png X%%DATADIR%%/images/Light/actions/wb-fluorescent.png X%%DATADIR%%/images/Light/actions/wb-lamp.png X%%DATADIR%%/images/Light/actions/wb-led.png X%%DATADIR%%/images/Light/actions/wb-shade.png X%%DATADIR%%/images/Light/actions/wb-sun.png X%%DATADIR%%/images/Light/actions/wb-tungsten.png X%%DATADIR%%/images/Light/devices/computer.png X%%DATADIR%%/images/Light/devices/drive-harddisk.png X%%DATADIR%%/images/Light/devices/drive-optical.png X%%DATADIR%%/images/Light/devices/drive-removable-media.png X%%DATADIR%%/images/Light/devices/gtk-cdrom.png X%%DATADIR%%/images/Light/devices/media-flash.png X%%DATADIR%%/images/Light/devices/media-floppy.png X%%DATADIR%%/images/Light/devices/media-optical-bd.png X%%DATADIR%%/images/Light/devices/media-optical-dvd.png X%%DATADIR%%/images/Light/devices/media-optical.png X%%DATADIR%%/images/Light/devices/media-tape.png X%%DATADIR%%/images/Light/index.theme X%%DATADIR%%/images/Light/places/folder.png X%%DATADIR%%/images/Light/places/gtk-directory.png X%%DATADIR%%/images/Light/places/user-desktop.png X%%DATADIR%%/images/Light/places/user-home.png X%%DATADIR%%/images/Chanmixer-BB.png X%%DATADIR%%/images/Chanmixer-BG.png X%%DATADIR%%/images/Chanmixer-BR.png X%%DATADIR%%/images/Chanmixer-GB.png X%%DATADIR%%/images/Chanmixer-GG.png X%%DATADIR%%/images/Chanmixer-GR.png X%%DATADIR%%/images/Chanmixer-RB.png X%%DATADIR%%/images/Chanmixer-RG.png X%%DATADIR%%/images/Chanmixer-RR.png X%%DATADIR%%/images/PanelEnding.png X%%DATADIR%%/images/beforeafter.png X%%DATADIR%%/images/cglabel0.png X%%DATADIR%%/images/cglabel1.png X%%DATADIR%%/images/cglabel2.png X%%DATADIR%%/images/cglabel3.png X%%DATADIR%%/images/cglabel4.png X%%DATADIR%%/images/cglabel5.png X%%DATADIR%%/images/clabel0.png X%%DATADIR%%/images/clabel1.png X%%DATADIR%%/images/clabel2.png X%%DATADIR%%/images/clabel3.png X%%DATADIR%%/images/clabel4.png X%%DATADIR%%/images/clabel5.png X%%DATADIR%%/images/closedhand.png X%%DATADIR%%/images/colour.png X%%DATADIR%%/images/crop-auto.png X%%DATADIR%%/images/crop.png X%%DATADIR%%/images/cross.png X%%DATADIR%%/images/crossed-arrows-out.png X%%DATADIR%%/images/curveType-NURBS.png X%%DATADIR%%/images/curveType-controlPoints.png X%%DATADIR%%/images/curveType-flatLinear.png X%%DATADIR%%/images/curveType-linear.png X%%DATADIR%%/images/curveType-parametric.png X%%DATADIR%%/images/curveType-spline.png X%%DATADIR%%/images/curveType-unchanged.png X%%DATADIR%%/images/detail.png X%%DATADIR%%/images/default-settings-ltr.png X%%DATADIR%%/images/default-settings-rtl.png X%%DATADIR%%/images/distortion-auto.png X%%DATADIR%%/images/distortion.png X%%DATADIR%%/images/edited-small.png X%%DATADIR%%/images/edited.png X%%DATADIR%%/images/editedg-small.png X%%DATADIR%%/images/editednot-small.png X%%DATADIR%%/images/editednotg-small.png X%%DATADIR%%/images/empty.png X%%DATADIR%%/images/exposure.png X%%DATADIR%%/images/filter.png X%%DATADIR%%/images/filterclear.png X%%DATADIR%%/images/folder.png X%%DATADIR%%/images/fullscreen-exit.png X%%DATADIR%%/images/fullscreen.png X%%DATADIR%%/images/grayrated.png X%%DATADIR%%/images/gtk-add.png X%%DATADIR%%/images/gtk-apply.png X%%DATADIR%%/images/gtk-close.png X%%DATADIR%%/images/gtk-close-small.png X%%DATADIR%%/images/gtk-color-picker-small.png X%%DATADIR%%/images/gtk-color-picker.png X%%DATADIR%%/images/gtk-open.png X%%DATADIR%%/images/gtk-save-large.png X%%DATADIR%%/images/gtk-undo-ltr.png X%%DATADIR%%/images/gtk-undo-rtl.png X%%DATADIR%%/images/gtk-undoall-ltr.png X%%DATADIR%%/images/gtk-undoall-rtl.png X%%DATADIR%%/images/gtk-zoom-100.png X%%DATADIR%%/images/gtk-zoom-fit.png X%%DATADIR%%/images/gtk-zoom-in.png X%%DATADIR%%/images/gtk-zoom-out.png X%%DATADIR%%/images/histBar.png X%%DATADIR%%/images/histBlue.png X%%DATADIR%%/images/histGreen.png X%%DATADIR%%/images/histRaw.png X%%DATADIR%%/images/histRed.png X%%DATADIR%%/images/histValue.png X%%DATADIR%%/images/image-editor.png X%%DATADIR%%/images/info.png X%%DATADIR%%/images/list-add-small.png X%%DATADIR%%/images/list-remove-red-small.png X%%DATADIR%%/images/list-remove.png X%%DATADIR%%/images/lock-off.png X%%DATADIR%%/images/lock-on.png X%%DATADIR%%/images/logoicon-wind.png X%%DATADIR%%/images/media-usb.png X%%DATADIR%%/images/meta.png X%%DATADIR%%/images/network.png X%%DATADIR%%/images/nocolorlabel.png X%%DATADIR%%/images/notrated.png X%%DATADIR%%/images/openhand.png X%%DATADIR%%/images/panel-to-bottom.png X%%DATADIR%%/images/panel-to-left.png X%%DATADIR%%/images/panel-to-right.png X%%DATADIR%%/images/panel-to-top.png X%%DATADIR%%/images/popuparrow.png X%%DATADIR%%/images/processing-play.png X%%DATADIR%%/images/processing-pause.png X%%DATADIR%%/images/processing.png X%%DATADIR%%/images/rated.png X%%DATADIR%%/images/ratednot.png X%%DATADIR%%/images/ratednotg.png X%%DATADIR%%/images/raw.png X%%DATADIR%%/images/recent-save.png X%%DATADIR%%/images/refresh-red.png X%%DATADIR%%/images/refresh-white.png X%%DATADIR%%/images/resize.png X%%DATADIR%%/images/rt-logo-large.png X%%DATADIR%%/images/rt-logo.png X%%DATADIR%%/images/saved.png X%%DATADIR%%/images/savedg.png X%%DATADIR%%/images/savednot.png X%%DATADIR%%/images/savednotg.png X%%DATADIR%%/images/splash.png X%%DATADIR%%/images/stock-flip-horizontal.png X%%DATADIR%%/images/stock-flip-vertical.png X%%DATADIR%%/images/stock-rotate-270.png X%%DATADIR%%/images/trash.png X%%DATADIR%%/images/stock-rotate-90.png X%%DATADIR%%/images/straighten-small.png X%%DATADIR%%/images/straighten.png X%%DATADIR%%/images/toleftend.png X%%DATADIR%%/images/torightend.png X%%DATADIR%%/images/transform.png X%%DATADIR%%/images/trash-show-empty.png X%%DATADIR%%/images/trash-show-full.png X%%DATADIR%%/images/uncolorlabel.png X%%DATADIR%%/images/undelete.png X%%DATADIR%%/images/unrated.png X%%DATADIR%%/images/warnhl.png X%%DATADIR%%/images/warnsh.png X@dirrm %%DATADIR%%/themes/gray_textured X@dirrm %%DATADIR%%/themes X@dirrm %%DATADIR%%/sounds X@dirrm %%DATADIR%%/profiles X@dirrm %%DATADIR%%/languages X@dirrm %%DATADIR%%/images/Light/places X@dirrm %%DATADIR%%/images/Light/devices X@dirrm %%DATADIR%%/images/Light/actions X@dirrm %%DATADIR%%/images/Light X@dirrm %%DATADIR%%/images/Dark/places X@dirrm %%DATADIR%%/images/Dark/devices X@dirrm %%DATADIR%%/images/Dark/actions X@dirrm %%DATADIR%%/images/Dark X@dirrm %%DATADIR%%/images X@dirrm %%DATADIR%%/iccprofiles/output X@dirrm %%DATADIR%%/iccprofiles/input X@dirrm %%DATADIR%%/iccprofiles X@dirrm %%DATADIR%%/dcpprofiles X@dirrm %%DATADIR%% X@dirrm %%DOCSDIR%% X@dirrmtry share/applications d830ddd61d7164e253793a31b7038bd2 echo x - rawtherapee/Makefile sed 's/^X//' >rawtherapee/Makefile << '1237f53a80c8d93d09819b5652667c96' X# Created by: stas X# $FreeBSD: head/graphics/rawtherapee/Makefile 314960 2013-03-22 20:06:14Z makc$ X# New ports collection makefile for: rawtherapee X# Date created: 10 January 2010 X# X# X XPORTNAME= rawtherapee XPORTVERSION= 4.0.10 XCATEGORIES= graphics XMASTER_SITES= GOOGLE_CODE X XMAINTAINER= ports@FreeBSD.org XCOMMENT= A powerful RAW image processing application X XLICENSE= GPLv3 X XLIB_DEPENDS= gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24 \ X iptcdata:${PORTSDIR}/graphics/libiptcdata \ X jpeg:${PORTSDIR}/graphics/jpeg \ X lcms2:${PORTSDIR}/graphics/lcms2 \ X png15:${PORTSDIR}/graphics/png \ X tiff:${PORTSDIR}/graphics/tiff \ X sigc-2.0:${PORTSDIR}/devel/libsigc++20 \ X canberra-gtk3:${PORTSDIR}/audio/libcanberra-gtk3 X XUSES= cmake:outsource XMAKE_JOBS_SAFE= yes XUSE_GCC= 4.6 XUSE_XZ= yes XUSE_GNOME= gtk30 glib20 XUSE_LDCONFIG= yes XUSE_PKGCONFIG= yes XCFLAGS+= -I${LOCALBASE}/include/gcc46 -I${LOCALBASE}/include -fPIC ${PTHREAD_CFLAGS} XCXXFLAGS+= -I${LOCALBASE}/include/gcc46 -I${LOCALBASE}/include -fPIC ${PTHREAD_CFLAGS} XLDFLAGS+= -L${LOCALBASE}/lib/gcc46 -L${LOCALBASE}/lib ${PTHREAD_LIBS} XCMAKE_ENV= CFLAGS="${CFLAGS}" \ X LDFLAGS="${LDFLAGS}" XCMAKE_ARGS+= -DDOCDIR="${DOCSDIR}" \ X -DCREDITSDIR="${DOCSDIR}" \ X -DLICENCEDIR="${DOCSDIR}" \ X -DDESKTOPDIR="${DESKTOPDIR}" \ X -DDATADIR="${DATADIR}" \ X -DCMAKE_C_FLAGS="${CFLAGS}" \ X -DCMAKE_CXX_FLAGS="${CXXFLAGS}" XSUB_FILES= rawtherapee XSUB_LIST= RTDIR="${RTDIR}" XINSTALLS_ICONS= yes X XRTDIR= ${PREFIX}/libdata/${PORTNAME} X XOPTIONS_DEFINE= OPTIMIZED_CFLAGS OPENMP XOPTIONS_DEFAULT= OPTIMIZED_CFLAGS OPENMP XOPENMP_DESC= Enable multicore processing using OpenMP X Xpost-patch: X @${REINPLACE_CMD} -e 's#<auto_ptr.h>#<memory>#g' \ X ${WRKSRC}/rtgui/darkframe.h ${WRKSRC}/rtgui/flatfield.h \ X ${WRKSRC}/rtgui/icmpanel.h X X.include <bsd.port.pre.mk> X X.if ${ARCH} == "amd64" || ${ARCH} == "i386" X.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} XCFLAGS+= -O3 -ffast-math -fexpensive-optimizations \ X -funroll-loops -msse XCXXFLAGS+= -O3 -ffast-math -fexpensive-optimizations \ X -funroll-loops -msse X.endif X.endif X X.if ${PORT_OPTIONS:MOPENMP} XCMAKE_ARGS+= -DOPTION_OMP:BOOL=ON X.else XCMAKE_ARGS+= -DOPTION_OMP:BOOL=OFF X.endif X X.include <bsd.port.post.mk> 1237f53a80c8d93d09819b5652667c96 echo x - rawtherapee/distinfo sed 's/^X//' >rawtherapee/distinfo << '93d97b3d562e905788ddef86093026a6' XSHA256 (rawtherapee-4.0.10.tar.xz) = 4f80a00b0fe0a69c8cc09fda155aa81cf47dccb516c6c6b249875f3c456d7ac5 XSIZE (rawtherapee-4.0.10.tar.xz) = 11823324 93d97b3d562e905788ddef86093026a6 echo x - rawtherapee/pkg-descr sed 's/^X//' >rawtherapee/pkg-descr << 'f6b037b76adf29c5894d480a8d40a065' X RawTherapee is a powerful RAW image processing appliction. XMain features: X * Selectable high performance demosaicing algorithms X (EAHD and HPHD and VNG-4). X * Image post processing in 16 bit / channel mode X * Exposure control in RGB space X * Auto exposure with adjustable clipping point / Exposure compensation / X Shadow and highight compression / Contrast adjustment, curve editor X * White balance adjustment in RGB space X * With in-camera, automatic and spot white balance options / X Temperature/Green tint fine tuning X * Highlight Recovery X * Shadows/Highlights control in RGB space X * Basic Luminance curve tool to modify the luminance channel X in CIELab color space X * Brightness / Contrast adjustment, curve editor X * USM sharpening applied on the CIELab luminance channel X * Classical USM parameters (Radius, Amount, Threshold) / Option to avoid X noise amplification / Sharpening halo control X * Optional RL Deconvolution based sharpening for even better sharpening results X * Color shift control in CIELab color space X * Allows color shift by shifting the CIELab "a" and "b" channels X * Color booster applied on the CIELab "a" and "b" channels X * Amplifies color channels "a" and "b" together or separately / X Avoids color overamplification in high chrominance areas / X Option to avoid clipping caused by too high color boosting X * Luminance denoising algorithm applied on the CIELab luminance channel X * Edge sensitive method to preserve as much details as possible X * Color denoising tool applied on the CIELab "a" and "b" channels X * Classical gaussian blur or edge sensitive bluring of the color channels X * Fast switching between different postprocessing profiles X * Image flipping horizontally or vertically, rotation by 90 degrees clockwise X or counter clockwise X * Arbitrary image rotation (straightening tool) with fill function or X automatic crop X * Simple lens distortion correction X * Crop tool X * Chromatic Aberration correction tool X * Channel Mixer for Red, Green and Blue channels X * C/A Correction X * Vignetting Correction X * ICC based color management X * Change History with bookmarks to support before/after checking X XWWW: http://www.rawtherapee.com/ f6b037b76adf29c5894d480a8d40a065 exit >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304272127.r3RLRWMW021328>