blob: 4b67e365418ea92b11d58e3a8adc779f67476fde (
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
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/allegrogl/allegrogl-0.2.4-r1.ebuild,v 1.5 2007/09/18 04:38:06 mr_bones_ Exp $
inherit eutils
MY_PN="alleggl"
DESCRIPTION="A library to mix OpenGL graphics with Allegro routines"
HOMEPAGE="http://allegrogl.sourceforge.net"
SRC_URI="mirror://sourceforge/allegrogl/${MY_PN}-${PV}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~sparc x86"
IUSE="doc"
DEPEND="virtual/opengl
virtual/glu
>=media-libs/allegro-4.0.0"
S=${WORKDIR}/${MY_PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}"/${P}-destdir.patch \
"${FILESDIR}"/${P}-noasm.patch \
"${FILESDIR}"/${P}-agl_write_line_c.patch \
"${FILESDIR}/${P}"-gcc41.patch
}
src_compile() {
econf || die
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc *txt
use doc && dodoc examp/*
}
|