blob: e81c02331b05d9176d5dd3409e0985bced8415be (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/blender/blender-2.26.ebuild,v 1.1 2003/02/12 16:07:58 hanno Exp $
DESCRIPTION="3D Creation/Animation/Publishing System"
HOMEPAGE="http://www.blender.org/"
SRC_URI="http://download.blender.org/source/${P}.tar.bz2"
LICENSE="GPL-2 BL"
SLOT="0"
KEYWORDS="~x86 ~ppc"
S="${WORKDIR}/${P}"
IUSE=""
DEPEND="
virtual/x11
>=openal-20020127
>=libsdl-1.2
>=libvorbis-1.0
>=openssl-0.9.6
"
src_compile() {
econf --enable-openal || die
emake || die
}
src_install() {
einstall
}
|