Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 139230 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/media-libs/cal3d/cal3d-0.11.0_pre20050823.ebuild (-15 / +3 lines)
Lines 5-37 Link Here
5
inherit debug eutils
5
inherit debug eutils
6
6
7
DESCRIPTION="Cal3D is a skeletal based character animation library"
7
DESCRIPTION="Cal3D is a skeletal based character animation library"
8
HOMEPAGE="http://cal3d.sourceforge.net/"
8
HOMEPAGE="http://home.gna.org/cal3d"
9
SRC_URI="mirror://sourceforge/cal3d/${P}.tar.bz2"
9
SRC_URI="http://download.gna.org/cal3d/sources/${P}.tar.gz"
10
10
11
LICENSE="LGPL-2.1"
11
LICENSE="LGPL-2.1"
12
SLOT="0"
12
SLOT="0"
13
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
13
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
14
IUSE="debug"
14
IUSE="debug"
15
15
16
RDEPEND=""
17
DEPEND=">=sys-devel/automake-1.4
18
	>=sys-devel/autoconf-2.13
19
	!<media-libs/cal3d-0.11"
20
21
S=${WORKDIR}/${PN}
22
23
24
src_unpack() {
16
src_unpack() {
25
	unpack ${A}
17
	unpack ${A}
26
	cd "${S}"
18
	cd "${S}"
27
	epatch "${FILESDIR}/${P}-libtool-compat.patch"
28
}
19
}
29
20
30
src_compile() {
21
src_compile() {
31
	use debug && my_conf="${my_conf} --enable-debug"
22
	econf $(use_enable debug) || die
32
33
	./autogen.sh
34
	econf ${my_conf} || die
35
	emake || die
23
	emake || die
36
}
24
}
37
25

Return to bug 139230