blob: fd7cef144d88d082ac827111b178e7969c495411 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/yafray/yafray-0.0.7.ebuild,v 1.9 2005/06/14 13:48:33 fmccor Exp $
inherit eutils python
DESCRIPTION="Yet Another Free Raytracer"
HOMEPAGE="http://www.yafray.org/"
SRC_URI="http://www.coala.uniovi.es/~jandro/noname/downloads/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
RDEPEND="media-libs/jpeg
sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-devel/gcc-3.3
>=sys-apps/sed-4
dev-util/scons"
export WANT_AUTOMAKE="1.7"
src_unpack() {
unpack ${A}
cd ${S}
libtoolize --copy --force
epatch ${FILESDIR}/${P}-scons.patch
sed -i -e "s:-O3:${CFLAGS}:" SConstruct
}
src_compile() {
scons prefix="/usr" || die
}
src_install() {
scons prefix="/usr" destdir="${D}" install || die
find ${D} -name .sconsign -exec rm \{\} \;
dodoc AUTHORS || die "dodoc failed"
dohtml doc/doc.html || die "dohtml failed"
}
|