diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-02-21 02:12:49 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-02-21 02:50:07 +0100 |
commit | c100a7965b08725a52ff47a49a0e036b55537037 (patch) | |
tree | 416cb8f2b9480e1c28dabd52891aea2470bb92f4 /media-gfx/curtail | |
parent | sys-kernel/rt-sources: add 6.1.12_p7 (diff) | |
download | gentoo-c100a7965b08725a52ff47a49a0e036b55537037.tar.gz gentoo-c100a7965b08725a52ff47a49a0e036b55537037.tar.bz2 gentoo-c100a7965b08725a52ff47a49a0e036b55537037.zip |
media-gfx/curtail: new package; add 1.3.1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'media-gfx/curtail')
-rw-r--r-- | media-gfx/curtail/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/curtail/curtail-1.3.1.ebuild | 60 | ||||
-rw-r--r-- | media-gfx/curtail/metadata.xml | 20 |
3 files changed, 81 insertions, 0 deletions
diff --git a/media-gfx/curtail/Manifest b/media-gfx/curtail/Manifest new file mode 100644 index 000000000000..038023e9dd0a --- /dev/null +++ b/media-gfx/curtail/Manifest @@ -0,0 +1 @@ +DIST curtail-1.3.1.tar.gz 176042 BLAKE2B 0757c3c3eed24fea8f1493021d30df40fd8c78dad3bfd7f63cfaa83f36d36f69c47ba4e41a53a7a4299d436fb978ae3fc31afa07b5a1c9d82a6400a17c104966 SHA512 47d1b3939eaeaa3d27c497318bc80d0b7cb1c2674d66ed17c8cc5e6206b3efce7867ff01542b40ee6a4b4127160f2baed084b5b99cf518f2438dcf53af425f89 diff --git a/media-gfx/curtail/curtail-1.3.1.ebuild b/media-gfx/curtail/curtail-1.3.1.ebuild new file mode 100644 index 000000000000..0077c4c0406c --- /dev/null +++ b/media-gfx/curtail/curtail-1.3.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) + +inherit gnome2-utils meson python-single-r1 xdg + +DESCRIPTION="Image compressor, supporting PNG, JPEG and WebP" +HOMEPAGE="https://github.com/Huluti/Curtail/" +SRC_URI="https://github.com/Huluti/${PN^}/archive/${PV}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/${P^} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="test" # Just desktop / schema / appstream file validation (fails). + +RDEPEND=" + ${PYTHON_DEPS} + >=x11-libs/gtk+-3.20:3[introspection] + $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]') +" +BDEPEND=" + ${RDEPEND} + dev-libs/appstream-glib + dev-util/desktop-file-utils +" +RDEPEND+=" + media-gfx/jpegoptim + media-gfx/optipng + media-gfx/pngquant + media-libs/libwebp +" + +DOCS=( CHANGELOG.md README.md ) + +src_prepare() { + sed -i "s|@PYTHON@|${PYTHON}|" "${S}"/src/${PN}.in || die + + default +} + +src_install() { + meson_src_install + python_optimize +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/media-gfx/curtail/metadata.xml b/media-gfx/curtail/metadata.xml new file mode 100644 index 000000000000..f46007665087 --- /dev/null +++ b/media-gfx/curtail/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="person"> + <email>xgqt@gentoo.org</email> + <name>Maciej Barć</name> + </maintainer> + <longdescription> + Curtail (previously ImCompressor) is an useful image compressor, supporting + PNG, JPEG and WebP file types. It support both lossless and lossy + compression modes with an option to whether keep or not metadata of images. + It is inspired by Trimage and Image-Optimizer. + </longdescription> + <upstream> + <changelog>https://raw.githubusercontent.com/Huluti/Curtail/master/CHANGELOG.md</changelog> + <bugs-to>https://github.com/Huluti/Curtail/issues/</bugs-to> + <remote-id type="github">Huluti/Curtail</remote-id> + </upstream> +</pkgmetadata> |