diff options
author | Hanno Böck <hanno@gentoo.org> | 2023-12-05 13:35:49 +0100 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2023-12-05 13:37:16 +0100 |
commit | 3d8de3600bcd7c2a76b34c2902900897b79d1573 (patch) | |
tree | 3346b49443ddb9717fbeac02ec689b662754c382 /media-gfx | |
parent | net-im/whatsie: drop 4.13.0, 4.14.1 (diff) | |
download | gentoo-3d8de3600bcd7c2a76b34c2902900897b79d1573.tar.gz gentoo-3d8de3600bcd7c2a76b34c2902900897b79d1573.tar.bz2 gentoo-3d8de3600bcd7c2a76b34c2902900897b79d1573.zip |
media-gfx/cropgui: add 0.7
Add missing dependencies (exiftool and imagemagick).
Includes upstream fix for pillow updates.
Closes: https://bugs.gentoo.org/918915
Closes: https://bugs.gentoo.org/918916
Signed-off-by: Hanno Böck <hanno@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/cropgui/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/cropgui/cropgui-0.7.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/media-gfx/cropgui/Manifest b/media-gfx/cropgui/Manifest index def5a58d441a..8f2163e4771b 100644 --- a/media-gfx/cropgui/Manifest +++ b/media-gfx/cropgui/Manifest @@ -1 +1,2 @@ DIST cropgui-0.6.tar.gz 855329 BLAKE2B d54098cdf8d8a0eb863ba7cf13d798db8102e147c30d64d246fc9955c4ee5aead253273fd66f0f2cd2d5aaf7abd10cfed01936c08daccdd92e342a56923bd95b SHA512 dff9b1ea832c657c4407aea7ddeac880faaa4647bfe51ed43f9c1658f848cf9b6f9608451dcc006fe735012b52d318ebe5b59a31dc293cfabfb5ec5772612b68 +DIST cropgui-0.7.tar.gz 855705 BLAKE2B d2693034b3e3a4355f58c4d17d355721189da8442b5d49ba4c11dc0033371c74301a99c001613c427375bdb9cd733f56a870186a6a59b631feaae93dbd69b232 SHA512 ea06527bdd80382bf4986ea1eea8d3c0e11ea60c472bebb489fdc3bd8206f087d0377d769e8fe86ec4573f6d510266443fd25134894b91206e1c5c9d6f7cf563 diff --git a/media-gfx/cropgui/cropgui-0.7.ebuild b/media-gfx/cropgui/cropgui-0.7.ebuild new file mode 100644 index 000000000000..38c97aa199df --- /dev/null +++ b/media-gfx/cropgui/cropgui-0.7.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9,10,11,12} ) +inherit python-r1 desktop wrapper xdg-utils + +DESCRIPTION="GUI for lossless cropping of jpeg images" +HOMEPAGE="https://emergent.unpythonic.net/01248401946" +SRC_URI="https://github.com/jepler/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${PYTHON_DEPS} + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + media-libs/exiftool + media-gfx/imagemagick" + +install_cropgui_wrapper() { + python_domodule cropgtk.py cropgui_common.py filechooser.py cropgui.glade + make_wrapper "${PN}.tmp" "${PYTHON} $(python_get_sitedir)/${PN}/cropgtk.py" + python_newexe "${ED}/usr/bin/${PN}.tmp" "${PN}" + rm "${ED}/usr/bin/${PN}.tmp" || die +} + +src_install() { + python_moduleinto "${PN}" + python_foreach_impl install_cropgui_wrapper + + domenu "${PN}.desktop" + doicon "${PN}.png" +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +} |