mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Done via: ``` git grep -l 'virtual/zlib"' | xargs sed -i -e 's@virtual/zlib"@virtual/zlib:="@' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
38 lines
668 B
Bash
38 lines
668 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Optimize APNG images"
|
|
HOMEPAGE="https://sourceforge.net/projects/apng/"
|
|
SRC_URI="https://downloads.sourceforge.net/apng/${P}-src.zip"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="LGPL-2.1 ZLIB"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
app-arch/zopfli:=
|
|
media-libs/libpng:=
|
|
virtual/zlib:="
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
PATCHES=( "${FILESDIR}"/${PF}-makefile.patch )
|
|
|
|
src_prepare() {
|
|
default
|
|
rm -rf libpng zlib zopfli || die
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CXX
|
|
}
|
|
|
|
src_install() {
|
|
dobin apngopt
|
|
dodoc readme.txt
|
|
}
|