summaryrefslogtreecommitdiff
blob: 9c7cfc60c496f93400c5a229fafec8b4476f6685 (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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/cal3d/cal3d-0.10.0.ebuild,v 1.6 2006/07/15 18:57:15 kloeri Exp $

inherit eutils autotools

DESCRIPTION="skeletal based character animation library"
HOMEPAGE="http://home.gna.org/cal3d/"
SRC_URI="http://download.gna.org/cal3d/sources/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""

DEPEND="!>=media-libs/cal3d-0.11"

src_unpack() {
	unpack ${A}
	cd "${S}"
}

src_compile() {
	econf || die
	emake || die
}

src_install() {
	make install DESTDIR="${D}" || die
	dodoc AUTHORS ChangeLog README TODO
}