Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/libimagequant/
Date: Fri, 05 Oct 2018 11:45:35
Message-Id: 1538739678.a75722ff2b5f5edb1f704076048257cce8d0be1f.vdupras@gentoo
1 commit: a75722ff2b5f5edb1f704076048257cce8d0be1f
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 5 11:41:18 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 5 11:41:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a75722ff
7
8 media-gfx/libimagequant: remove old
9
10 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 media-gfx/libimagequant/Manifest | 1 -
14 .../libimagequant/libimagequant-2.11.4.ebuild | 47 ----------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/media-gfx/libimagequant/Manifest b/media-gfx/libimagequant/Manifest
18 index 21738622afe..3ddb32f3c86 100644
19 --- a/media-gfx/libimagequant/Manifest
20 +++ b/media-gfx/libimagequant/Manifest
21 @@ -1,2 +1 @@
22 -DIST libimagequant-2.11.4.tar.gz 74117 BLAKE2B 5d42dc876c77694a1d4576e633d2e3aa1e531061aa849a683542cf11b14333f65125bbae699f927bf42896a934ade6d745aa517d6cbc4b7097d96c7579532ec9 SHA512 e9d2aaac2f37968dc93ba0da7d03f0fcf60b3f17d9a0b9edfd6930eade25844dd603de74492d8e1de8dc2da4e7f3e47959a558b5a67588d71e9e1db035eca1cc
23 DIST libimagequant-2.11.7.tar.gz 74311 BLAKE2B 204fbe794014c11d767991a03e729b234978fb1edb1fdffcb7d332461ccaa1a536a1e9dbc7b44a8838db61cc76fdbc1eb75087b480f4fc42bf791fea913639a2 SHA512 8816811c06eec27232e39725c581e382b7076f3bc23b017810de0e92236e6e4eb480def7b50347c9b75f7d792245669398c39a17359eb81077badf12e6f0a172
24
25 diff --git a/media-gfx/libimagequant/libimagequant-2.11.4.ebuild b/media-gfx/libimagequant/libimagequant-2.11.4.ebuild
26 deleted file mode 100644
27 index db64a5c5773..00000000000
28 --- a/media-gfx/libimagequant/libimagequant-2.11.4.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit toolchain-funcs eutils
37 -
38 -DESCRIPTION="Palette quantization library that powers pngquant and other PNG optimizers"
39 -HOMEPAGE="https://pngquant.org/lib/"
40 -SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0/0"
44 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
45 -IUSE="cpu_flags_x86_sse2 debug openmp static-libs"
46 -
47 -DEPEND=""
48 -RDEPEND="${DEPEND}"
49 -
50 -pkg_pretend() {
51 - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
52 -}
53 -
54 -src_configure() {
55 - tc-export AR CC
56 - # Hand rolled configure script, so not all flags are supported.
57 - ./configure \
58 - --prefix="${EPREFIX}/usr" \
59 - $(use debug && echo --enable-debug) \
60 - $(use_enable cpu_flags_x86_sse2 sse) \
61 - $(use_with openmp) \
62 - CFLAGS="${CFLAGS} ${CPPFLAGS}" \
63 - LDFLAGS="${LDFLAGS}"
64 -}
65 -
66 -src_compile() {
67 - emake shared || die "make failed"
68 - use static-libs && (emake static || die "make failed")
69 -}
70 -
71 -src_install() {
72 - dolib.so libimagequant.so
73 - dolib.so libimagequant.so.*
74 - use static-libs && dolib.a libimagequant.a
75 - doheader libimagequant.h
76 - einstalldocs
77 -}