mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 07:27:03 -04:00
2d25fad95c
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
41 lines
813 B
Bash
41 lines
813 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Portable Network Graphics (PNG) optimizing utility"
|
|
HOMEPAGE="https://pmt.sourceforge.io/pngcrush/"
|
|
SRC_URI="https://downloads.sourceforge.net/pmt/${P}-nolib.tar.xz"
|
|
|
|
LICENSE="pngcrush"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ppc ~ppc64 ~riscv ~sparc x86"
|
|
|
|
RDEPEND="media-libs/libpng:0=
|
|
virtual/zlib:="
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="app-arch/xz-utils"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.8.13-adler32_check.patch
|
|
)
|
|
|
|
DOCS=( ChangeLog.html )
|
|
|
|
S="${WORKDIR}"/${P}-nolib
|
|
|
|
src_compile() {
|
|
emake \
|
|
CC="$(tc-getCC)" \
|
|
LD="$(tc-getCC)" \
|
|
CFLAGS="${CFLAGS} ${CPPFLAGS} -Wall" \
|
|
LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
einstalldocs
|
|
}
|