blob: 06cfefe8c2bb7d2aad854558ca7bb63bd1420ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P=${P/_rc/-rc}
inherit cmake flag-o-matic toolchain-funcs xdg-utils
DESCRIPTION="A powerful cross-platform raw image processing program"
HOMEPAGE="https://www.rawtherapee.com/"
SRC_URI="https://github.com/Beep6581/RawTherapee/releases/download/${PV}/${P}.tar.xz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~riscv x86"
IUSE="jpegxl openmp tcmalloc"
RDEPEND="
dev-cpp/atkmm:0
dev-cpp/cairomm:0
dev-cpp/glibmm:2
dev-cpp/gtkmm:3.0
dev-cpp/pangomm:1.4
dev-libs/expat
dev-libs/glib:2
dev-libs/libsigc++:2
gnome-base/librsvg:2
media-gfx/exiv2:=
media-libs/lcms:2
media-libs/lensfun
media-libs/libcanberra[gtk3]
media-libs/libiptcdata
media-libs/libjpeg-turbo:=
media-libs/libpng:0=
media-libs/libraw:=
media-libs/tiff:=
sci-libs/fftw:3.0=
sys-libs/zlib
x11-libs/gtk+:3
jpegxl? ( media-libs/libjxl:= )
tcmalloc? ( dev-util/google-perftools )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
src_configure() {
# upstream tested that "fast-math" give wrong results, so filter it
# https://bugs.gentoo.org/show_bug.cgi?id=606896#c2
filter-flags -ffast-math
# -Ofast enable "fast-math" both in gcc and clang
replace-flags -Ofast -O3
# In case we add an ebuild for klt we can (i)use that one,
# see http://cecas.clemson.edu/~stb/klt/
local mycmakeargs=(
-DOPTION_OMP=$(usex openmp)
-DDOCDIR=/usr/share/doc/${PF}
-DCREDITSDIR=/usr/share/${PN}
-DLICENCEDIR=/usr/share/${PN}
-DCACHE_NAME_SUFFIX=""
-DWITH_SYSTEM_KLT="off"
-DWITH_SYSTEM_LIBRAW="on"
-DENABLE_TCMALLOC=$(usex tcmalloc)
-DWITH_JXL=$(usex jpegxl)
)
cmake_src_configure
}
pkg_postinst() {
xdg_icon_cache_update
xdg_desktop_database_update
}
pkg_postrm() {
xdg_icon_cache_update
xdg_desktop_database_update
}
|