Index: Mk/bsd.options.desc.mk =================================================================== --- Mk/bsd.options.desc.mk (revision 345723) +++ Mk/bsd.options.desc.mk (working copy) @@ -46,6 +46,7 @@ CDIO_DESC?= CDIO support via libcdio CDPARANOIA_DESC?= CD ripping support (cdparanoia) CELT_DESC?= CELT audio codec support CFITSIO_DESC?= FITS support via CFITSIO +COLORD_DESC?= Color management via colord COMPOSITE_DESC?= X11 Composite extension support COOKIE_DESC?= Cookie support CUE_DESC?= Embedded CUE sheets support Index: graphics/darktable/Makefile =================================================================== --- graphics/darktable/Makefile (revision 345723) +++ graphics/darktable/Makefile (working copy) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= darktable -PORTVERSION= 1.2.3 -PORTREVISION= 3 +PORTVERSION= 1.4.1 +PORTREVISION= CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R} @@ -15,6 +15,7 @@ LICENSE= GPLv3 BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt LIB_DEPENDS= libexiv2.so:${PORTSDIR}/graphics/exiv2 \ libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \ + libwebp.so:${PORTSDIR}/graphics/webp \ liblensfun.so:${PORTSDIR}/graphics/lensfun \ liblcms2.so:${PORTSDIR}/graphics/lcms2 \ libcurl.so:${PORTSDIR}/ftp/curl @@ -22,28 +23,29 @@ LIB_DEPENDS= libexiv2.so:${PORTSDIR}/graphics/exiv ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= uses SSE extensions -USES= cmake:outsource pkgconfig +USES= cmake:outsource pkgconfig compiler:features USE_XZ= yes +CMAKE_NINJA= yes USE_GNOME= librsvg2 USE_SQLITE= yes USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} INSTALLS_ICONS= yes -MAN1= ${PORTNAME}.1 LDFLAGS+= -L${LOCALBASE}/lib -lintl -OPTIONS_DEFINE= GPHOTO GEO FLICKR FACEBOOK KWALLET GNOMEKEYRING RAWSPEED \ - OPENJPEG SLIDESHOW NLS GCC +OPTIONS_DEFINE= COLORD FB_PICASA FLICKR GCC GEO GNOMEKEYRING GPHOTO \ + GRAPHMAGICK LUA NLS OPENJPEG RAWSPEED SLIDESHOW SQUISH -GEO_DESC= Geotagging support -FACEBOOK_DESC= Support images export to Facebook +GEO_DESC= Support geotagging +FB_PICASA_DESC= Support export to Facebook and Picasa +SQUISH_DESC= Compress thumbnail via libsquish RAWSPEED_DESC= Compile with rawspeed backend SLIDESHOW_DESC= Build OpenGL/SDL slideshow viewer -GCC_DESC= Build with modern GCC (better OpenMP support) +GCC_DESC= Build with GCC 4.6+ (OpenMP support) -OPTIONS_DEFAULT= GPHOTO RAWSPEED GCC +OPTIONS_DEFAULT=COLORD FB_PICASA FLICKR GCC GEO GPHOTO GRAPHMAGICK LUA \ + NLS OPENJPEG RAWSPEED -NO_STAGE= yes -.include +.include .if ${PORT_OPTIONS:MGPHOTO} LIB_DEPENDS+= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 @@ -72,19 +74,14 @@ PLIST_FILES+= lib/darktable/plugins/imageio/storag CMAKE_ARGS+= -DUSE_FLICKR:BOOL=OFF .endif -.if ${PORT_OPTIONS:MFACEBOOK} +.if ${PORT_OPTIONS:MFB_PICASA} LIB_DEPENDS+= libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib -PLIST_FILES+= lib/darktable/plugins/imageio/storage/libfacebook.so +PLIST_FILES+= lib/darktable/plugins/imageio/storage/libfacebook.so \ + lib/darktable/plugins/imageio/storage/libpicasa.so .else CMAKE_ARGS+= -DUSE_GLIBJSON:BOOL=OFF .endif -.if ${PORT_OPTIONS:MKWALLET} -LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -.else -CMAKE_ARGS+= -DUSE_KWALLET:BOOL=OFF -.endif - .if ${PORT_OPTIONS:MGNOMEKEYRING} LIB_DEPENDS+= libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring .else @@ -102,6 +99,32 @@ PLIST_FILES+= lib/darktable/plugins/imageio/format CMAKE_ARGS+= -DUSE_OPENJPEG:BOOL=OFF .endif +.if ${PORT_OPTIONS:MCOLORD} +# darktable 1.4 can use colord but provides its own libcolord, +# statically linked to libdarktable.so. +LIB_DEPENDS+= libcolord.so:${PORTSDIR}/graphics/colord +.else +CMAKE_ARGS+= -DUSE_COLORD:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MGRAPHMAGICK} +LIB_DEPENDS+= libGraphicsMagick.so.14:${PORTSDIR}/graphics/GraphicsMagick13 +.else +CMAKE_ARGS+= -DUSE_GRAPHICSMAGICK:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MLUA} +USES+= lua +.else +CMAKE_ARGS+= -DUSE_LUA:BOOL=OFF +.endif + +.if ${PORT_OPTIONS:MSQUISH} +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsquish.a:${PORTSDIR}/graphics/squish +.else +CMAKE_ARGS+= -DUSE_SQUISH:BOOL=OFF +.endif + .if ${PORT_OPTIONS:MSLIDESHOW} USE_GL= gl USE_SDL= sdl @@ -118,6 +141,13 @@ CMAKE_ARGS+= -DUSE_NLS:BOOL=OFF .if ${PORT_OPTIONS:MGCC} USE_GCC= yes + +.if ${COMPILER_FEATURES:Mlibc++} +LDFLAGS+= -L/usr/local/lib/c++ +CXXFLAGS+= -nostdinc++ -isystem /usr/local/include/c++/v1 +CFLAGS+= -isystem /usr/local/include/c++/v1 +BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:${PORTSDIR}/devel/libc++ +.else # libdarktable.so has parts written in C++ (built-in rawspeed and libraw) # and is linked to GCC 4.6's libstdc++. However CMake removes RPATH from # this library, and libstdc++ from base (GCC 4.2.1) is pulled at runtime, @@ -127,6 +157,7 @@ USE_GCC= yes # it still has the RPATH and the correct libstdc++ is pulled. LDFLAGS+= -lstdc++ .endif +.endif post-patch: @${REINPLACE_CMD} -e 's,__APPLE__,__${OPSYS}__,' \ @@ -140,11 +171,15 @@ post-patch: ${WRKSRC}/src/CMakeLists.txt post-install: +.if defined(NOPORTDOCS) + @${RM} ${STAGEDIR}${DOCSDIR}/darktablerc.html + @${RMDIR} ${STAGEDIR}${DOCSDIR} +.endif .if ! ${PORT_OPTIONS:MRAWSPEED} - @${REINPLACE_CMD} -e '/rawspeed/d' ${TMPPLIST} + @${REINPLACE_CMD} -e '/rawspeed/d' ${STAGEDIR}${TMPPLIST} .endif .if ! ${PORT_OPTIONS:MNLS} - @${REINPLACE_CMD} -e '/LC_MESSAGES/d' ${TMPPLIST} + @${REINPLACE_CMD} -e '/LC_MESSAGES/d' ${STAGEDIR}${TMPPLIST} .endif .include Index: graphics/darktable/distinfo =================================================================== --- graphics/darktable/distinfo (revision 345723) +++ graphics/darktable/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (darktable-1.2.3.tar.xz) = 686b62e020c13e64d18c9b465742ddec8604cfee36e06c8858301735c29f7316 -SIZE (darktable-1.2.3.tar.xz) = 2348864 +SHA256 (darktable-1.4.1.tar.xz) = cde1394d75f9b6ff6b9f82c5e0c8199dd197d45b6a4fda48e7a54bef23ec71de +SIZE (darktable-1.4.1.tar.xz) = 2808136 Index: graphics/darktable/files/patch-cmake-modules-FindLua52.cmake.txt =================================================================== --- graphics/darktable/files/patch-cmake-modules-FindLua52.cmake.txt (revision 0) +++ graphics/darktable/files/patch-cmake-modules-FindLua52.cmake.txt (working copy) @@ -0,0 +1,11 @@ +--- cmake/modules/FindLua52.cmake.orig 2014-02-11 22:19:30.749856920 +0100 ++++ cmake/modules/FindLua52.cmake 2014-02-11 22:19:44.863854298 +0100 +@@ -6,7 +6,7 @@ + include(Prebuilt) + include(FindPkgConfig) + +-pkg_search_module(LUA52 lua5.2 lua) ++pkg_search_module(LUA52 lua5.2 lua-5.2 lua) + + if(LUA52_FIND_VERSION) + cmake_minimum_required(VERSION 2.6.2) Property changes on: graphics/darktable/files/patch-cmake-modules-FindLua52.cmake.txt ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: graphics/darktable/files/patch-cmake_modules_FindFreetype.cmake =================================================================== --- graphics/darktable/files/patch-cmake_modules_FindFreetype.cmake (revision 345723) +++ graphics/darktable/files/patch-cmake_modules_FindFreetype.cmake (working copy) @@ -1,11 +0,0 @@ ---- cmake/modules/FindFreetype.cmake.orig 2013-12-13 12:47:10.000000000 +0100 -+++ cmake/modules/FindFreetype.cmake 2013-12-13 12:47:42.000000000 +0100 -@@ -12,7 +12,7 @@ - - # Include dir - find_path(Freetype_INCLUDE_DIR -- NAMES freetype/freetype.h -+ NAMES freetype.h - PATHS ${Freetype_PKGCONF_INCLUDE_DIRS} - PATH_SUFFIXES freetype2 - ) Index: graphics/darktable/files/patch-src-common-imageio_exr.hh =================================================================== --- graphics/darktable/files/patch-src-common-imageio_exr.hh (revision 345723) +++ graphics/darktable/files/patch-src-common-imageio_exr.hh (working copy) @@ -1,24 +0,0 @@ ---- src/common/imageio_exr.hh.orig -+++ src/common/imageio_exr.hh -@@ -21,7 +21,11 @@ - #include "common/image.h" - #include "common/mipmap_cache.h" - -+#if __cplusplus >= 201103L || defined(__clang__) -+#include -+#else - #include -+#endif - - #include - #include -@@ -56,7 +60,11 @@ public: - } - - uint32_t size; -+#if __cplusplus >= 201103L || defined(__clang__) -+ std::shared_ptr data; -+#else - std::tr1::shared_ptr data; -+#endif - }; Index: graphics/darktable/pkg-plist =================================================================== --- graphics/darktable/pkg-plist (revision 345723) +++ graphics/darktable/pkg-plist (working copy) @@ -1,102 +1,6 @@ bin/darktable bin/darktable-cli bin/darktable-cltest -share/appdata/darktable.appdata.xml -%%DATADIR%%/darktable.gtkrc -%%DATADIR%%/darktablerc -%%DATADIR%%/gdb_commands -%%DATADIR%%/js/builder.js -%%DATADIR%%/js/effects.js -%%DATADIR%%/js/lightbox-web.js -%%DATADIR%%/js/lightbox.js -%%DATADIR%%/js/prototype.js -%%DATADIR%%/js/scriptaculous.js -%%DATADIR%%/kernels/atrous.cl -%%DATADIR%%/kernels/basic.cl -%%DATADIR%%/kernels/bilateral.cl -%%DATADIR%%/kernels/blendop.cl -%%DATADIR%%/kernels/colorspace.cl -%%DATADIR%%/kernels/common.h -%%DATADIR%%/kernels/demosaic_ppg.cl -%%DATADIR%%/kernels/denoiseprofile.cl -%%DATADIR%%/kernels/extended.cl -%%DATADIR%%/kernels/gaussian.cl -%%DATADIR%%/kernels/highpass.cl -%%DATADIR%%/kernels/nlmeans.cl -%%DATADIR%%/kernels/programs.conf -%%DATADIR%%/kernels/sharpen.cl -%%DATADIR%%/kernels/soften.cl -%%DATADIR%%/latex/photobook.cls -%%DATADIR%%/pixmaps/dt_logo_128x128.png -%%DATADIR%%/pixmaps/idbutton.png -%%DATADIR%%/pixmaps/off.png -%%DATADIR%%/pixmaps/plugins/darkroom/anlfyeni.png -%%DATADIR%%/pixmaps/plugins/darkroom/atrous.png -%%DATADIR%%/pixmaps/plugins/darkroom/basecurve.png -%%DATADIR%%/pixmaps/plugins/darkroom/bilateral.png -%%DATADIR%%/pixmaps/plugins/darkroom/bloom.png -%%DATADIR%%/pixmaps/plugins/darkroom/borders.png -%%DATADIR%%/pixmaps/plugins/darkroom/cacorrect.png -%%DATADIR%%/pixmaps/plugins/darkroom/channelmixer.png -%%DATADIR%%/pixmaps/plugins/darkroom/clahe.png -%%DATADIR%%/pixmaps/plugins/darkroom/clipping.png -%%DATADIR%%/pixmaps/plugins/darkroom/colorcorrection.png -%%DATADIR%%/pixmaps/plugins/darkroom/colorin.png -%%DATADIR%%/pixmaps/plugins/darkroom/colorout.png -%%DATADIR%%/pixmaps/plugins/darkroom/colortransfer.png -%%DATADIR%%/pixmaps/plugins/darkroom/colorzones.png -%%DATADIR%%/pixmaps/plugins/darkroom/demosaic.png -%%DATADIR%%/pixmaps/plugins/darkroom/dither.png -%%DATADIR%%/pixmaps/plugins/darkroom/exposure.png -%%DATADIR%%/pixmaps/plugins/darkroom/flip.png -%%DATADIR%%/pixmaps/plugins/darkroom/graduatednd.png -%%DATADIR%%/pixmaps/plugins/darkroom/grain.png -%%DATADIR%%/pixmaps/plugins/darkroom/highlights.png -%%DATADIR%%/pixmaps/plugins/darkroom/highpass.png -%%DATADIR%%/pixmaps/plugins/darkroom/hotpixels.png -%%DATADIR%%/pixmaps/plugins/darkroom/invert.png -%%DATADIR%%/pixmaps/plugins/darkroom/lens.png -%%DATADIR%%/pixmaps/plugins/darkroom/levels.png -%%DATADIR%%/pixmaps/plugins/darkroom/lowlight.png -%%DATADIR%%/pixmaps/plugins/darkroom/lowpass.png -%%DATADIR%%/pixmaps/plugins/darkroom/monochrome.png -%%DATADIR%%/pixmaps/plugins/darkroom/nlmeans.png -%%DATADIR%%/pixmaps/plugins/darkroom/overexposed.png -%%DATADIR%%/pixmaps/plugins/darkroom/profile_gamma.png -%%DATADIR%%/pixmaps/plugins/darkroom/rawdenoise.png -%%DATADIR%%/pixmaps/plugins/darkroom/rawimport.png -%%DATADIR%%/pixmaps/plugins/darkroom/relight.png -%%DATADIR%%/pixmaps/plugins/darkroom/shadhi.png -%%DATADIR%%/pixmaps/plugins/darkroom/sharpen.png -%%DATADIR%%/pixmaps/plugins/darkroom/soften.png -%%DATADIR%%/pixmaps/plugins/darkroom/splittoning.png -%%DATADIR%%/pixmaps/plugins/darkroom/spots.png -%%DATADIR%%/pixmaps/plugins/darkroom/temperature.png -%%DATADIR%%/pixmaps/plugins/darkroom/template.png -%%DATADIR%%/pixmaps/plugins/darkroom/tonecurve.png -%%DATADIR%%/pixmaps/plugins/darkroom/tonemap.png -%%DATADIR%%/pixmaps/plugins/darkroom/velvia.png -%%DATADIR%%/pixmaps/plugins/darkroom/vignette.png -%%DATADIR%%/pixmaps/plugins/darkroom/watermark.png -%%DATADIR%%/pixmaps/plugins/darkroom/zonesystem.png -%%DATADIR%%/rawspeed/cameras.xml -%%DATADIR%%/rawspeed/showcameras.xsl -%%DATADIR%%/style/bullet.gif -%%DATADIR%%/style/close.gif -%%DATADIR%%/style/closelabel.gif -%%DATADIR%%/style/donate-button.gif -%%DATADIR%%/style/download-icon.gif -%%DATADIR%%/style/favicon.ico -%%DATADIR%%/style/image-1.jpg -%%DATADIR%%/style/lightbox.css -%%DATADIR%%/style/loading.gif -%%DATADIR%%/style/nextlabel.gif -%%DATADIR%%/style/prevlabel.gif -%%DATADIR%%/style/style.css -%%DATADIR%%/style/thumb-1.jpg -%%DATADIR%%/watermarks/darktable.svg -%%DATADIR%%/watermarks/hasselblad.svg -%%DATADIR%%/watermarks/promo.svg lib/darktable/libdarktable.so lib/darktable/plugins/imageio/format/libcopy.so lib/darktable/plugins/imageio/format/libexr.so @@ -105,6 +9,7 @@ lib/darktable/plugins/imageio/format/libpfm.so lib/darktable/plugins/imageio/format/libpng.so lib/darktable/plugins/imageio/format/libppm.so lib/darktable/plugins/imageio/format/libtiff.so +lib/darktable/plugins/imageio/format/libwebp.so lib/darktable/plugins/imageio/storage/libdisk.so lib/darktable/plugins/imageio/storage/libemail.so lib/darktable/plugins/imageio/storage/libgallery.so @@ -119,10 +24,13 @@ lib/darktable/plugins/libcacorrect.so lib/darktable/plugins/libchannelmixer.so lib/darktable/plugins/libclahe.so lib/darktable/plugins/libclipping.so +lib/darktable/plugins/libcolisa.so +lib/darktable/plugins/libcolorbalance.so lib/darktable/plugins/libcolorcontrast.so lib/darktable/plugins/libcolorcorrection.so lib/darktable/plugins/libcolorin.so lib/darktable/plugins/libcolorize.so +lib/darktable/plugins/libcolormapping.so lib/darktable/plugins/libcolorout.so lib/darktable/plugins/libcolortransfer.so lib/darktable/plugins/libcolorzones.so @@ -178,8 +86,8 @@ lib/darktable/plugins/lighttable/libhistogram.so lib/darktable/plugins/lighttable/libhistory.so lib/darktable/plugins/lighttable/libimage.so lib/darktable/plugins/lighttable/libimport.so -lib/darktable/plugins/lighttable/libkeywords.so lib/darktable/plugins/lighttable/liblighttable_mode.so +lib/darktable/plugins/lighttable/libmasks.so lib/darktable/plugins/lighttable/libmetadata.so lib/darktable/plugins/lighttable/libmetadata_view.so lib/darktable/plugins/lighttable/libmodule_toolbox.so @@ -196,7 +104,111 @@ lib/darktable/plugins/lighttable/libview_toolbox.s lib/darktable/plugins/lighttable/libviewswitcher.so lib/darktable/views/libdarkroom.so lib/darktable/views/liblighttable.so +man/man1/darktable-cli.1.gz +man/man1/darktable.1.gz +share/appdata/darktable.appdata.xml share/applications/darktable.desktop +%%DATADIR%%/darktable.gtkrc +%%DATADIR%%/darktablerc +%%DATADIR%%/gdb_commands +%%DATADIR%%/js/builder.js +%%DATADIR%%/js/effects.js +%%DATADIR%%/js/lightbox-web.js +%%DATADIR%%/js/lightbox.js +%%DATADIR%%/js/prototype.js +%%DATADIR%%/js/scriptaculous.js +%%DATADIR%%/kernels/atrous.cl +%%DATADIR%%/kernels/basic.cl +%%DATADIR%%/kernels/bilateral.cl +%%DATADIR%%/kernels/blendop.cl +%%DATADIR%%/kernels/colorspace.cl +%%DATADIR%%/kernels/common.h +%%DATADIR%%/kernels/demosaic_ppg.cl +%%DATADIR%%/kernels/denoiseprofile.cl +%%DATADIR%%/kernels/extended.cl +%%DATADIR%%/kernels/gaussian.cl +%%DATADIR%%/kernels/highpass.cl +%%DATADIR%%/kernels/nlmeans.cl +%%DATADIR%%/kernels/programs.conf +%%DATADIR%%/kernels/sharpen.cl +%%DATADIR%%/kernels/soften.cl +%%DATADIR%%/latex/photobook.cls +%%DATADIR%%/lua/darktable/debug.lua +%%DATADIR%%/luarc +%%DATADIR%%/pixmaps/dt_logo_128x128.png +%%DATADIR%%/pixmaps/idbutton-2.png +%%DATADIR%%/pixmaps/idbutton.png +%%DATADIR%%/pixmaps/off.png +%%DATADIR%%/pixmaps/plugins/darkroom/anlfyeni.png +%%DATADIR%%/pixmaps/plugins/darkroom/atrous.png +%%DATADIR%%/pixmaps/plugins/darkroom/basecurve.png +%%DATADIR%%/pixmaps/plugins/darkroom/bilateral.png +%%DATADIR%%/pixmaps/plugins/darkroom/bloom.png +%%DATADIR%%/pixmaps/plugins/darkroom/borders.png +%%DATADIR%%/pixmaps/plugins/darkroom/cacorrect.png +%%DATADIR%%/pixmaps/plugins/darkroom/channelmixer.png +%%DATADIR%%/pixmaps/plugins/darkroom/clahe.png +%%DATADIR%%/pixmaps/plugins/darkroom/clipping.png +%%DATADIR%%/pixmaps/plugins/darkroom/colisa.png +%%DATADIR%%/pixmaps/plugins/darkroom/colorcorrection.png +%%DATADIR%%/pixmaps/plugins/darkroom/colorin.png +%%DATADIR%%/pixmaps/plugins/darkroom/colormapping.png +%%DATADIR%%/pixmaps/plugins/darkroom/colorout.png +%%DATADIR%%/pixmaps/plugins/darkroom/colortransfer.png +%%DATADIR%%/pixmaps/plugins/darkroom/colorzones.png +%%DATADIR%%/pixmaps/plugins/darkroom/demosaic.png +%%DATADIR%%/pixmaps/plugins/darkroom/dither.png +%%DATADIR%%/pixmaps/plugins/darkroom/exposure.png +%%DATADIR%%/pixmaps/plugins/darkroom/flip.png +%%DATADIR%%/pixmaps/plugins/darkroom/graduatednd.png +%%DATADIR%%/pixmaps/plugins/darkroom/grain.png +%%DATADIR%%/pixmaps/plugins/darkroom/highlights.png +%%DATADIR%%/pixmaps/plugins/darkroom/highpass.png +%%DATADIR%%/pixmaps/plugins/darkroom/hotpixels.png +%%DATADIR%%/pixmaps/plugins/darkroom/invert.png +%%DATADIR%%/pixmaps/plugins/darkroom/lens.png +%%DATADIR%%/pixmaps/plugins/darkroom/levels.png +%%DATADIR%%/pixmaps/plugins/darkroom/lowlight.png +%%DATADIR%%/pixmaps/plugins/darkroom/lowpass.png +%%DATADIR%%/pixmaps/plugins/darkroom/monochrome.png +%%DATADIR%%/pixmaps/plugins/darkroom/nlmeans.png +%%DATADIR%%/pixmaps/plugins/darkroom/overexposed.png +%%DATADIR%%/pixmaps/plugins/darkroom/profile_gamma.png +%%DATADIR%%/pixmaps/plugins/darkroom/rawdenoise.png +%%DATADIR%%/pixmaps/plugins/darkroom/rawimport.png +%%DATADIR%%/pixmaps/plugins/darkroom/relight.png +%%DATADIR%%/pixmaps/plugins/darkroom/shadhi.png +%%DATADIR%%/pixmaps/plugins/darkroom/sharpen.png +%%DATADIR%%/pixmaps/plugins/darkroom/soften.png +%%DATADIR%%/pixmaps/plugins/darkroom/splittoning.png +%%DATADIR%%/pixmaps/plugins/darkroom/spots.png +%%DATADIR%%/pixmaps/plugins/darkroom/temperature.png +%%DATADIR%%/pixmaps/plugins/darkroom/template.png +%%DATADIR%%/pixmaps/plugins/darkroom/tonecurve.png +%%DATADIR%%/pixmaps/plugins/darkroom/tonemap.png +%%DATADIR%%/pixmaps/plugins/darkroom/velvia.png +%%DATADIR%%/pixmaps/plugins/darkroom/vignette.png +%%DATADIR%%/pixmaps/plugins/darkroom/watermark.png +%%DATADIR%%/pixmaps/plugins/darkroom/zonesystem.png +%%DATADIR%%/rawspeed/cameras.xml +%%DATADIR%%/rawspeed/showcameras.xsl +%%DATADIR%%/style/bullet.gif +%%DATADIR%%/style/close.gif +%%DATADIR%%/style/closelabel.gif +%%DATADIR%%/style/donate-button.gif +%%DATADIR%%/style/download-icon.gif +%%DATADIR%%/style/favicon.ico +%%DATADIR%%/style/image-1.jpg +%%DATADIR%%/style/lightbox.css +%%DATADIR%%/style/loading.gif +%%DATADIR%%/style/nextlabel.gif +%%DATADIR%%/style/prevlabel.gif +%%DATADIR%%/style/style.css +%%DATADIR%%/style/thumb-1.jpg +%%DATADIR%%/watermarks/darktable.svg +%%DATADIR%%/watermarks/hasselblad.svg +%%DATADIR%%/watermarks/promo.svg +%%PORTDOCS%%%%DOCSDIR%%/darktablerc.html share/icons/hicolor/16x16/apps/darktable.png share/icons/hicolor/22x22/apps/darktable.png share/icons/hicolor/24x24/apps/darktable.png @@ -204,9 +216,12 @@ share/icons/hicolor/256x256/apps/darktable.png share/icons/hicolor/32x32/apps/darktable.png share/icons/hicolor/48x48/apps/darktable.png share/icons/hicolor/64x64/apps/darktable.png +share/icons/hicolor/scalable/apps/darktable-2.svg share/icons/hicolor/scalable/apps/darktable.svg +share/locale/cs/LC_MESSAGES/darktable.mo share/locale/da/LC_MESSAGES/darktable.mo share/locale/de/LC_MESSAGES/darktable.mo +share/locale/el/LC_MESSAGES/darktable.mo share/locale/es/LC_MESSAGES/darktable.mo share/locale/fr/LC_MESSAGES/darktable.mo share/locale/it/LC_MESSAGES/darktable.mo @@ -219,21 +234,42 @@ share/locale/ru/LC_MESSAGES/darktable.mo share/locale/sq/LC_MESSAGES/darktable.mo share/locale/sv/LC_MESSAGES/darktable.mo share/locale/uk/LC_MESSAGES/darktable.mo -@dirrm lib/darktable/views -@dirrm lib/darktable/plugins/lighttable -@dirrm lib/darktable/plugins/imageio/storage -@dirrm lib/darktable/plugins/imageio/format -@dirrm lib/darktable/plugins/imageio -@dirrm lib/darktable/plugins -@dirrm lib/darktable -@dirrm %%DATADIR%%/watermarks -@dirrm %%DATADIR%%/style -@dirrm %%DATADIR%%/rawspeed -@dirrm %%DATADIR%%/pixmaps/plugins/darkroom -@dirrm %%DATADIR%%/pixmaps/plugins -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/latex -@dirrm %%DATADIR%%/kernels -@dirrm %%DATADIR%%/js -@dirrm %%DATADIR%% +@dirrmtry share/icons/hicolor/scalable/apps +@dirrmtry share/icons/hicolor/scalable +@dirrmtry share/icons/hicolor/64x64/apps +@dirrmtry share/icons/hicolor/64x64 +@dirrmtry share/icons/hicolor/48x48/apps +@dirrmtry share/icons/hicolor/48x48 +@dirrmtry share/icons/hicolor/32x32/apps +@dirrmtry share/icons/hicolor/32x32 +@dirrmtry share/icons/hicolor/256x256/apps +@dirrmtry share/icons/hicolor/256x256 +@dirrmtry share/icons/hicolor/24x24/apps +@dirrmtry share/icons/hicolor/24x24 +@dirrmtry share/icons/hicolor/22x22/apps +@dirrmtry share/icons/hicolor/22x22 +@dirrmtry share/icons/hicolor/16x16/apps +@dirrmtry share/icons/hicolor/16x16 +@dirrmtry share/icons/hicolor +@dirrmtry share/icons +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +@dirrmtry %%DATADIR%%/watermarks +@dirrmtry %%DATADIR%%/style +@dirrmtry %%DATADIR%%/rawspeed +@dirrmtry %%DATADIR%%/pixmaps/plugins/darkroom +@dirrmtry %%DATADIR%%/pixmaps/plugins +@dirrmtry %%DATADIR%%/pixmaps +@dirrmtry %%DATADIR%%/lua/darktable +@dirrmtry %%DATADIR%%/lua +@dirrmtry %%DATADIR%%/latex +@dirrmtry %%DATADIR%%/kernels +@dirrmtry %%DATADIR%%/js +@dirrmtry %%DATADIR%% @dirrmtry share/appdata +@dirrmtry lib/darktable/views +@dirrmtry lib/darktable/plugins/lighttable +@dirrmtry lib/darktable/plugins/imageio/storage +@dirrmtry lib/darktable/plugins/imageio/format +@dirrmtry lib/darktable/plugins/imageio +@dirrmtry lib/darktable/plugins +@dirrmtry lib/darktable