blob: dd1d5aac1d48c50acb6a61e4a6254872cb7cf1b0 (
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
39
40
41
42
43
44
45
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs
DESCRIPTION="Simple and tiny image loading library"
HOMEPAGE="http://homepage3.nifty.com/slokar/fb/"
SRC_URI="http://homepage3.nifty.com/slokar/stimg/${P}.tar.gz"
LICENSE="LGPL-2+ MIT-with-advertising"
SLOT="0"
KEYWORDS="~alpha amd64 ppc x86"
RDEPEND="
media-libs/libpng:=
media-libs/libjpeg-turbo:=
media-libs/tiff:=
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-libpng15.patch
)
src_prepare() {
default
# bug #871486
eautoreconf
}
src_configure() {
tc-export CC
default
}
src_install() {
default
# No static archives
find "${ED}" -name '*.la' -delete || die
}
|