From nobody@FreeBSD.org  Sat Apr 27 21:27:33 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id 1E9DAF84
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 27 Apr 2013 21:27:33 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 0CE5B1B5A
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 27 Apr 2013 21:27:33 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.5/8.14.5) with ESMTP id r3RLRWYG021329
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 27 Apr 2013 21:27:32 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.5/8.14.5/Submit) id r3RLRWMW021328;
	Sat, 27 Apr 2013 21:27:32 GMT
	(envelope-from nobody)
Message-Id: <201304272127.r3RLRWMW021328@red.freebsd.org>
Date: Sat, 27 Apr 2013 21:27:32 GMT
From: Waitman Gobble <uzimac@da3m0n8t3r.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [updated port] graphics/rawtherapee to 4.0.10
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         178206
>Category:       ports
>Synopsis:       [updated port] graphics/rawtherapee to 4.0.10
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    mandree
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Apr 27 21:30:00 UTC 2013
>Closed-Date:    Sat Jun 15 17:50:56 UTC 2013
>Last-Modified:  Sun Jun 16 23:50:00 UTC 2013
>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:
Responsible-Changed-From-To: freebsd-ports-bugs->mandree 
Responsible-Changed-By: mandree 
Responsible-Changed-When: Sat Jun 15 16:30:15 UTC 2013 
Responsible-Changed-Why:  
I'll take it, but note that I will update to 4.0.11 right away. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178206 
State-Changed-From-To: open->closed 
State-Changed-By: mandree 
State-Changed-When: Sat Jun 15 17:50:56 UTC 2013 
State-Changed-Why:  
obsolete 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178206 

From: Matthias Andree <mandree@FreeBSD.org>
To: bug-followup@FreeBSD.org, uzimac@da3m0n8t3r.com
Cc:  
Subject: Re: ports/178206: [updated port] graphics/rawtherapee to 4.0.10
Date: Sat, 15 Jun 2013 19:50:35 +0200

 FYI, the libgcc/libgomp messup is solved by two things:
 
 1. adding -rpath DIR:DIR2 to the linker command line (or
 -Wl,-rpath,DIR:DIR2), which the port already does;
 
 2. adding SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) to the top-level
 CMakeLists.txt in the WRKSRC.
 
 The latter ensures that the run-time link path remains inside the
 executables when they are being installed.
 
 I am not going for gtk30 unless that is required, at least not before
 GNOME is based on it.
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/178206: commit references a PR
Date: Sat, 15 Jun 2013 18:01:15 +0000 (UTC)

 Author: mandree
 Date: Sat Jun 15 18:01:05 2013
 New Revision: 321008
 URL: http://svnweb.freebsd.org/changeset/ports/321008
 
 Log:
   Update to Rawtherapee 4.0.11. New features, faster, requires GCC 4.6+.
   
   This should fix the issues mentioned in the PRs given below,
   in particular, it should do away with the need for libmap.conf hacks
   for libgcc_s, libgomp, libobjc, libssp, libstdc++.
   (the Makefile as I took it already set the linker's -rpath, and
   patch-CMakeLists.txt ensures CMake keeps it during "make install").
   
   ChangeLog 4.0.10: http://rawtherapee.com/blog/rawtherapee-4.0.10-released
   
   ChangeLog 4.0.11: http://rawtherapee.com/blog/rawtherapee-4.0.11-released
   
   PR:		ports/171079
   PR:		ports/178206
 
 Modified:
   head/graphics/rawtherapee/Makefile
   head/graphics/rawtherapee/distinfo   (contents, props changed)
   head/graphics/rawtherapee/files/patch-AboutThisBuild.cmake
   head/graphics/rawtherapee/files/patch-CMakeLists.txt   (contents, props changed)
   head/graphics/rawtherapee/pkg-plist   (contents, props changed)
 
 Modified: head/graphics/rawtherapee/Makefile
 ==============================================================================
 --- head/graphics/rawtherapee/Makefile	Sat Jun 15 17:21:40 2013	(r321007)
 +++ head/graphics/rawtherapee/Makefile	Sat Jun 15 18:01:05 2013	(r321008)
 @@ -2,7 +2,7 @@
  # $FreeBSD$
  
  PORTNAME=	rawtherapee
 -PORTVERSION=	4.0.9
 +PORTVERSION=	4.0.11
  CATEGORIES=	graphics
  MASTER_SITES=	GOOGLE_CODE
  
 @@ -24,6 +24,8 @@ MAKE_JOBS_SAFE=	yes
  USE_XZ=		yes
  USE_GNOME=	gtk20 glib20
  USE_LDCONFIG=	yes
 +# base GCC and clang in 9.1-RELEASE are insufficient:
 +USE_GCC=	4.6+
  CFLAGS+=	-I${LOCALBASE}/include -fPIC ${PTHREAD_CFLAGS}
  CXXFLAGS+=	-I${LOCALBASE}/include -fPIC ${PTHREAD_CFLAGS}
  LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
 @@ -39,6 +41,7 @@ CMAKE_ARGS+=	-DDOCDIR="${DOCSDIR}" \
  SUB_FILES=	rawtherapee
  SUB_LIST=	RTDIR="${RTDIR}"
  INSTALLS_ICONS=	yes
 +MAN1=		rawtherapee.1
  
  RTDIR=		${PREFIX}/libdata/${PORTNAME}
  
 @@ -50,6 +53,8 @@ post-patch:
  	@${REINPLACE_CMD} -e 's#<auto_ptr.h>#<memory>#g' \
  		${WRKSRC}/rtgui/darkframe.h ${WRKSRC}/rtgui/flatfield.h \
  		${WRKSRC}/rtgui/icmpanel.h
 +	@${REINPLACE_CMD} -e 's#DESTINATION "$${CMAKE_INSTALL_PREFIX}/share/man/man1"#DESTINATION "${MANPREFIX}/man/man1/"#' \
 +		${WRKSRC}/CMakeLists.txt
  
  .include <bsd.port.pre.mk>
  
 
 Modified: head/graphics/rawtherapee/distinfo
 ==============================================================================
 --- head/graphics/rawtherapee/distinfo	Sat Jun 15 17:21:40 2013	(r321007)
 +++ head/graphics/rawtherapee/distinfo	Sat Jun 15 18:01:05 2013	(r321008)
 @@ -1,2 +1,2 @@
 -SHA256 (rawtherapee-4.0.9.tar.xz) = 4ad49b5d3aae9a178b1cfa5efca653982f0a52763ddd37f89500e8fedfb187d2
 -SIZE (rawtherapee-4.0.9.tar.xz) = 40201920
 +SHA256 (rawtherapee-4.0.11.tar.xz) = 40401495ea5a693b9649f9b4fb101953cbaf6bc5fe01b81dd2ab30531afe567b
 +SIZE (rawtherapee-4.0.11.tar.xz) = 14828520
 
 Modified: head/graphics/rawtherapee/files/patch-AboutThisBuild.cmake
 ==============================================================================
 --- head/graphics/rawtherapee/files/patch-AboutThisBuild.cmake	Sat Jun 15 17:21:40 2013	(r321007)
 +++ head/graphics/rawtherapee/files/patch-AboutThisBuild.cmake	Sat Jun 15 18:01:05 2013	(r321008)
 @@ -1,31 +1,27 @@
 ---- ./AboutThisBuild.cmake.orig	2012-06-03 19:56:20.000000000 +0400
 -+++ ./AboutThisBuild.cmake	2012-08-07 15:18:18.000000000 +0400
 -@@ -8,28 +8,9 @@
 -   find_file(HG_CMD hg)
 -   set (SHELL "/bin/bash")
 - else (WIN32) # Linux
 --  find_file(HG_CMD hg)
 -   set (SHELL "/bin/bash")
 - endif (WIN32)
 +--- ./AboutThisBuild.cmake.orig	2013-05-29 16:29:36.000000000 +0200
 ++++ ./AboutThisBuild.cmake	2013-06-15 19:16:41.000000000 +0200
 +@@ -11,24 +11,9 @@
 +     find_file(HG_CMD hg)
 +     set (SHELL "/bin/bash")
 +   else (WIN32) # Linux
 +-    find_file(HG_CMD hg)
 +     set (SHELL "/bin/bash")
 +   endif (WIN32)
   
 --# the hg command is looked for again, at build time
 --if (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 --  message(FATAL_ERROR "hg command not found!")
 --else (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 --  message(STATUS "hg command found: ${HG_CMD}")
 --endif (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 +-  # Fail if Mercurial is not installed
 +-  if (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 +-    message(FATAL_ERROR "hg command not found!")
 +-  else (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 +-    message(STATUS "hg command found: ${HG_CMD}")
 +-  endif (HG_CMD STREQUAL HG_CMD-NOTFOUND)
  -
 --set (OUT_FILE "${SRC_DIR}/AboutThisBuild.txt")
 --# there should be a better way of getting the compiler + compiler version, not restrained to Gcc
 --execute_process(COMMAND gcc -dumpversion OUTPUT_VARIABLE GCC_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE)
 --execute_process(COMMAND ${HG_CMD} -R ${SRC_DIR} branch OUTPUT_VARIABLE HG_BRANCH OUTPUT_STRIP_TRAILING_WHITESPACE)
 --execute_process(COMMAND ${HG_CMD} parents --template={latesttag}.{latesttagdistance} WORKING_DIRECTORY ${SRC_DIR} OUTPUT_VARIABLE HG_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE)
 --execute_process(COMMAND ${HG_CMD} parents --template={node|short} WORKING_DIRECTORY ${SRC_DIR} OUTPUT_VARIABLE HG_CHANGESET OUTPUT_STRIP_TRAILING_WHITESPACE)
 --execute_process(COMMAND ${HG_CMD} parents --template={latesttagdistance} WORKING_DIRECTORY ${SRC_DIR} OUTPUT_VARIABLE HG_TAGDISTANCE OUTPUT_STRIP_TRAILING_WHITESPACE)
 --if (CACHE_NAME_SUFFIX STREQUAL "")
 --  execute_process(COMMAND ${HG_CMD} parents --template={latesttag} WORKING_DIRECTORY ${SRC_DIR} OUTPUT_VARIABLE CACHE_NAME_SUFFIX OUTPUT_STRIP_TRAILING_WHITESPACE)
 --endif ()
 --
 - # build version.h from template
 - configure_file (${SRC_DIR}/rtgui/version.h.in ${SRC_DIR}/rtgui/version.h)
 - # build AboutThisBuild.txt from template
 +-  execute_process(COMMAND ${HG_CMD} -R "${PROJECT_SOURCE_DIR}" branch OUTPUT_VARIABLE HG_BRANCH OUTPUT_STRIP_TRAILING_WHITESPACE)
 +-  execute_process(COMMAND ${HG_CMD} -R "${PROJECT_SOURCE_DIR}" parents --template={latesttag}.{latesttagdistance} WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}" OUTPUT_VARIABLE HG_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE)
 +-  execute_process(COMMAND ${HG_CMD} -R "${PROJECT_SOURCE_DIR}" parents --template={node|short} WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}" OUTPUT_VARIABLE HG_CHANGESET OUTPUT_STRIP_TRAILING_WHITESPACE)
 +-  execute_process(COMMAND ${HG_CMD} -R "${PROJECT_SOURCE_DIR}" parents --template={latesttagdistance} WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}" OUTPUT_VARIABLE HG_TAGDISTANCE OUTPUT_STRIP_TRAILING_WHITESPACE)
 +-  if (CACHE_NAME_SUFFIX STREQUAL "")
 +-    execute_process(COMMAND ${HG_CMD} -R "${PROJECT_SOURCE_DIR}" parents --template={latesttag} WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}" OUTPUT_VARIABLE CACHE_NAME_SUFFIX OUTPUT_STRIP_TRAILING_WHITESPACE)
 +-  endif (CACHE_NAME_SUFFIX STREQUAL "")
 + else (REL_INFO_FILE STREQUAL REL_INFO_FILE-NOTFOUND)
 +   include("${PROJECT_SOURCE_DIR}/ReleaseInfo.cmake")
 + endif (REL_INFO_FILE STREQUAL REL_INFO_FILE-NOTFOUND)
 
 Modified: head/graphics/rawtherapee/files/patch-CMakeLists.txt
 ==============================================================================
 --- head/graphics/rawtherapee/files/patch-CMakeLists.txt	Sat Jun 15 17:21:40 2013	(r321007)
 +++ head/graphics/rawtherapee/files/patch-CMakeLists.txt	Sat Jun 15 18:01:05 2013	(r321008)
 @@ -1,37 +1,13 @@
 ---- ./CMakeLists.txt.orig	2012-01-31 05:00:05.000000000 +0400
 -+++ ./CMakeLists.txt	2012-03-29 19:28:04.000000000 +0400
 -@@ -230,7 +230,6 @@
 -               -P ${CMAKE_CURRENT_SOURCE_DIR}/About-Windows.cmake
 -       COMMENT "Creating the about file"
 -     )
 --    find_file(HG_CMD hg.exe HINTS ENV Path PATH_SUFFIXES ../)
 - 
 -   elseif (APPLE)
 -  
 -@@ -250,7 +249,6 @@
 -               -P ${CMAKE_CURRENT_SOURCE_DIR}/About-Apple.cmake
 -       COMMENT "Creating the about file"
 -     )
 --    find_file(HG_CMD hg PATHS "/opt/local/bin" "/usr/local/bin" "/usr/bin")
 -     find_file(HG_CMD hg)
 - 
 -   else (WIN32)
 -@@ -271,18 +269,11 @@
 -               -P ${CMAKE_CURRENT_SOURCE_DIR}/About-Linux.cmake
 -       COMMENT "Creating the about file"
 -     )
 --    find_file(HG_CMD hg)
 - 
 -   endif (WIN32)
 -  
 -   add_dependencies(AboutFile Debug Release MinSizeRel RelWithDebInfo)
 - 
 --  if (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 --    message(FATAL_ERROR "hg command not found!")
 --  else (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 --    message(STATUS "hg command found: ${HG_CMD}")
 --  endif (HG_CMD STREQUAL HG_CMD-NOTFOUND)
 --
 - endif (AUTOMATED_BUILD_SYSTEM)
 +# This is required so that the RPATH information for libgcc/libgomp is
 +# not stripped during CMake's install phase: -- mandree
 +
 +--- ./CMakeLists.txt.orig	2013-06-15 19:16:41.000000000 +0200
 ++++ ./CMakeLists.txt	2013-06-15 19:17:02.000000000 +0200
 +@@ -6,6 +6,7 @@
 + endif (WIN32)
   
 + PROJECT(RawTherapee)
 ++SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
   
 + # the default target is 'Debug'
 + if (CMAKE_BUILD_TYPE STREQUAL "")
 
 Modified: head/graphics/rawtherapee/pkg-plist
 ==============================================================================
 --- head/graphics/rawtherapee/pkg-plist	Sat Jun 15 17:21:40 2013	(r321007)
 +++ head/graphics/rawtherapee/pkg-plist	Sat Jun 15 18:01:05 2013	(r321008)
 @@ -15,6 +15,7 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/dcpprofiles/Canon EOS 40D.dcp
  %%DATADIR%%/dcpprofiles/Canon EOS 450D.dcp
  %%DATADIR%%/dcpprofiles/Canon EOS 550D.dcp
 +%%DATADIR%%/dcpprofiles/Canon EOS 5D Mark III.dcp
  %%DATADIR%%/dcpprofiles/Canon EOS 5D.dcp
  %%DATADIR%%/dcpprofiles/Canon EOS 7D.dcp
  %%DATADIR%%/dcpprofiles/Canon EOS D60.dcp
 @@ -24,6 +25,7 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/dcpprofiles/Canon EOS-1D Mark III.dcp
  %%DATADIR%%/dcpprofiles/Canon PowerShot G10.dcp
  %%DATADIR%%/dcpprofiles/Canon PowerShot G12.dcp
 +%%DATADIR%%/dcpprofiles/Leaf Aptus 75.dcp
  %%DATADIR%%/dcpprofiles/Nikon D200.dcp
  %%DATADIR%%/dcpprofiles/Nikon D300.dcp
  %%DATADIR%%/dcpprofiles/Nikon D3000.dcp
 @@ -33,13 +35,19 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/dcpprofiles/Nikon D5100.dcp
  %%DATADIR%%/dcpprofiles/Nikon D700.dcp
  %%DATADIR%%/dcpprofiles/Nikon D7000.dcp
 +%%DATADIR%%/dcpprofiles/Nikon D800.dcp
  %%DATADIR%%/dcpprofiles/Olympus E-1.dcp
 +%%DATADIR%%/dcpprofiles/Olympus E-510.dcp
 +%%DATADIR%%/dcpprofiles/Olympus E-520.dcp
 +%%DATADIR%%/dcpprofiles/Olympus E-M5.dcp
  %%DATADIR%%/dcpprofiles/Olympus E-P2.dcp
 +%%DATADIR%%/dcpprofiles/Olympus XZ-1.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ150.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ35.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ38.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-G1.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-G3.dcp
 +%%DATADIR%%/dcpprofiles/Panasonic DMC-G5.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-GH1.dcp
  %%DATADIR%%/dcpprofiles/Panasonic DMC-GH2.dcp
  %%DATADIR%%/dcpprofiles/Pentax K10D.dcp
 @@ -92,10 +100,6 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/images/Chanmixer-RB.png
  %%DATADIR%%/images/Chanmixer-RG.png
  %%DATADIR%%/images/Chanmixer-RR.png
 -%%DATADIR%%/images/Dark/.gtk-undo-ltr-small.png
 -%%DATADIR%%/images/Dark/.gtk-undo-ltr.png
 -%%DATADIR%%/images/Dark/.gtk-undo-rtl-small.png
 -%%DATADIR%%/images/Dark/.gtk-undo-rtl.png
  %%DATADIR%%/images/Dark/actions/PanelEnding.png
  %%DATADIR%%/images/Dark/actions/beforeafter.png
  %%DATADIR%%/images/Dark/actions/cglabel0.png
 @@ -174,6 +178,10 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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
 @@ -192,6 +200,9 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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
 @@ -201,6 +212,12 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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/previewmodeF-off.png
  %%DATADIR%%/images/Dark/actions/previewmodeF-on.png
  %%DATADIR%%/images/Dark/actions/previewmodeG-off.png
 @@ -213,6 +230,8 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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
 @@ -266,10 +285,6 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/images/Dark/places/gtk-directory.png
  %%DATADIR%%/images/Dark/places/user-desktop.png
  %%DATADIR%%/images/Dark/places/user-home.png
 -%%DATADIR%%/images/Light/.gtk-undo-ltr-small.png
 -%%DATADIR%%/images/Light/.gtk-undo-ltr.png
 -%%DATADIR%%/images/Light/.gtk-undo-rtl-small.png
 -%%DATADIR%%/images/Light/.gtk-undo-rtl.png
  %%DATADIR%%/images/Light/actions/PanelEnding.png
  %%DATADIR%%/images/Light/actions/beforeafter.png
  %%DATADIR%%/images/Light/actions/cglabel0.png
 @@ -348,6 +363,10 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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
 @@ -366,6 +385,9 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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
 @@ -375,6 +397,12 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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/previewmodeF-off.png
  %%DATADIR%%/images/Light/actions/previewmodeF-on.png
  %%DATADIR%%/images/Light/actions/previewmodeG-off.png
 @@ -387,6 +415,8 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%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
 @@ -567,13 +597,14 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/languages/Czech
  %%DATADIR%%/languages/Dansk
  %%DATADIR%%/languages/Deutsch
 -%%DATADIR%%/languages/English
 +%%DATADIR%%/languages/English (UK)
 +%%DATADIR%%/languages/English (US)
  %%DATADIR%%/languages/Espanol
  %%DATADIR%%/languages/Euskara
  %%DATADIR%%/languages/Francais
  %%DATADIR%%/languages/Greek
  %%DATADIR%%/languages/Hebrew
 -%%DATADIR%%/languages/Italian
 +%%DATADIR%%/languages/Italiano
  %%DATADIR%%/languages/Japanese
  %%DATADIR%%/languages/LICENSE
  %%DATADIR%%/languages/Latvian
 @@ -593,19 +624,70 @@ share/icons/hicolor/48x48/apps/rawtherap
  %%DATADIR%%/languages/Turkish
  %%DATADIR%%/languages/default
  %%DATADIR%%/options
 -%%DATADIR%%/profiles/BW-1.pp3
 -%%DATADIR%%/profiles/BW-2.pp3
 -%%DATADIR%%/profiles/BW-3.pp3
 -%%DATADIR%%/profiles/BW-4.pp3
 -%%DATADIR%%/profiles/Default-ISO-High.pp3
 -%%DATADIR%%/profiles/Default-ISO-Medium.pp3
 +%%DATADIR%%/profiles/BW 1.pp3
 +%%DATADIR%%/profiles/BW 2.pp3
 +%%DATADIR%%/profiles/BW 3.pp3
 +%%DATADIR%%/profiles/BW 4.pp3
 +%%DATADIR%%/profiles/Deep Shadows.pp3
 +%%DATADIR%%/profiles/Default ISO High.pp3
 +%%DATADIR%%/profiles/Default ISO Medium.pp3
  %%DATADIR%%/profiles/Default.pp3
 -%%DATADIR%%/profiles/Highkey-1.pp3
 -%%DATADIR%%/profiles/Natural-1.pp3
 -%%DATADIR%%/profiles/Natural-2.pp3
 +%%DATADIR%%/profiles/Equilibrated.pp3
 +%%DATADIR%%/profiles/Faded Amber 1 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Amber 1 TM.pp3
 +%%DATADIR%%/profiles/Faded Amber 1.pp3
 +%%DATADIR%%/profiles/Faded Blue 1 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Blue 1 TM.pp3
 +%%DATADIR%%/profiles/Faded Blue 1.pp3
 +%%DATADIR%%/profiles/Faded Blue Pink TM.pp3
 +%%DATADIR%%/profiles/Faded Blue Pink.pp3
 +%%DATADIR%%/profiles/Faded Chocolate 1 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Chocolate 2 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Golden 1.pp3
 +%%DATADIR%%/profiles/Faded Golden 2.pp3
 +%%DATADIR%%/profiles/Faded Green 1 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Green 1 TM.pp3
 +%%DATADIR%%/profiles/Faded Green 1.pp3
 +%%DATADIR%%/profiles/Faded Green 2.pp3
 +%%DATADIR%%/profiles/Faded Green 3.pp3
 +%%DATADIR%%/profiles/Faded Neutral TM.pp3
 +%%DATADIR%%/profiles/Faded Neutral.pp3
 +%%DATADIR%%/profiles/Faded Purple 1 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Purple 1 TM.pp3
 +%%DATADIR%%/profiles/Faded Purple 1.pp3
 +%%DATADIR%%/profiles/Faded Purple 2 TM.pp3
 +%%DATADIR%%/profiles/Faded Purple 2.pp3
 +%%DATADIR%%/profiles/Faded Teal Orange TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Teal Orange TM.pp3
 +%%DATADIR%%/profiles/Faded Teal Orange.pp3
 +%%DATADIR%%/profiles/Faded Warm 1 TM Bright.pp3
 +%%DATADIR%%/profiles/Faded Warm 1 TM.pp3
 +%%DATADIR%%/profiles/Faded Warm 1.pp3
 +%%DATADIR%%/profiles/Faded Warm 2.pp3
 +%%DATADIR%%/profiles/Faded Warm 3.pp3
 +%%DATADIR%%/profiles/High-Key.pp3
 +%%DATADIR%%/profiles/Natural 1.pp3
 +%%DATADIR%%/profiles/Natural 2.pp3
  %%DATADIR%%/profiles/Neutral.pp3
 -%%DATADIR%%/profiles/Punchy-1.pp3
 -%%DATADIR%%/profiles/Punchy-2.pp3
 +%%DATADIR%%/profiles/Pop 1.pp3
 +%%DATADIR%%/profiles/Pop 2 L.pp3
 +%%DATADIR%%/profiles/Pop 3 Skin.pp3
 +%%DATADIR%%/profiles/Pop 4 BW.pp3
 +%%DATADIR%%/profiles/Portrait Lejto.pp3
 +%%DATADIR%%/profiles/Portrait Smooth.pp3
 +%%DATADIR%%/profiles/Punchy 1.pp3
 +%%DATADIR%%/profiles/Punchy 2.pp3
 +%%DATADIR%%/profiles/Skintones - Natural TM.pp3
 +%%DATADIR%%/profiles/Skintones - Natural.pp3
 +%%DATADIR%%/profiles/Skintones - Pale TM Bright.pp3
 +%%DATADIR%%/profiles/Skintones - Pale TM.pp3
 +%%DATADIR%%/profiles/Skintones - Pale.pp3
 +%%DATADIR%%/profiles/Skintones - Soft Texture.pp3
 +%%DATADIR%%/profiles/Skintones - Strong Texture.pp3
 +%%DATADIR%%/profiles/Skintones - Studio TM.pp3
 +%%DATADIR%%/profiles/Skintones - Studio.pp3
 +%%DATADIR%%/profiles/Skintones - StudioBase 1 TM.pp3
 +%%DATADIR%%/profiles/Skintones - StudioBase 1.pp3
  %%DATADIR%%/sounds/BatchComplete.wav
  %%DATADIR%%/sounds/Empty.wav
  %%DATADIR%%/sounds/ProcessComplete.wav
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/178206: commit references a PR
Date: Sat, 15 Jun 2013 20:15:38 +0000 (UTC)

 Author: mandree
 Date: Sat Jun 15 20:15:31 2013
 New Revision: 321016
 URL: http://svnweb.freebsd.org/changeset/ports/321016
 
 Log:
   - depend on libcanberra-gtk3 [1]
   - change cmake to cmake:outsource to avoid a warning [1]
   - paranoia: check rawtherapee --help if it prints the version number, to
     make sure that it links to the right shared libraries (base libgomp is
     insufficient), just in case RPATH propagation or setting breaks later
     on. [by yours truly]
   
   PR:		ports/178206 [1]
   Submitted by:	Waitman Gobble <uzimac@da3m0n8t3r.com> [1]
 
 Modified:
   head/graphics/rawtherapee/Makefile
 
 Modified: head/graphics/rawtherapee/Makefile
 ==============================================================================
 --- head/graphics/rawtherapee/Makefile	Sat Jun 15 19:39:56 2013	(r321015)
 +++ head/graphics/rawtherapee/Makefile	Sat Jun 15 20:15:31 2013	(r321016)
 @@ -17,9 +17,10 @@ LIB_DEPENDS=	gtkmm-2.4:${PORTSDIR}/x11-t
  		lcms2:${PORTSDIR}/graphics/lcms2 \
  		png15:${PORTSDIR}/graphics/png \
  		tiff:${PORTSDIR}/graphics/tiff \
 -		sigc-2.0:${PORTSDIR}/devel/libsigc++20
 +		sigc-2.0:${PORTSDIR}/devel/libsigc++20 \
 +		canberra-gtk3:${PORTSDIR}/audio/libcanberra-gtk3
  
 -USES=		cmake pkgconfig
 +USES=		cmake:outsource pkgconfig
  MAKE_JOBS_SAFE=	yes
  USE_XZ=		yes
  USE_GNOME=	gtk20 glib20
 @@ -56,6 +57,12 @@ post-patch:
  	@${REINPLACE_CMD} -e 's#DESTINATION "$${CMAKE_INSTALL_PREFIX}/share/man/man1"#DESTINATION "${MANPREFIX}/man/man1/"#' \
  		${WRKSRC}/CMakeLists.txt
  
 +# paranoia: run rawtherapee --help to be sure it finds all its
 +# shared libraries (this hinges on proper RPATH setting and propagation)
 +post-build:
 +	${PREFIX}/bin/rawtherapee --help 2>&1 \
 +	| ${EGREP} -q "RawTherapee, version ${PKGVERSION:C/_.*//:C/,.*//}"
 +
  .include <bsd.port.pre.mk>
  
  .if ${ARCH} == "amd64" || ${ARCH} == "i386"
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 

From: Mark Linimon <linimon@lonesome.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/178206: [updated port] graphics/rawtherapee to 4.0.10
Date: Sun, 16 Jun 2013 18:48:35 -0500

 ----- Forwarded message from Waitman Gobble <uzimac@da3m0n8t3r.com> -----
 
 Date: Sat, 15 Jun 2013 09:41:31 -0700 (PDT)
 From: Waitman Gobble <uzimac@da3m0n8t3r.com>
 To: mandree@freebsd.org, freebsd-ports-bugs@freebsd.org
 Subject: Re: ports/178206: [updated port] graphics/rawtherapee to 4.0.10
 
 On Sat, 15 Jun 2013 16:30:15 GMT, mandree@freebsd.org wrote: 
 >
 >Synopsis: [updated port] graphics/rawtherapee to 4.0.10
 >
 >Responsible-Changed-From-To: freebsd-ports-bugs->mandree
 >Responsible-Changed-By: mandree
 >Responsible-Changed-When: Sat Jun 15 16:30:15 UTC 2013
 >Responsible-Changed-Why: 
 >I'll take it, but note that I will update to 4.0.11 right away.
 >
 >http://www.freebsd.org/cgi/query-pr.cgi?pr=178206
 
 sounds good. but i think the port needs a little work, to avoid the use of
 /etc/libmap.conf. 
 
 --
 Waitman Gobble
 San Jose California USA
 +1.5108307875
 
 
 _______________________________________________
 freebsd-ports-bugs@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs
 To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org"
 
 
 ----- End forwarded message -----
>Unformatted:
