blob: 42272e64bd51503be737fa7b4192bcbd904ae294 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/yafray/yafray-0.0.9-r1.ebuild,v 1.10 2010/11/08 23:10:46 maekke Exp $
inherit eutils multilib python
DESCRIPTION="Yet Another Free Raytracer"
HOMEPAGE="http://www.yafray.org"
SRC_URI="http://www.yafray.org/sec/2/downloads/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86"
IUSE="openexr"
RDEPEND="sys-libs/zlib
virtual/jpeg
openexr? ( media-libs/openexr )"
DEPEND="${RDEPEND}
dev-util/scons"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-scons.patch \
"${FILESDIR}"/${P}-libdir.patch \
"${FILESDIR}"/${P}-etc.patch \
"${FILESDIR}"/${P}-gcc43.patch \
"${FILESDIR}"/${P}-asneeded.patch \
"${FILESDIR}"/${P}-gcc44.patch
sed -i -e "s:-O3:${CXXFLAGS} -fsigned-char:g" *-settings.py || die "sed failed."
}
src_compile() {
local exr_path=""
use openexr && exr_path="/usr"
scons ${MAKEOPTS} prefix="/usr" \
libdir="/$(get_libdir)" \
exr_path="$exr_path" || die
}
src_install() {
scons prefix="/usr" destdir="${D}" libdir="/$(get_libdir)" install \
|| die "scons install failed."
find "${D}" -name .sconsign -exec rm \{\} \;
dodoc AUTHORS
dohtml doc/doc.html
}
|