commit: 3221fa17f65bbd45a5f62d2f9562c4ac389cf6c5 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Mon Nov 3 08:23:35 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Nov 4 11:04:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3221fa17
media-gfx/phototonic: Bump to 3.1.0 Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/44446 Closes: https://github.com/gentoo/gentoo/pull/44446 Signed-off-by: Sam James <sam <AT> gentoo.org> media-gfx/phototonic/Manifest | 1 + media-gfx/phototonic/phototonic-3.1.0.ebuild | 35 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/media-gfx/phototonic/Manifest b/media-gfx/phototonic/Manifest index 44c0379d1cb4..9713b6f6ead7 100644 --- a/media-gfx/phototonic/Manifest +++ b/media-gfx/phototonic/Manifest @@ -1 +1,2 @@ DIST phototonic-3.0.0.tar.gz 923097 BLAKE2B c297c046122cb916bbf2bed5be16895f45720edd92313d87f9fc6e980dad51962e850ec2da403174a0b58ab0b628959bda62314d7411604305d13f14b81670d4 SHA512 7b2c8696bcdc0891c759164fc00ef51870c1b7e624b453ce7f202c5fece494041bd3eacc2d104ad208f38a77c3757f35d5ccbf921643385356f2eaa531fa1f94 +DIST phototonic-3.1.0.tar.gz 1057308 BLAKE2B ed74112461e5d9e5eeddc6ef227eb727c31b77e05b385a37ce2e58e860efc73ebb22192c0cc076721404678be1feb796b6f5892cf45552a4fc34b9a8c6a3a8cf SHA512 87142b3f30c29c1cc0659e797e6d70b28e13dce0d18e08393795f081684e0e29b79d95c67a719fc899d7df045f482ad4338d4304d77949b72528863d704f210f diff --git a/media-gfx/phototonic/phototonic-3.1.0.ebuild b/media-gfx/phototonic/phototonic-3.1.0.ebuild new file mode 100644 index 000000000000..d6c614fd6f62 --- /dev/null +++ b/media-gfx/phototonic/phototonic-3.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature qmake-utils xdg + +DESCRIPTION="Image viewer and organizer" +HOMEPAGE="https://github.com/luebking/phototonic" +SRC_URI="https://github.com/luebking/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-qt/qtbase:6[gui,opengl,widgets] + media-gfx/exiv2:= +" +DEPEND="${RDEPEND}" + +src_configure() { + eqmake6 +} + +src_install() { + emake install INSTALL_ROOT="${D}" +} + +pkg_postinst() { + xdg_pkg_postinst + + optfeature "SVG image support" dev-qt/qtsvg:6 + optfeature "TIFF and TGA image support" dev-qt/qtimageformats:6 +}
