commit:     e35c65c2006648b5ca8385bc23332cd44856de7e
Author:     Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Fri Sep 20 21:57:03 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Nov 17 17:09:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35c65c2

media-gfx/nomacs: 3.19.1 version bump with Qt6 porting

Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-gfx/nomacs/Manifest             |  2 +
 media-gfx/nomacs/nomacs-3.19.1.ebuild | 78 +++++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/media-gfx/nomacs/Manifest b/media-gfx/nomacs/Manifest
index 2b10efe5231a..65f4d3852ff5 100644
--- a/media-gfx/nomacs/Manifest
+++ b/media-gfx/nomacs/Manifest
@@ -1,2 +1,4 @@
 DIST nomacs-3.16.224.tar.gz 1932366 BLAKE2B 
4a2dc6ef70b0ae5dc9c9397bd2c88ede0db2bb8660e1907d08b36c4a9cf5a9bd151180aa4b2d6b5f529c1786004a6621eff88fa4bc851d60835e8ba6d6269602
 SHA512 
7ca8e713eedd71bc3dd3804a9a09ece15badb74949b155ea4da72a0ea129be173c8d0951604a6139d4490525cd420da8635773c11f0d133f666a48dcd9064257
+DIST nomacs-3.19.1.tar.gz 1928697 BLAKE2B 
ee8a10ebd777a589df179b51591893fe083505b066bf409e11a54a4bc21054d6d61d8c5e397cf01fa7907fd2e4b69401729a8fab7f1a8079769bfef53692230b
 SHA512 
7cbe80d6c336547a00761c64e591444827998aa79a52d51219ca69aacca4d3361c1e7cbccba1f9c06c7e93f09f4b732abd25757107e1c50d8a43eb45ced0ee97
 DIST nomacs-plugins-3.16.tar.gz 561522 BLAKE2B 
2bda4f36d56709653f6696af3404e416fd2d9fe7fa11de9636643c728028018ac769df3e2e519799322c5c42006cdc114d0e6406f9f60294234b07d9fd8d8409
 SHA512 
cd72f6ddbe3e07d7ed97f08405bac7574f4f3285c81e835f5630e011c8a9b105f23d892fed8084cb35ce521aca5524db071d0edb8bb04850dd2209d9ed019747
+DIST nomacs-plugins-3.19.0.tar.gz 559925 BLAKE2B 
4e3d8e07974d418510d2e806980bc9793567813b9418c0754dcaaa9e6f43e88d76e35264f05e05b2e21345467c8038db3c37ce3d1b003adcd3b019796a737080
 SHA512 
36b96b0270cb7cc34ee3f9f948eb1f2e5b4facd1f6eb273afe1fbf865c7712fb6487ef59f3d4e7723b9bca7930255f4247a8381c05ee8cfb9acf2b5cc225303c

diff --git a/media-gfx/nomacs/nomacs-3.19.1.ebuild 
b/media-gfx/nomacs/nomacs-3.19.1.ebuild
new file mode 100644
index 000000000000..4b9b1ed6c616
--- /dev/null
+++ b/media-gfx/nomacs/nomacs-3.19.1.ebuild
@@ -0,0 +1,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
+}

Reply via email to