commit: 31745039ea2d837c3cd34472102e581ac6ac9abb Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Mon Apr 10 10:31:27 2023 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Mon Apr 10 10:41:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31745039
media-gfx/entice: add 0_pre20220809 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> media-gfx/entice/Manifest | 1 + media-gfx/entice/entice-0_pre20220809.ebuild | 46 ++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/media-gfx/entice/Manifest b/media-gfx/entice/Manifest index 90f03ec21da9..0a0d16a6acaf 100644 --- a/media-gfx/entice/Manifest +++ b/media-gfx/entice/Manifest @@ -1 +1,2 @@ DIST entice-0_pre20210919.tar.gz 102691 BLAKE2B 2967f34acad5900c798ec2fa776cc5722cf34f4f097e37dfce50749e80a02a422f77e93f2a2d149f2151512fa6ce8f51ca9a29650276eae8cb6609c2b0e2bf20 SHA512 8f38f00d344b8477a410176e7a1ecf75ffe46a413caca4b497d81440b2a48e52cd6da35305729fe971a955de2c613ab7f78ce5c6b60884b771e8298d12f0c782 +DIST entice-0_pre20220809.tar.gz 7940222 BLAKE2B 8fb23d904e66894f60db94e64f5d9f0f00b82d6409c3c5e3439ecb8cd7835d2aadd7e52280eed4fc81fd0ac92fc02c9ad58c32d263f3081d93986bf21037c04e SHA512 2f6d549d87ca39be3b2d2fa15b488c6ddf0a31fc5164d90e7b4c37343af2fe44c674330b3764f100b048f94da003c7807e28b95ab059e3c04632026e53e5b96b diff --git a/media-gfx/entice/entice-0_pre20220809.ebuild b/media-gfx/entice/entice-0_pre20220809.ebuild new file mode 100644 index 000000000000..5f17dea1b112 --- /dev/null +++ b/media-gfx/entice/entice-0_pre20220809.ebuild @@ -0,0 +1,46 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson optfeature xdg + +MY_COMMIT="5122896d812a2db0fd2c536f047ac340fd1d12e5" + +DESCRIPTION="A simple image viewer based on EFL" +HOMEPAGE="https://github.com/vtorri/entice" +SRC_URI="https://github.com/vtorri/entice/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="|| ( dev-libs/efl[X] dev-libs/efl[wayland] ) + media-libs/libexif" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/entice-${MY_COMMIT}" + +pkg_postinst() { + xdg_pkg_postinst + + optfeature_header "Image format support:" + optfeature "avif support" dev-libs/efl[avif] + optfeature "bmp,wbmp support" dev-libs/efl[bmp] + optfeature "dds support" dev-libs/efl[dds] + optfeature "gif support" dev-libs/efl[gif] + optfeature "heif support" dev-libs/efl[heif] + optfeature "ico,cur support" dev-libs/efl[ico] + optfeature "jp2k support" dev-libs/efl[jpeg2k] + optfeature "pdf support" dev-libs/efl[pdf] + optfeature "pmaps support" dev-libs/efl[pmaps] + optfeature "psd support" dev-libs/efl[psd] + optfeature "raw support" dev-libs/efl[raw] + optfeature "svg,rsvg support" dev-libs/efl[svg] + optfeature "tga support" dev-libs/efl[tga] + optfeature "tgv support" dev-libs/efl[tgv] + optfeature "tiff support" dev-libs/efl[tiff] + optfeature "webp support" dev-libs/efl[webp] + optfeature "xcf support" dev-libs/efl[xcf] + optfeature "xpm support" dev-libs/efl[xpm] +}