blob: 9a1255fc6ef8b884bd9b5def7aae7f36d9dd44c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2023 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="mirror://sourceforge/apng/${P}-src.zip"
S="${WORKDIR}"
LICENSE="LGPL-2.1 ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
app-arch/zopfli:=
media-libs/libpng:=
sys-libs/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
}
|