53 lines
1.2 KiB
Bash
53 lines
1.2 KiB
Bash
# 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
|
|
}
|