summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2022-03-05 23:38:55 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2022-03-05 23:39:28 +0100
commit0d116b5aae5dd6d06a4194a5c72b816d664ec229 (patch)
tree0b65a1595557587c0bded25a7025b930fd8e5775 /media-gfx/pngquant/pngquant-2.12.3.ebuild
parentmedia-libs/lensfun: Version bump (diff)
downloadgentoo-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/pngquant-2.12.3.ebuild')
-rw-r--r--media-gfx/pngquant/pngquant-2.12.3.ebuild51
1 files changed, 0 insertions, 51 deletions
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
-}