diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-19 08:07:03 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-19 08:07:03 +0000 |
commit | 00d24decaac5d53802afc1aad133cb738b8fd5a5 (patch) | |
tree | 52ee9faa452125d70e02999e8532c3c436b89f94 /media-gfx/yafray | |
parent | initial commit (bug 22488) (diff) | |
download | historical-00d24decaac5d53802afc1aad133cb738b8fd5a5.tar.gz historical-00d24decaac5d53802afc1aad133cb738b8fd5a5.tar.bz2 historical-00d24decaac5d53802afc1aad133cb738b8fd5a5.zip |
initial commit (bug 22488)
Diffstat (limited to 'media-gfx/yafray')
-rw-r--r-- | media-gfx/yafray/Manifest | 3 | ||||
-rw-r--r-- | media-gfx/yafray/files/digest-yafray-0.0.4 | 1 | ||||
-rw-r--r-- | media-gfx/yafray/yafray-0.0.4.ebuild | 33 |
3 files changed, 36 insertions, 1 deletions
diff --git a/media-gfx/yafray/Manifest b/media-gfx/yafray/Manifest index 295f3947b846..e61e1c7d89b8 100644 --- a/media-gfx/yafray/Manifest +++ b/media-gfx/yafray/Manifest @@ -1,2 +1,3 @@ -MD5 e1c3544d8bc1f53821a5ad5aef52527d yafray-0.0.4.ebuild 462 +MD5 36e368d800b3b792ff02cfcb0c0a0db5 yafray-0.0.4.ebuild 819 +MD5 f790b76f496940749023f145103a0288 ChangeLog 408 MD5 9eb9f2e8a635d14ca7d085f6a0f271d0 files/digest-yafray-0.0.4 64 diff --git a/media-gfx/yafray/files/digest-yafray-0.0.4 b/media-gfx/yafray/files/digest-yafray-0.0.4 new file mode 100644 index 000000000000..cad60bbfe0e4 --- /dev/null +++ b/media-gfx/yafray/files/digest-yafray-0.0.4 @@ -0,0 +1 @@ +MD5 77186ea4afb14c36416781b96e2af0f5 yafray-0.0.4.tar.gz 310875 diff --git a/media-gfx/yafray/yafray-0.0.4.ebuild b/media-gfx/yafray/yafray-0.0.4.ebuild new file mode 100644 index 000000000000..fdff4800b276 --- /dev/null +++ b/media-gfx/yafray/yafray-0.0.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 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.4.ebuild,v 1.1 2003/10/19 08:07:01 mr_bones_ Exp $ + +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" +LICENSE="LGPL-2.1" +SLOT="0" + +RDEPEND="media-libs/jpeg + sys-libs/zlib" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" +IUSE="" + +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" +} + +src_install() { + einstall || die + dodoc AUTHORS || die "dodoc failed" + dohtml doc/doc.html || die "dohtml failed" +} |