diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2022-03-05 23:38:55 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2022-03-05 23:39:28 +0100 |
commit | 0d116b5aae5dd6d06a4194a5c72b816d664ec229 (patch) | |
tree | 0b65a1595557587c0bded25a7025b930fd8e5775 /media-gfx/pngquant | |
parent | media-libs/lensfun: Version bump (diff) | |
download | gentoo-0d116b5aae5dd6d06a4194a5c72b816d664ec229.tar.gz gentoo-0d116b5aae5dd6d06a4194a5c72b816d664ec229.tar.bz2 gentoo-0d116b5aae5dd6d06a4194a5c72b816d664ec229.zip |
media-gfx/pngquant: Remove old
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'media-gfx/pngquant')
-rw-r--r-- | media-gfx/pngquant/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/pngquant/pngquant-2.12.3.ebuild | 51 |
2 files changed, 0 insertions, 52 deletions
diff --git a/media-gfx/pngquant/Manifest b/media-gfx/pngquant/Manifest index f10201cff3f0..35d6859fa55b 100644 --- a/media-gfx/pngquant/Manifest +++ b/media-gfx/pngquant/Manifest @@ -1,2 +1 @@ -DIST pngquant-2.12.3-src.tar.gz 143572 BLAKE2B 6f4cc9f36c9148f36734d9afa3765e206c09e833064cff5d98494d0d71610e857d7c605bc5673eb9fd5b38029ade60c9c1ffc18e745a3dfe5dbde6d39a81d0c7 SHA512 cf39f56750a49b2818fb86b168845e54f3797b664c3f49535ee93a3dc899299192a692039396ffcddc5988d040a778006c5f701f8bcd9f5c73583a47b711b01c DIST pngquant-2.12.6.tar.gz 69074 BLAKE2B 3573d54d94b0085de9ffd4dd34a8fd46c49a1e02d0a6419271c17bc7ac7ab6c05d811336a3a8a8ab21d4dea774c93ee1baae141b42c255838fb1eef9cdb1a871 SHA512 8ffff346df67edf1000c71b6d26371826bc4d236b3f57ef1ec73b3b61668cff9c3ca7d541417c39bc6c89e00176c91eb28867b7a91945ac84292ca0ac54984e9 diff --git a/media-gfx/pngquant/pngquant-2.12.3.ebuild b/media-gfx/pngquant/pngquant-2.12.3.ebuild deleted file mode 100644 index fddd03b24f41..000000000000 --- a/media-gfx/pngquant/pngquant-2.12.3.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit toolchain-funcs - -DESCRIPTION="command-line utility and library for lossy compression of PNG images" -HOMEPAGE="https://pngquant.org/" -SRC_URI="https://pngquant.org/${P}-src.tar.gz" - -LICENSE="GPL-3 HPND rwpng" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="debug lcms openmp cpu_flags_x86_sse2" - -RDEPEND="media-libs/libpng:0= - media-gfx/libimagequant:= - sys-libs/zlib:= - lcms? ( media-libs/lcms:2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-2.12.2-respect-CFLAGS.patch ) - -src_prepare() { - default - - # avoid silent fallback to bundled lib - rm -rv lib || die -} - -src_configure() { - tc-export AR CC - # Hand rolled configure script, so not all flags are supported. - ./configure \ - --prefix="${EPREFIX}/usr" \ - --with-libimagequant \ - $(use debug && echo --enable-debug) \ - $(use_enable cpu_flags_x86_sse2 sse) \ - $(use openmp && tc-has-openmp && echo --with-openmp) \ - $(use_with lcms lcms2) \ - CFLAGS="${CFLAGS} ${CPPFLAGS}" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin ${PN} - doman ${PN}.1 - dodoc CHANGELOG README.md -} |