blob: 45ad97215609aa214a4663a93bc6d26c34f8bc76 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-gfx/blender/blender-static-2.04.ebuild,v 1.1 2000/10/10 17:11:00 achim Exp $
A="blender${PV}-linux-glibc2.1.2-i386-static.tar.gz manual_1.5.zip"
S=${WORKDIR}
DESCRIPTION="Etremly fast and versatile 3D rendering package"
SRC_URI="ftp://ftp.blender.nl/pub/blender${PV}-linux-glibc2.1.2-i386-static.tar.gz
ftp://ftp.blender.nl/pub/manual_1.5.zip"
HOMEPAGE="http://www.blender.nl"
src_unpack () {
echo
}
src_install () {
cd ${S}
dodir /opt
cd ${D}/opt
tar xzf ${DISTDIR}/blender${PV}-linux-glibc2.1.2-i386-static.tar.gz
mv blender${PV}-linux-glibc2.1.2-i386-static blender-static-${PV}
dodir /usr/doc/${P}
cd ${D}/usr/doc/${P}
unzip ${DISTDIR}/manual_1.5.zip
mv manual_1.5 html
insinto /usr/X11R6/bin
insopts -m755
doins ${FILESDIR}/blender-static
}
|