Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gifsicle/
Date: Fri, 27 Sep 2019 03:21:16
Message-Id: 1569554347.4c112b8a95a10ff2362ee4f48d909be01453056d.radhermit@gentoo
1 commit: 4c112b8a95a10ff2362ee4f48d909be01453056d
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 27 02:57:26 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 27 03:19:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c112b8a
7
8 media-gfx/gifsicle: version bump to 1.92
9
10 Closes: https://bugs.gentoo.org/690134
11
12 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
13
14 media-gfx/gifsicle/Manifest | 1 +
15 media-gfx/gifsicle/gifsicle-1.92.ebuild | 32 ++++++++++++++++++++++++++++++++
16 2 files changed, 33 insertions(+)
17
18 diff --git a/media-gfx/gifsicle/Manifest b/media-gfx/gifsicle/Manifest
19 index b132f1c825c..09034ab6caa 100644
20 --- a/media-gfx/gifsicle/Manifest
21 +++ b/media-gfx/gifsicle/Manifest
22 @@ -1 +1,2 @@
23 DIST gifsicle-1.91.tar.gz 571588 BLAKE2B be3973141e57618d50efb5205f79e485a4450ceed02d6c718e49305250941656f0d220c91d2056554348d14348ed1ddf03f0aa9c47e22589994c5e80046422f6 SHA512 49b89e6f99bffd0dd732c920b936c2430a2f4f595d46e41654e5f39f180acaf9b0a4aec6cf52597c470d7c60265f16b730f6ce82e08701a2054fc3d08754c6da
24 +DIST gifsicle-1.92.tar.gz 575199 BLAKE2B 53716621846b14c0727e05893cb1876572ab80aa4d444c2b75499b541a19a5e45738b817c203b3926301378b2211a3263311c424cd8dd53e71d2b60f28ecdfb3 SHA512 5d9539eb5a6a8b87aed49ff3ca3d62e337845edbd05459b002369d571f74878c99740c34f50b4c86e5b8787ff189d4c21230e4f9019cd96a09db603afd7563dc
25
26 diff --git a/media-gfx/gifsicle/gifsicle-1.92.ebuild b/media-gfx/gifsicle/gifsicle-1.92.ebuild
27 new file mode 100644
28 index 00000000000..a51d01b0835
29 --- /dev/null
30 +++ b/media-gfx/gifsicle/gifsicle-1.92.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="Create, manipulate, and optimize GIF images and animations"
38 +HOMEPAGE="https://www.lcdf.org/~eddietwo/gifsicle/ https://github.com/kohler/gifsicle"
39 +SRC_URI="https://www.lcdf.org/~eddietwo/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2 MIT"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
44 +IUSE="X"
45 +
46 +RDEPEND="
47 + X? (
48 + x11-libs/libX11
49 + x11-libs/libXt
50 + )
51 +"
52 +DEPEND="
53 + ${RDEPEND}
54 + X? ( x11-base/xorg-proto )
55 +"
56 +DOCS=(
57 + NEWS.md
58 + README.md
59 +)
60 +
61 +src_configure() {
62 + econf $(usex X "" "--disable-gifview")
63 +}