summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <ajak@gentoo.org>2021-10-17 09:56:08 -0500
committerJohn Helmert III <ajak@gentoo.org>2021-10-17 11:08:19 -0500
commitee43bca3e704b05fc7293ea507c6d8133d00a5d9 (patch)
tree166f653cfb341ac732d440dc3530dc44689f299f /media-gfx/gifsicle
parentapp-misc/ckb: drop 0.4.4-r1 (diff)
downloadgentoo-ee43bca3e704b05fc7293ea507c6d8133d00a5d9.tar.gz
gentoo-ee43bca3e704b05fc7293ea507c6d8133d00a5d9.tar.bz2
gentoo-ee43bca3e704b05fc7293ea507c6d8133d00a5d9.zip
media-gfx/gifsicle: add 1.93
Bug: https://bugs.gentoo.org/812488 Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'media-gfx/gifsicle')
-rw-r--r--media-gfx/gifsicle/Manifest1
-rw-r--r--media-gfx/gifsicle/gifsicle-1.93.ebuild31
2 files changed, 32 insertions, 0 deletions
diff --git a/media-gfx/gifsicle/Manifest b/media-gfx/gifsicle/Manifest
index f28a7beca974..466e2646892a 100644
--- a/media-gfx/gifsicle/Manifest
+++ b/media-gfx/gifsicle/Manifest
@@ -1 +1,2 @@
DIST gifsicle-1.92.tar.gz 575199 BLAKE2B 53716621846b14c0727e05893cb1876572ab80aa4d444c2b75499b541a19a5e45738b817c203b3926301378b2211a3263311c424cd8dd53e71d2b60f28ecdfb3 SHA512 5d9539eb5a6a8b87aed49ff3ca3d62e337845edbd05459b002369d571f74878c99740c34f50b4c86e5b8787ff189d4c21230e4f9019cd96a09db603afd7563dc
+DIST gifsicle-1.93.tar.gz 578194 BLAKE2B c5635fc736e2fd97278ab97377663f9702d2891cab5e19b16fa1aa53412ae48945d82ee42e9690208532cb854c99397ec4c1a11d4521454d8d40efd9adfd9d2a SHA512 1ace2c9597a405d69bb9dfa24764a3d7c7dd9864e1832d25a4a7ad2e32780038206b889711846d6e4dbc7189482d0d03874f18d86966ebffbc4ee10569c390d3
diff --git a/media-gfx/gifsicle/gifsicle-1.93.ebuild b/media-gfx/gifsicle/gifsicle-1.93.ebuild
new file mode 100644
index 000000000000..72395ff30f1d
--- /dev/null
+++ b/media-gfx/gifsicle/gifsicle-1.93.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Create, manipulate, and optimize GIF images and animations"
+HOMEPAGE="https://www.lcdf.org/~eddietwo/gifsicle/ https://github.com/kohler/gifsicle"
+SRC_URI="https://www.lcdf.org/~eddietwo/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2 MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="X"
+
+RDEPEND="
+ X? (
+ x11-libs/libX11
+ x11-libs/libXt
+ )
+"
+DEPEND="${RDEPEND}
+ X? ( x11-base/xorg-proto )"
+
+DOCS=(
+ NEWS.md
+ README.md
+)
+
+src_configure() {
+ econf $(use_enable X gifview)
+}