summaryrefslogtreecommitdiff
blob: 2ddde29de6ac191dc7bc25cb21deb1595f832519 (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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/yafray/yafray-0.0.6.ebuild,v 1.3 2004/02/18 09:36:56 augustus Exp $

inherit gcc

DESCRIPTION="Yet Another Free Raytracer"
HOMEPAGE="http://www.yafray.org"
SRC_URI="http://www.coala.uniovi.es/~jandro/noname/downloads/${P}.tar.gz"

KEYWORDS="~x86 ~ppc ~amd64"
LICENSE="LGPL-2.1"
SLOT="0"

RDEPEND="media-libs/jpeg
		sys-libs/zlib"

DEPEND="${RDEPEND}
		=sys-devel/gcc-3*
		>=sys-apps/sed-4
		>=sys-devel/automake-1.7.2"

IUSE=""

export WANT_GCC_3="yes"
export WANT_AUTOMAKE="1.7"

src_unpack() {
	unpack ${A}
	cd ${S}

	sed -i \
		-e "s-O3 -fomit-frame-pointer -ffast-math${CXXFLAGS}" \
			src/Makefile.am || \
				die "sed src/Makefile.am failed"
aclocal
}

src_install() {
	einstall 			|| die
	dodoc AUTHORS 		|| die "dodoc failed"
	dohtml doc/doc.html || die "dohtml failed"
}