blob: 55bdbb597500127507247428bb6f4e28026ccddd (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pixie/pixie-1.3.5.ebuild,v 1.2 2004/04/30 14:04:20 dholm Exp $
inherit eutils
IUSE=""
MY_PN="Pixie"
S="${WORKDIR}/${MY_PN}"
DESCRIPTION="RenderMan like photorealistic renderer."
HOMEPAGE="http://pixie.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-src-${PV}.tgz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
RDEPEND=""
DEPEND="sys-devel/automake"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-math.patch
epatch ${FILESDIR}/${P}-Makefile.patch
WANT_AUTOMAKE=1.4 automake
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog DEVNOTES NEWS README
mv ${D}/usr/share/doc/pixie ${D}/usr/share/doc/${PF}/html
}
|