blob: 587a3daeb5e4674125410f9a0e7ee7b579b3ad37 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/iulib/iulib-0.4.ebuild,v 1.7 2012/06/03 02:42:24 vapier Exp $
EAPI="4"
inherit eutils toolchain-funcs multilib scons-utils
DESCRIPTION="easy-to-use image and video I/O functions"
HOMEPAGE="http://code.google.com/p/iulib/"
SRC_URI="http://iulib.googlecode.com/files/${P}.tgz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sdl"
RDEPEND="sys-libs/zlib
media-libs/libpng
virtual/jpeg
media-libs/tiff
sdl? (
media-libs/libsdl
media-libs/sdl-gfx
)"
DEPEND="${RDEPEND}
dev-util/scons"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.4-scons-build-env.patch
sed -i \
-e "/^have_sdl = 1/s:1:$(usex sdl 1 0):" \
-e '/tiff/s:inflate:TIFFOpen:' \
-e '/progs.Append(LIBS=libiulib)/s:Append:Prepend:' \
-e "/^libdir/s:/lib:/$(get_libdir):" \
SConstruct || die #297326 #308955 #310439
sed -i '/SDL.SDL_image.h/d' utils/dgraphics.cc || die #310443
tc-export AR CC CXX RANLIB
}
src_configure() {
# Avoid configure as we build/install with scons
:
}
src_compile() {
escons prefix=/usr
}
src_install() {
escons prefix="${D}"/usr install
dodoc CHANGES README TODO
}
|