blob: 0d2abb5142576d2a826b13c651730d5f855bc4a7 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multilib multilib-minimal
MY_P="SDL2_image-${PV}"
DESCRIPTION="Image file loading library"
HOMEPAGE="http://www.libsdl.org/projects/SDL_image/"
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gif jpeg png static-libs tiff webp"
RDEPEND="
>=media-libs/libsdl2-2.0.9[${MULTILIB_USEDEP}]
>=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
tiff? ( >=media-libs/tiff-3.9.7-r1:0[${MULTILIB_USEDEP}] )
webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )"
DEPEND=${RDEPEND}
S="${WORKDIR}/${MY_P}"
multilib_src_configure() {
local myeconfargs=(
$(use_enable static-libs static)
--disable-sdltest
--enable-bmp
$(use_enable gif)
$(use_enable jpeg jpg)
--disable-jpg-shared
--enable-lbm
--enable-pcx
$(use_enable png)
--disable-png-shared
--enable-pnm
--enable-tga
$(use_enable tiff tif)
--disable-tif-shared
--enable-xcf
--enable-xpm
--enable-xv
$(use_enable webp)
--disable-webp-shared
)
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
}
multilib_src_install() {
emake DESTDIR="${D}" install
multilib_is_native_abi && newbin .libs/showimage$(get_exeext) showimage2$(get_exeext)
}
multilib_src_install_all() {
dodoc {CHANGES,README}.txt
find "${ED}" -type f -name "*.la" -delete || die
}
|