blob: 4b9b1ed6c61688ea519950749f47e3ed9f8a862a (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CMAKE_BUILD_TYPE="Release" # buildsys: what a mess
PLUGIN_PKG="${PN}-plugins-$(ver_cut 1-2).0"
inherit cmake xdg
DESCRIPTION="Qt-based image viewer"
HOMEPAGE="https://nomacs.org/"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
plugins? ( https://github.com/novomesk/${PN}-plugins/archive/refs/tags/$(ver_cut 1-2).0.tar.gz -> ${PLUGIN_PKG}.tar.gz )"
CMAKE_USE_DIR="${S}/ImageLounge"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86 ~amd64-linux"
IUSE="+opencv plugins raw +tiff test zip"
RESTRICT="!test? ( test )"
REQUIRED_USE="
raw? ( opencv )
tiff? ( opencv )
"
RDEPEND="
dev-qt/qtbase:6[concurrent,cups,gui,network,widgets]
dev-qt/qtsvg:6
media-gfx/exiv2:=
opencv? ( >=media-libs/opencv-3.4:= )
raw? ( media-libs/libraw:= )
tiff? (
dev-qt/qtimageformats:6
media-libs/tiff:=
)
zip? ( dev-libs/quazip:0=[qt6(+)] )
"
DEPEND="
${RDEPEND}
test? ( dev-cpp/gtest )
"
BDEPEND="
dev-qt/qttools:6[linguist]
virtual/pkgconfig
"
DOCS=( src/changelog.txt )
src_prepare() {
if use plugins ; then
rmdir ImageLounge/plugins || die
mv -v ../${PLUGIN_PKG} ImageLounge/plugins || die
fi
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DQT_VERSION_MAJOR=6
-DENABLE_CODE_COV=OFF
-DUSE_SYSTEM_QUAZIP=ON
-DENABLE_TRANSLATIONS=ON
-DENABLE_OPENCV=$(usex opencv)
-DENABLE_PLUGINS=$(usex plugins)
-DENABLE_RAW=$(usex raw)
-DENABLE_TESTING=$(usex test)
-DENABLE_TIFF=$(usex tiff)
-DENABLE_QUAZIP=$(usex zip)
)
cmake_src_configure
}
src_test() {
cmake_build core_tests
cmake_src_test
}
|