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/pngquant-2.12.3.ebuild | |
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/pngquant-2.12.3.ebuild')
-rw-r--r-- | media-gfx/pngquant/pngquant-2.12.3.ebuild | 51 |
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 -} |