blob: 92130d35e202c77c36f21f89f1a181996694114d (
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
|
# 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-static/blender-static-2.12.ebuild,v 1.1 2001/05/14 11:02:40 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"
DEPEND=">=app-arch/unzip-5.23"
src_install () {
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/share/doc/${P}
cd ${D}/usr/share/doc/${P}
unzip ${DISTDIR}/manual_1.5.zip
mv manual_1.5 html
insinto /usr/X11R6/bin
insopts -m755
newins ${FILESDIR}/${PV} blender-static
}
|