diff options
author | Pacho Ramos <pacho@gentoo.org> | 2023-11-24 14:34:20 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-11-24 14:54:03 +0100 |
commit | aae308a3048287e0cf56071fe818ef9358aedcdd (patch) | |
tree | 6c10105d1a329ef762de8a189f195078026ef11b /media-gfx/tintii | |
parent | games-util/wxchtdecoder: works with wxGTK 3.2 (diff) | |
download | gentoo-aae308a3048287e0cf56071fe818ef9358aedcdd.tar.gz gentoo-aae308a3048287e0cf56071fe818ef9358aedcdd.tar.bz2 gentoo-aae308a3048287e0cf56071fe818ef9358aedcdd.zip |
media-gfx/tintii: Works with wxGTK 3.2
Also install a proper menu entry
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'media-gfx/tintii')
-rw-r--r-- | media-gfx/tintii/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/tintii/tintii-2.10.0-r2.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/media-gfx/tintii/Manifest b/media-gfx/tintii/Manifest index 6e7dcc882bc5..07af8e68a46e 100644 --- a/media-gfx/tintii/Manifest +++ b/media-gfx/tintii/Manifest @@ -1 +1,2 @@ DIST tintii-2.10.0.tar.gz 620863 BLAKE2B 61127bfe1ce1eca87cea7fcd5cc6ef95c445ad0cdf32fd2d752a27818df8132ee0d7e6eab355c37ff3535be416a79b34652e8a28d8f93e0bd523a15396f6a4cd SHA512 884a9a3393080ee064069288afc13b2f72272571efaabf013ea2029627fc2ed922dcb791b8316c1d2117faf553d6bf333cf35f0486ba82aa2dc0987f9ce5f9a3 +DIST tintii_128.png 22351 BLAKE2B 54f32b1a0037e4acb05fa524ddbea10a942b0441570e4bb73f4659f1b536ac72261ad2ffd03db5a0df6f5819cb58081ce2371cce981ee037023b27054a31db56 SHA512 fb5458a10b6a461dc3b9a7e15d65616c8df318fc2a439118e0d0433e5badebe18da499ff7627ac30fd0374f754ebb90ac9c7ce5b2fb521820ea134a625862052 diff --git a/media-gfx/tintii/tintii-2.10.0-r2.ebuild b/media-gfx/tintii/tintii-2.10.0-r2.ebuild new file mode 100644 index 000000000000..5f7cbdb6b451 --- /dev/null +++ b/media-gfx/tintii/tintii-2.10.0-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +WX_GTK_VER="3.2-gtk3" + +inherit desktop wxwidgets + +DESCRIPTION="Photo editor for selective color, saturation, and hue shift adjustments" +HOMEPAGE="https://www.indii.org/software/tintii/" +SRC_URI="https://www.indii.org/files/tint/releases/${P}.tar.gz + https://dev.gentoo.org/~pacho/${PN}/${PN}_128.png" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + x11-libs/wxGTK:${WX_GTK_VER}[X] +" +DEPEND="${RDEPEND} + dev-libs/boost +" +BDEPEND="sys-devel/bc" + +src_prepare() { + default + setup-wxwidgets +} + +src_configure() { + econf --disable-assert +} + +src_install() { + default + newicon "${DISTDIR}"/${PN}_128.png ${PN}.png + make_desktop_entry ${PN} Tintii +} |