Last fix didn't work, creating new branch.
40
rtdata/CMakeLists.txt
Normal file
@@ -0,0 +1,40 @@
|
||||
|
||||
file (GLOB PROFILEFILES "profiles/*.pp3")
|
||||
file (GLOB LANGUAGEFILES "languages/*")
|
||||
file (GLOB SOUNDFILES "sounds/*")
|
||||
file (GLOB INPUTICCFILES "iccprofiles/input/*")
|
||||
file (GLOB OUTPUTICCFILES "iccprofiles/output/*")
|
||||
# THEMEDIR includes subfolders for image resources for some themes; doing the normal glob won't work.
|
||||
set (THEMEDIR "themes")
|
||||
set (IMAGESDIR "images")
|
||||
|
||||
if (WIN32)
|
||||
set(OPTIONSFILE "options/options.win")
|
||||
elseif (APPLE)
|
||||
set(OPTIONSFILE "options/options.osx")
|
||||
else (WIN32)
|
||||
set(OPTIONSFILE "options/options.lin")
|
||||
endif (WIN32)
|
||||
|
||||
if (UNIX)
|
||||
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/icons/rawtherapee.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/rawtherapee.desktop)
|
||||
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/rawtherapee.desktop DESTINATION ${DESKTOPDIR})
|
||||
install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/hi16-app-rawtherapee.png DESTINATION ${ICONSDIR}/hicolor/16x16/apps RENAME rawtherapee.png)
|
||||
install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/hi24-app-rawtherapee.png DESTINATION ${ICONSDIR}/hicolor/24x24/apps RENAME rawtherapee.png)
|
||||
install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/hi32-app-rawtherapee.png DESTINATION ${ICONSDIR}/hicolor/32x32/apps RENAME rawtherapee.png)
|
||||
install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/hi48-app-rawtherapee.png DESTINATION ${ICONSDIR}/hicolor/48x48/apps RENAME rawtherapee.png)
|
||||
install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/hi128-app-rawtherapee.png DESTINATION ${ICONSDIR}/hicolor/128x128/apps RENAME rawtherapee.png)
|
||||
install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/hi256-app-rawtherapee.png DESTINATION ${ICONSDIR}/hicolor/256x256/apps RENAME rawtherapee.png)
|
||||
endif (UNIX)
|
||||
|
||||
install (FILES ${IMAGEFILES} DESTINATION ${DATADIR}/images)
|
||||
install (FILES ${LANGUAGEFILES} DESTINATION ${DATADIR}/languages)
|
||||
install (FILES ${PROFILEFILES} DESTINATION ${DATADIR}/profiles)
|
||||
install (FILES ${SOUNDFILES} DESTINATION ${DATADIR}/sounds)
|
||||
install (FILES ${INPUTICCFILES} DESTINATION ${DATADIR}/iccprofiles/input)
|
||||
install (FILES ${OUTPUTICCFILES} DESTINATION ${DATADIR}/iccprofiles/output)
|
||||
install (DIRECTORY ${THEMEDIR} DESTINATION ${DATADIR})
|
||||
install (DIRECTORY ${IMAGESDIR} DESTINATION ${DATADIR} FILES_MATCHING PATTERN "index.theme")
|
||||
install (DIRECTORY ${IMAGESDIR} DESTINATION ${DATADIR} FILES_MATCHING PATTERN "*.png")
|
||||
install (FILES ${OPTIONSFILE} DESTINATION ${DATADIR} PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ RENAME options)
|
||||
|
BIN
rtdata/iccprofiles/input/Canon EOS 20D.icc
Normal file
BIN
rtdata/iccprofiles/input/Canon EOS 450D.icc
Normal file
BIN
rtdata/iccprofiles/input/Canon EOS 550D.icc
Normal file
BIN
rtdata/iccprofiles/input/Canon EOS Digital Rebel XSi.icc
Normal file
BIN
rtdata/iccprofiles/input/Canon EOS Rebel T2i.icc
Normal file
BIN
rtdata/iccprofiles/input/Canon EOS-1D Mark III.icc
Normal file
BIN
rtdata/iccprofiles/input/Nikon D200.icc
Normal file
BIN
rtdata/iccprofiles/input/Nikon D3S.icc
Normal file
BIN
rtdata/iccprofiles/input/Nikon D700.icc
Normal file
BIN
rtdata/iccprofiles/input/Nikon D7000.icc
Normal file
BIN
rtdata/iccprofiles/input/Olympus E-P2.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-FZ150.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-FZ35.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-FZ38.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-G1.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-G3.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-GH1.icc
Normal file
BIN
rtdata/iccprofiles/input/Panasonic DMC-GH2.icc
Normal file
BIN
rtdata/iccprofiles/input/Pentax K200D.icc
Normal file
BIN
rtdata/iccprofiles/input/Sony DSLR-A700.icc
Normal file
BIN
rtdata/iccprofiles/output/RT_Large_g10.icc
Normal file
BIN
rtdata/iccprofiles/output/RT_Large_gBT709.icc
Normal file
BIN
rtdata/iccprofiles/output/RT_Large_gsRGB.icc
Normal file
BIN
rtdata/iccprofiles/output/RT_Middle_gsRGB.icc
Normal file
BIN
rtdata/iccprofiles/output/RT_sRGB.icm
Normal file
BIN
rtdata/iccprofiles/output/RT_sRGB_g10.icm
Normal file
BIN
rtdata/iccprofiles/output/RT_sRGB_gBT709.icm
Normal file
BIN
rtdata/icons/hi128-app-rawtherapee.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
rtdata/icons/hi16-app-rawtherapee.png
Normal file
After Width: | Height: | Size: 746 B |
BIN
rtdata/icons/hi24-app-rawtherapee.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
rtdata/icons/hi256-app-rawtherapee.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
rtdata/icons/hi32-app-rawtherapee.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
rtdata/icons/hi48-app-rawtherapee.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
16
rtdata/icons/rawtherapee.desktop.in
Normal file
@@ -0,0 +1,16 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=RawTherapee
|
||||
GenericName=RAW image editor
|
||||
GenericName[cs]=Editor RAW obrázků
|
||||
GenericName[fr]=Éditeur d'images RAW
|
||||
Comment=The RAW converter and digital photo processing software.
|
||||
Comment[cs]=Program pro konverzi a zpracování digitálních RAW fotografií.
|
||||
Comment[fr]=Logiciel de conversion et de traitement de photos numériques de format RAW (but de capteur).
|
||||
Exec=${BINDIR}/rawtherapee
|
||||
Icon=rawtherapee.png
|
||||
Terminal=false
|
||||
Categories=Graphics;Photography;GTK;
|
||||
|
||||
MimeType=image/jpeg;image/png;image/tiff;image/x-adobe-dng;image/x-canon-crw;image/x-canon-cr2;image/x-fuji-raf;image/x-kodak-dcr;image/x-kodak-kdc;image/x-kodak-k25;image/x-minolta-mrw;image/x-nikon-nef;image/x-olympus-orf;image/x-panasonic-raw;image/x-pentax-pef;image/x-sony-arw;image/x-sony-srf;image/x-sony-sr2;
|
BIN
rtdata/images/Chanmixer-BB.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-BG.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-BR.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-GB.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-GG.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-GR.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-RB.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-RG.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Chanmixer-RR.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Dark/.gtk-undo-ltr-small.png
Normal file
After Width: | Height: | Size: 508 B |
BIN
rtdata/images/Dark/.gtk-undo-ltr.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
rtdata/images/Dark/.gtk-undo-rtl-small.png
Normal file
After Width: | Height: | Size: 501 B |
BIN
rtdata/images/Dark/.gtk-undo-rtl.png
Normal file
After Width: | Height: | Size: 623 B |
BIN
rtdata/images/Dark/actions/PanelEnding.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/beforeafter.png
Normal file
After Width: | Height: | Size: 337 B |
BIN
rtdata/images/Dark/actions/cglabel0.png
Normal file
After Width: | Height: | Size: 299 B |
BIN
rtdata/images/Dark/actions/cglabel1.png
Normal file
After Width: | Height: | Size: 254 B |
BIN
rtdata/images/Dark/actions/cglabel2.png
Normal file
After Width: | Height: | Size: 255 B |
BIN
rtdata/images/Dark/actions/cglabel3.png
Normal file
After Width: | Height: | Size: 259 B |
BIN
rtdata/images/Dark/actions/cglabel4.png
Normal file
After Width: | Height: | Size: 259 B |
BIN
rtdata/images/Dark/actions/cglabel5.png
Normal file
After Width: | Height: | Size: 261 B |
BIN
rtdata/images/Dark/actions/clabel0.png
Normal file
After Width: | Height: | Size: 310 B |
BIN
rtdata/images/Dark/actions/clabel1.png
Normal file
After Width: | Height: | Size: 338 B |
BIN
rtdata/images/Dark/actions/clabel2.png
Normal file
After Width: | Height: | Size: 319 B |
BIN
rtdata/images/Dark/actions/clabel3.png
Normal file
After Width: | Height: | Size: 377 B |
BIN
rtdata/images/Dark/actions/clabel4.png
Normal file
After Width: | Height: | Size: 355 B |
BIN
rtdata/images/Dark/actions/clabel5.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
rtdata/images/Dark/actions/closedhand.png
Normal file
After Width: | Height: | Size: 706 B |
BIN
rtdata/images/Dark/actions/colour.png
Normal file
After Width: | Height: | Size: 898 B |
BIN
rtdata/images/Dark/actions/crop-auto.png
Normal file
After Width: | Height: | Size: 590 B |
BIN
rtdata/images/Dark/actions/crop.png
Normal file
After Width: | Height: | Size: 558 B |
BIN
rtdata/images/Dark/actions/crossed-arrows-in.png
Normal file
After Width: | Height: | Size: 553 B |
BIN
rtdata/images/Dark/actions/crossed-arrows-out.png
Normal file
After Width: | Height: | Size: 690 B |
BIN
rtdata/images/Dark/actions/curveType-NURBS.png
Normal file
After Width: | Height: | Size: 598 B |
BIN
rtdata/images/Dark/actions/curveType-controlPoints.png
Normal file
After Width: | Height: | Size: 610 B |
BIN
rtdata/images/Dark/actions/curveType-flatLinear.png
Normal file
After Width: | Height: | Size: 224 B |
BIN
rtdata/images/Dark/actions/curveType-linear.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
rtdata/images/Dark/actions/curveType-parametric.png
Normal file
After Width: | Height: | Size: 475 B |
BIN
rtdata/images/Dark/actions/curveType-spline.png
Normal file
After Width: | Height: | Size: 479 B |
BIN
rtdata/images/Dark/actions/detail.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
rtdata/images/Dark/actions/distorsion.png
Normal file
After Width: | Height: | Size: 838 B |
BIN
rtdata/images/Dark/actions/distortion-auto.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
rtdata/images/Dark/actions/document-open-recent.png
Normal file
After Width: | Height: | Size: 1016 B |
BIN
rtdata/images/Dark/actions/document-open.png
Normal file
After Width: | Height: | Size: 727 B |
BIN
rtdata/images/Dark/actions/edit-copy.png
Normal file
After Width: | Height: | Size: 676 B |
BIN
rtdata/images/Dark/actions/edit-find.png
Normal file
After Width: | Height: | Size: 697 B |
BIN
rtdata/images/Dark/actions/edit-paste.png
Normal file
After Width: | Height: | Size: 607 B |
BIN
rtdata/images/Dark/actions/edited-small.png
Normal file
After Width: | Height: | Size: 359 B |
BIN
rtdata/images/Dark/actions/edited.png
Normal file
After Width: | Height: | Size: 555 B |
BIN
rtdata/images/Dark/actions/editedg-small.png
Normal file
After Width: | Height: | Size: 359 B |
BIN
rtdata/images/Dark/actions/editednot-small.png
Normal file
After Width: | Height: | Size: 278 B |
BIN
rtdata/images/Dark/actions/editednotg-small.png
Normal file
After Width: | Height: | Size: 275 B |
BIN
rtdata/images/Dark/actions/exposure.png
Normal file
After Width: | Height: | Size: 644 B |
BIN
rtdata/images/Dark/actions/filter.png
Normal file
After Width: | Height: | Size: 720 B |
BIN
rtdata/images/Dark/actions/filterclear.png
Normal file
After Width: | Height: | Size: 703 B |
BIN
rtdata/images/Dark/actions/fullscreen-exit.png
Normal file
After Width: | Height: | Size: 557 B |
BIN
rtdata/images/Dark/actions/fullscreen.png
Normal file
After Width: | Height: | Size: 550 B |
BIN
rtdata/images/Dark/actions/grayrated.png
Normal file
After Width: | Height: | Size: 324 B |
BIN
rtdata/images/Dark/actions/gtk-add.png
Normal file
After Width: | Height: | Size: 421 B |
BIN
rtdata/images/Dark/actions/gtk-apply.png
Normal file
After Width: | Height: | Size: 503 B |
BIN
rtdata/images/Dark/actions/gtk-cancel.png
Normal file
After Width: | Height: | Size: 697 B |
BIN
rtdata/images/Dark/actions/gtk-close-small.png
Normal file
After Width: | Height: | Size: 507 B |
BIN
rtdata/images/Dark/actions/gtk-close.png
Normal file
After Width: | Height: | Size: 697 B |
BIN
rtdata/images/Dark/actions/gtk-color-picker-small.png
Normal file
After Width: | Height: | Size: 589 B |
BIN
rtdata/images/Dark/actions/gtk-color-picker.png
Normal file
After Width: | Height: | Size: 699 B |