aboutsummaryrefslogtreecommitdiff
path: root/graphics/hugin
diff options
context:
space:
mode:
authorGreg Lehey <grog@FreeBSD.org>2019-04-07 06:24:34 +0000
committerGreg Lehey <grog@FreeBSD.org>2019-04-07 06:24:34 +0000
commitf9083c0a260dcc76c69adf06b7ace609b08c2b52 (patch)
tree8d6cf89a5e304efea84e6f154dabcbce185ab85c /graphics/hugin
parent2edf81e31494d70f4758881751b7c9b17757e7da (diff)
downloadports-f9083c0a260dcc76c69adf06b7ace609b08c2b52.tar.gz
ports-f9083c0a260dcc76c69adf06b7ace609b08c2b52.zip
Update to Hugin 2019.0
Notes
Notes: svn path=/head/; revision=498258
Diffstat (limited to 'graphics/hugin')
-rw-r--r--graphics/hugin/Makefile6
-rw-r--r--graphics/hugin/distinfo6
-rw-r--r--graphics/hugin/files/patch-CMakeLists.txt14
-rw-r--r--graphics/hugin/files/patch-gentoo_23dd5430
-rw-r--r--graphics/hugin/files/patch-sf_f6f56eb916
-rw-r--r--graphics/hugin/pkg-plist121
6 files changed, 79 insertions, 114 deletions
diff --git a/graphics/hugin/Makefile b/graphics/hugin/Makefile
index ed392c8a5e73..8a7d10fbd95a 100644
--- a/graphics/hugin/Makefile
+++ b/graphics/hugin/Makefile
@@ -2,15 +2,15 @@
# $FreeBSD$
PORTNAME= hugin
-PORTVERSION= 2018.0.0
-PORTREVISION= 9
+PORTVERSION= 2019.0.0
+PORTREVISION= 0
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}
MAINTAINER= grog@FreeBSD.org
COMMENT= GUI for Panorama Tools, to stitch panoramic images
-LIB_DEPENDS= libIlmImf.so:graphics/openexr \
+LIB_DEPENDS= libIlmImf.so:graphics/OpenEXR \
libImath.so:graphics/ilmbase \
libboost_thread.so:devel/boost-libs \
liblcms2.so:graphics/lcms2 \
diff --git a/graphics/hugin/distinfo b/graphics/hugin/distinfo
index d9c8438598ff..a6db4e9220c5 100644
--- a/graphics/hugin/distinfo
+++ b/graphics/hugin/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1517791084
-SHA256 (hugin-2018.0.0.tar.bz2) = d3af0d066ac50e3bb243a175a64ecda136d87178419457e8822e11bcf0e565cb
-SIZE (hugin-2018.0.0.tar.bz2) = 9838518
+TIMESTAMP = 1554606311
+SHA256 (hugin-2019.0.0.tar.bz2) = f94717c5035b776a552163bac5815916e0662008fabefafd790fa54b352e22d1
+SIZE (hugin-2019.0.0.tar.bz2) = 10297887
diff --git a/graphics/hugin/files/patch-CMakeLists.txt b/graphics/hugin/files/patch-CMakeLists.txt
deleted file mode 100644
index 7fe935118c9d..000000000000
--- a/graphics/hugin/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
---- CMakeLists.txt~ 2016-01-24 20:16:54.000000000 +1100
-+++ CMakeLists.txt 2016-02-29 14:04:08.376365000 +1100
-@@ -2,11 +2,6 @@
- # require at least cmake 2.8
- cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR )
-
--# prevent in-tree building
--if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
-- message(FATAL_ERROR "In-source builds are not allowed.")
--endif()
--
- if(COMMAND cmake_policy)
- cmake_policy(SET CMP0003 NEW)
- endif(COMMAND cmake_policy)
diff --git a/graphics/hugin/files/patch-gentoo_23dd54 b/graphics/hugin/files/patch-gentoo_23dd54
deleted file mode 100644
index 56f6ed413b40..000000000000
--- a/graphics/hugin/files/patch-gentoo_23dd54
+++ /dev/null
@@ -1,30 +0,0 @@
-https://gitweb.gentoo.org/repo/gentoo.git/diff/media-gfx/hugin/files/hugin-2018.0.0-exiv2-0.27.patch?id=450cbf95fae0141740b2c9f74265220651ee8863
-
---- src/hugin_base/panodata/Exiv2Helper.cpp
-+++ src/hugin_base/panodata/Exiv2Helper.cpp
-@@ -29,6 +29,7 @@
- #include "hugin_math/hugin_math.h"
- #include "hugin_utils/utils.h"
- #include "exiv2/easyaccess.hpp"
-+#include "exiv2/version.hpp"
-
- namespace HuginBase
- {
-@@ -232,7 +233,7 @@
- return false;
- };
- };
--#if EXIV2_TEST_VERSION(0,23,0)
-+#if defined EXIV2_VERSION && EXIV2_VERSION >= EXIV2_MAKE_VERSION(0,23,0)
- if (_getExiv2Value(exifData, "Exif.PentaxDng.RedBalance", val1) &&
- _getExiv2Value(exifData, "Exif.PentaxDng.BlueBalance", val2))
- {
-@@ -563,7 +564,7 @@
- std::string lensName;
- // first we are reading LensModel in Exif section, this is only available
- // with EXIF >= 2.3
--#if EXIV2_TEST_VERSION(0,22,0)
-+#if defined EXIV2_VERSION && EXIV2_VERSION >= EXIV2_MAKE_VERSION(0,22,0)
- //the string "Exif.Photo.LensModel" is only defined in exiv2 0.22.0 and above
- if(_getExiv2Value(exifData, "Exif.Photo.LensModel", lensName))
- #else
diff --git a/graphics/hugin/files/patch-sf_f6f56eb9 b/graphics/hugin/files/patch-sf_f6f56eb9
deleted file mode 100644
index 19cc95343def..000000000000
--- a/graphics/hugin/files/patch-sf_f6f56eb9
+++ /dev/null
@@ -1,16 +0,0 @@
-Obtained from:
- https://sourceforge.net/p/hugin/hugin/ci/f6f56eb98f6320c4e474f7e70701201e32231358/
-
---- CMakeLists.txt
-+++ CMakeLists.txt
-@@ -162,8 +162,7 @@
- ##
- # This must come before FINDs for tiff, jpeg, png, zlib to enable
- # finding the wxWidgets distributions of those packages (Win32 only).
--SET(wxWidgets_USE_LIBS base core aui xrc html xml adv gl net qa)
--FIND_PACKAGE(wxWidgets REQUIRED)
-+FIND_PACKAGE(wxWidgets REQUIRED base core aui xrc html xml adv gl net qa)
-
- # hugin requires wxwidgets 3.0 or above
- IF (UNIX)
-
diff --git a/graphics/hugin/pkg-plist b/graphics/hugin/pkg-plist
index 458dca6d86d3..a88c9dae68fb 100644
--- a/graphics/hugin/pkg-plist
+++ b/graphics/hugin/pkg-plist
@@ -86,13 +86,14 @@ share/applications/pto_gen.desktop
%%DATADIR%%/data/hdr_pano.executor
%%DATADIR%%/data/hugin_exiftool_copy.arg
%%DATADIR%%/data/hugin_exiftool_final_example.arg
+%%DATADIR%%/data/hugin_rt.pp3
%%DATADIR%%/data/median_stack.executor
%%DATADIR%%/data/multirow.assistant
+%%DATADIR%%/data/normal.assistant
%%DATADIR%%/data/normal_enblend.executor
%%DATADIR%%/data/normal_enblend_cubic.executor
%%DATADIR%%/data/normal_layered_tiff.executor
%%DATADIR%%/data/normal_smartblend.executor
-%%DATADIR%%/data/normal.assistant
%%DATADIR%%/data/plugins-templates/dual_use.py
%%DATADIR%%/data/plugins-templates/plugin_skeleton.py
%%DATADIR%%/data/plugins/README_woa.txt
@@ -135,6 +136,10 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/fit_pano.png
%%DATADIR%%/xrc/data/gl_preview.png
%%DATADIR%%/xrc/data/gl_preview_small.png
+%%DATADIR%%/xrc/data/help_en_EN/0014985448cc97c209313a079e4eda593c810582.png
+%%DATADIR%%/xrc/data/help_en_EN/0881f567a2579a682ece721d6d93816eecbcff0d.png
+%%DATADIR%%/xrc/data/help_en_EN/0d04667eb3325cfad4ec50e994bf00c22782f509.png
+%%DATADIR%%/xrc/data/help_en_EN/0f203b686a923982358b9274fb508753ac31b996.png
%%DATADIR%%/xrc/data/help_en_EN/100px-Big_ben_transverse_mercator.jpg
%%DATADIR%%/xrc/data/help_en_EN/100px-PC_img01.jpg
%%DATADIR%%/xrc/data/help_en_EN/100px-PC_img02.jpg
@@ -149,27 +154,19 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/120px-Flatfield2_Munich.jpg
%%DATADIR%%/xrc/data/help_en_EN/120px-Flatfield3_Munich.jpg
%%DATADIR%%/xrc/data/help_en_EN/120px-Flatfield4_Munich.jpg
+%%DATADIR%%/xrc/data/help_en_EN/132e57acb643253e7810ee9702d9581f159a1c61.png
%%DATADIR%%/xrc/data/help_en_EN/150px-Ben_Equisolid.jpg
%%DATADIR%%/xrc/data/help_en_EN/150px-Ben_Orthographic.jpg
%%DATADIR%%/xrc/data/help_en_EN/150px-Big_ben_fisheye.jpg
%%DATADIR%%/xrc/data/help_en_EN/150px-Big_ben_rectilinear.jpg
%%DATADIR%%/xrc/data/help_en_EN/150px-Big_ben_stereographic.jpg
-%%DATADIR%%/xrc/data/help_en_EN/16788a4cd7337294823325c28db92225.png
%%DATADIR%%/xrc/data/help_en_EN/16bit.html
%%DATADIR%%/xrc/data/help_en_EN/16bit_workflow_with_hugin.html
-%%DATADIR%%/xrc/data/help_en_EN/17af7474cdfd5abe24fd07eb58810dba.png
-%%DATADIR%%/xrc/data/help_en_EN/180px-2125768589_b.jpg
-%%DATADIR%%/xrc/data/help_en_EN/180px-Fast_preview_guide_crop.png
-%%DATADIR%%/xrc/data/help_en_EN/180px-Fast_preview_guide_drag.png
-%%DATADIR%%/xrc/data/help_en_EN/180px-Fast_preview_guide_identify.png
-%%DATADIR%%/xrc/data/help_en_EN/180px-Fast_preview_guide_rotate_drag.png
-%%DATADIR%%/xrc/data/help_en_EN/180px-Fast_preview_guide_start.png
-%%DATADIR%%/xrc/data/help_en_EN/180px-Focal_length.gif
%%DATADIR%%/xrc/data/help_en_EN/180px-LagardePont-fish.jpg
-%%DATADIR%%/xrc/data/help_en_EN/180px-Lamp_enfuse.jpg
+%%DATADIR%%/xrc/data/help_en_EN/1876c10b5fac40156f4cd7ab00928c9fc2bed36b.png
%%DATADIR%%/xrc/data/help_en_EN/197px-Field-of-view.svg.png
-%%DATADIR%%/xrc/data/help_en_EN/1e3fbb44cf80bc872c3bc50c35a10b98.png
-%%DATADIR%%/xrc/data/help_en_EN/1f09c25c5247c1eaf121df644ca42f8c.png
+%%DATADIR%%/xrc/data/help_en_EN/1d8b2987693a73b6ef2eb74783d2e51786789f89.png
+%%DATADIR%%/xrc/data/help_en_EN/1d90bc6b2f34e2398a9accb8c63bb46bdcf8a629.png
%%DATADIR%%/xrc/data/help_en_EN/200px-Ben_Architectural.jpg
%%DATADIR%%/xrc/data/help_en_EN/200px-Ben_Lambert_cylindrical_equal_area.jpg
%%DATADIR%%/xrc/data/help_en_EN/200px-Ben_Miller_cylindrical.jpg
@@ -182,6 +179,7 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/200px-Hugin2013_overview.png
%%DATADIR%%/xrc/data/help_en_EN/200px-Panoglview.png
%%DATADIR%%/xrc/data/help_en_EN/220px-Ben_Equirectangular_panini.jpg
+%%DATADIR%%/xrc/data/help_en_EN/228647b7d4a18b6c8c0c390b439a61da8fafec76.png
%%DATADIR%%/xrc/data/help_en_EN/22px-Fast_preview_icon_autocrop.svg.png
%%DATADIR%%/xrc/data/help_en_EN/22px-Fast_preview_icon_crop.svg.png
%%DATADIR%%/xrc/data/help_en_EN/22px-Fast_preview_icon_drag.svg.png
@@ -199,36 +197,48 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/250px-Rectlinear.JPG
%%DATADIR%%/xrc/data/help_en_EN/250px-TKS-Mmm-obliquev120-gP70_50_50.png
%%DATADIR%%/xrc/data/help_en_EN/250px-TKS-Mmm-obliquev120-recti.png
+%%DATADIR%%/xrc/data/help_en_EN/2c5d28ca1131956936f41807db3895584e54ba78.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-2125768589_b.jpg
+%%DATADIR%%/xrc/data/help_en_EN/300px-Fast_preview_guide_crop.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-Fast_preview_guide_drag.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-Fast_preview_guide_identify.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-Fast_preview_guide_rotate_drag.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-Fast_preview_guide_start.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-Focal_length.gif
%%DATADIR%%/xrc/data/help_en_EN/300px-Hugin2013_layout_tab.png
+%%DATADIR%%/xrc/data/help_en_EN/300px-Lamp_enfuse.jpg
%%DATADIR%%/xrc/data/help_en_EN/300px-SimpleGui_stitch_popup.png
%%DATADIR%%/xrc/data/help_en_EN/360px-Pantheon-150x100-rect-panini.jpg
-%%DATADIR%%/xrc/data/help_en_EN/38d368a092f7d5a4d2b42bdf4d0dd89c.png
-%%DATADIR%%/xrc/data/help_en_EN/3d6de401d007ea0cffc99610ad623239.png
+%%DATADIR%%/xrc/data/help_en_EN/36408bbe3513b733d360cf77918a5cbfbedef425.png
+%%DATADIR%%/xrc/data/help_en_EN/39178db26b94bc87f737b575c304974110ba292b.png
%%DATADIR%%/xrc/data/help_en_EN/400px-220x120deg-panini-grid.png
-%%DATADIR%%/xrc/data/help_en_EN/422cb0e4439a3b643f880b45af9d5636.png
-%%DATADIR%%/xrc/data/help_en_EN/4c08b4c70c5be7cb6c402efa92fdb6ee.png
-%%DATADIR%%/xrc/data/help_en_EN/4d4d22d9c63b47c6f8fb7825ec5cd1db.png
+%%DATADIR%%/xrc/data/help_en_EN/435638222a3155b22cedd949f090863742aeb32e.png
+%%DATADIR%%/xrc/data/help_en_EN/468496ffa63b733cefc74a49e3eb869acb771abe.png
+%%DATADIR%%/xrc/data/help_en_EN/4b0bfb3769bf24d80e15374dc37b0441e2616e33.png
%%DATADIR%%/xrc/data/help_en_EN/500px-Hugin2013_projection_tab.png
-%%DATADIR%%/xrc/data/help_en_EN/57b9ca0ee21ce403038c5efcdc7c5eca.png
-%%DATADIR%%/xrc/data/help_en_EN/5a12c95d04637539015c2d09b5002204.png
-%%DATADIR%%/xrc/data/help_en_EN/5f558fa7e9b1567daca23dc3433f5cec.png
+%%DATADIR%%/xrc/data/help_en_EN/566a3cea17751229daea11d526505235164b25df.png
+%%DATADIR%%/xrc/data/help_en_EN/5b71f1d3fb01a7173133cf27840d65890345ba44.png
%%DATADIR%%/xrc/data/help_en_EN/600px-Hugin2013_crop_tab.png
%%DATADIR%%/xrc/data/help_en_EN/600px-Hugin2013_move_drag_tab.png
%%DATADIR%%/xrc/data/help_en_EN/600px-Tuebingen_Neckarfront_small15_2006-06-11.jpg
%%DATADIR%%/xrc/data/help_en_EN/600px-Tuebingen_Neckarfront_withdustspots_small15_2006-06-11.jpg
-%%DATADIR%%/xrc/data/help_en_EN/687431209ed4a8feab0c151b622ef1e0.png
+%%DATADIR%%/xrc/data/help_en_EN/6307c8a99dad7d0bcb712352ae0a748bd99a038b.png
+%%DATADIR%%/xrc/data/help_en_EN/652e1fd9c3a2ca00e1a517783cdbb0e18e4181f8.png
+%%DATADIR%%/xrc/data/help_en_EN/6969c411977839d7af14df4000f56edfba759aed.png
+%%DATADIR%%/xrc/data/help_en_EN/6a4493e959276bb2365c2f4255a4749ed324d741.png
+%%DATADIR%%/xrc/data/help_en_EN/6aea83a57db153f846b8b7b1a8306e59c4e43ef0.png
+%%DATADIR%%/xrc/data/help_en_EN/6e5a86d56d252eb4d556c47ef65cbb3e9f5a9d2e.png
+%%DATADIR%%/xrc/data/help_en_EN/6e5ab2664b422d53eb0c7df3b87e1360d75ad9af.png
%%DATADIR%%/xrc/data/help_en_EN/700px-Autopano-done.png
%%DATADIR%%/xrc/data/help_en_EN/700px-Hugin2013_photos_tab.png
%%DATADIR%%/xrc/data/help_en_EN/700px-Hugin2013_preview_tab.png
-%%DATADIR%%/xrc/data/help_en_EN/7a62f58ab1c3f78523eee522e71a9416.png
+%%DATADIR%%/xrc/data/help_en_EN/73efd1f6493490b058097060a572606d2c550a06.png
+%%DATADIR%%/xrc/data/help_en_EN/77b1d0af49406a510722c741051555ca7ae87b1b.png
+%%DATADIR%%/xrc/data/help_en_EN/7a52a97d85628ff81bb576d212dcae925f38f1eb.png
%%DATADIR%%/xrc/data/help_en_EN/800px-C_Marchi-GrandCentral-adj.jpg
-%%DATADIR%%/xrc/data/help_en_EN/81b4c8dd7cbec41cae5ef37da5644e99.png
-%%DATADIR%%/xrc/data/help_en_EN/89539baed8c394f4b6eea437f16b047d.png
-%%DATADIR%%/xrc/data/help_en_EN/8dc4f8dfb753dc58e5cfaa70bb2add2e.png
-%%DATADIR%%/xrc/data/help_en_EN/8fa14cdd754f91cc6554c9e71929cce7.png
-%%DATADIR%%/xrc/data/help_en_EN/97f76ad87331fb0eebfa4c97bed26d8c.png
-%%DATADIR%%/xrc/data/help_en_EN/98dda29ec0838b4a60698e962d90cd03.png
-%%DATADIR%%/xrc/data/help_en_EN/990bd2a1181cb4840ca9ff6b710ca7ec.png
+%%DATADIR%%/xrc/data/help_en_EN/8cf629bdcc90521bb174119ac00d2f82e66b6858.png
+%%DATADIR%%/xrc/data/help_en_EN/8d3ef9dbe5e117eb5bb0de31eb3d72ae5ee9878c.png
+%%DATADIR%%/xrc/data/help_en_EN/927996686539d9eacf2e62a8cf730cc117529091.png
%%DATADIR%%/xrc/data/help_en_EN/Aliasing.html
%%DATADIR%%/xrc/data/help_en_EN/AliasingPScubic.jpg
%%DATADIR%%/xrc/data/help_en_EN/AliasingPScubic_2x.jpg
@@ -345,6 +355,7 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/Hugin_Preview_tab.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_Preview_window.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_Projection_tab.html
+%%DATADIR%%/xrc/data/help_en_EN/Hugin_Raw_Import.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_Reset_Values_window.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_Scripting_Interface.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_Stitcher_tab.html
@@ -369,6 +380,7 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/Hugin_preview_show_none.png
%%DATADIR%%/xrc/data/help_en_EN/Hugin_redo.png
%%DATADIR%%/xrc/data/help_en_EN/Hugin_reload.png
+%%DATADIR%%/xrc/data/help_en_EN/Hugin_stacker.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_stitch_project.html
%%DATADIR%%/xrc/data/help_en_EN/Hugin_straighten_pano.png
%%DATADIR%%/xrc/data/help_en_EN/Hugin_translation_guide.html
@@ -455,7 +467,7 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/Tca_correct.html
%%DATADIR%%/xrc/data/help_en_EN/The_General_Panini_Projection.html
%%DATADIR%%/xrc/data/help_en_EN/Tone_mapping.html
-%%DATADIR%%/xrc/data/help_en_EN/User_defined_output_sequence_and_user_defined_assistant.html
+%%DATADIR%%/xrc/data/help_en_EN/User_defined_output_sequence.html
%%DATADIR%%/xrc/data/help_en_EN/Using_Celeste_with_hugin.html
%%DATADIR%%/xrc/data/help_en_EN/Verdandi.html
%%DATADIR%%/xrc/data/help_en_EN/Vertical-fisheye.jpg
@@ -466,26 +478,28 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/data/help_en_EN/Wavy_distortion.html
%%DATADIR%%/xrc/data/help_en_EN/Yaw.html
%%DATADIR%%/xrc/data/help_en_EN/Zenith.html
-%%DATADIR%%/xrc/data/help_en_EN/a0f45cb050ae05932d1495f15a13290e.png
-%%DATADIR%%/xrc/data/help_en_EN/a98f19317c5b1baf19a11563189c874b.png
-%%DATADIR%%/xrc/data/help_en_EN/ab807c8735d25a66b577b029bc0e568f.png
-%%DATADIR%%/xrc/data/help_en_EN/b27abc434a11d07b390df859d7aa782a.png
-%%DATADIR%%/xrc/data/help_en_EN/c398d95d4b6e864a2b448a53b5a245fd.png
-%%DATADIR%%/xrc/data/help_en_EN/c3cc50179501003b73b0f3d8f02098dc.png
-%%DATADIR%%/xrc/data/help_en_EN/ccf48cf728225d3dcecf1f74e74dafa3.png
-%%DATADIR%%/xrc/data/help_en_EN/d4466e5ff97cd6bbdddc514f3a28fb88.png
-%%DATADIR%%/xrc/data/help_en_EN/db71893e7683801204b25f076e7db8b3.png
-%%DATADIR%%/xrc/data/help_en_EN/e1e1d3d40573127e9ee0480caf1283d6.png
-%%DATADIR%%/xrc/data/help_en_EN/f10801280c8b36520b1a628171f25d8f.png
-%%DATADIR%%/xrc/data/help_en_EN/f7bd60b75b29d79b660a2859395c1a24.png
-%%DATADIR%%/xrc/data/help_en_EN/fa5313ae442c1ac7f832c141880e3e74.png
+%%DATADIR%%/xrc/data/help_en_EN/b46e7c5d2bb0d7e3dc91da9577785c32b9fe1c97.png
+%%DATADIR%%/xrc/data/help_en_EN/b52d9f5b1cbad5408a6d13c40055d28513b7d515.png
+%%DATADIR%%/xrc/data/help_en_EN/ba75cc7aa1514d3d82cf1cf2860b99a986f977c0.png
+%%DATADIR%%/xrc/data/help_en_EN/be171a7c8c559cc35aaec70416b787efc4aebe31.png
+%%DATADIR%%/xrc/data/help_en_EN/c31fdc58e559f2dcdf2cee6a137cc3db024f093c.png
+%%DATADIR%%/xrc/data/help_en_EN/c3c9a2c7b599b37105512c5d570edc034056dd40.png
+%%DATADIR%%/xrc/data/help_en_EN/c81f99c35740e0ae9e1602d890467f02f02ade21.png
+%%DATADIR%%/xrc/data/help_en_EN/c92a8ec1cc630ea8f8f4f936688278d7636bb4e6.png
+%%DATADIR%%/xrc/data/help_en_EN/cce47ef57ba2ee096573a3835e2e2f8a10be5480.png
+%%DATADIR%%/xrc/data/help_en_EN/cfa11ce088a7a72cde469f7893eec012452e3c1d.png
+%%DATADIR%%/xrc/data/help_en_EN/d1e5d518892671cb94ae0907a94eddf2f170438c.png
+%%DATADIR%%/xrc/data/help_en_EN/dd7303c9e2a572c54f834b7ed72ba86e118153de.png
+%%DATADIR%%/xrc/data/help_en_EN/df82df0e21914cbf47891bad4d167fe9063e9c87.png
+%%DATADIR%%/xrc/data/help_en_EN/f08ce4d4c86c5b43f36c8435fb598da6471047c6.png
+%%DATADIR%%/xrc/data/help_en_EN/f34c10f53deff61bbb851e44b35b6ba2e54191b3.png
+%%DATADIR%%/xrc/data/help_en_EN/f351bd4263519281b738ce53c3b402823e9ab2ec.png
+%%DATADIR%%/xrc/data/help_en_EN/faeac1d4d9b6f8b8fd4efba91c90f189a2e3089f.png
%%DATADIR%%/xrc/data/help_en_EN/help_index_en.hhk
%%DATADIR%%/xrc/data/help_en_EN/help_toc_en.hhc
%%DATADIR%%/xrc/data/help_en_EN/hugin_help_en_EN.hhp
%%DATADIR%%/xrc/data/help_en_EN/license.html
-%%DATADIR%%/xrc/data/help_en_EN/magnify-clip.png
%%DATADIR%%/xrc/data/help_en_EN/manual.css
-%%DATADIR%%/xrc/data/help_en_EN/panotoolsng.png
%%DATADIR%%/xrc/data/hugin.ico
%%DATADIR%%/xrc/data/hugin.png
%%DATADIR%%/xrc/data/hugin_small.png
@@ -539,6 +553,7 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/edit_script_dialog.xrc
%%DATADIR%%/xrc/image_variable_dlg.xrc
%%DATADIR%%/xrc/images_panel.xrc
+%%DATADIR%%/xrc/import_raw_dialog.xrc
%%DATADIR%%/xrc/lenscal_frame.xrc
%%DATADIR%%/xrc/lensdb_dialogs.xrc
%%DATADIR%%/xrc/main_frame.xrc
@@ -552,6 +567,18 @@ share/applications/pto_gen.desktop
%%DATADIR%%/xrc/preview_frame.xrc
%%DATADIR%%/xrc/reset_dialog.xrc
share/icons/gnome/48x48/mimetypes/gnome-mime-application-x-ptoptimizer-script.png
+share/icons/hicolor/128x128/apps/hugin.png
+share/icons/hicolor/128x128/apps/ptbatcher.png
+share/icons/hicolor/16x16/apps/hugin.png
+share/icons/hicolor/16x16/apps/ptbatcher.png
+share/icons/hicolor/256x256/apps/hugin.png
+share/icons/hicolor/256x256/apps/ptbatcher.png
+share/icons/hicolor/32x32/apps/hugin.png
+share/icons/hicolor/32x32/apps/ptbatcher.png
+share/icons/hicolor/48x48/apps/hugin.png
+share/icons/hicolor/48x48/apps/ptbatcher.png
+share/icons/hicolor/scalable/apps/hugin.svg
+share/icons/hicolor/scalable/apps/ptbatcher.svg
share/locale/ca_ES/LC_MESSAGES/hugin.mo
share/locale/ca_ES@valencia/LC_MESSAGES/hugin.mo
share/locale/cs_CZ/LC_MESSAGES/hugin.mo
@@ -575,5 +602,3 @@ share/locale/sv/LC_MESSAGES/hugin.mo
share/locale/zh_CN/LC_MESSAGES/hugin.mo
share/locale/zh_TW/LC_MESSAGES/hugin.mo
share/mime/packages/hugin.xml
-share/pixmaps/hugin.png
-share/pixmaps/ptbatcher.png