blob: bb7fcd07eacfc1536004d5c95ed79b749373fc09 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_PV=${PV/./}
DESCRIPTION="PVS (Potentially Visible Set) builder designed to be used with OpenGL ports of the DOOM game engine."
HOMEPAGE="http://www.vavoom-engine.com/glvis.php"
SRC_URI="mirror://sourceforge/vavoom/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
src_compile() {
econf $(use_enable debug)
emake || die "emake failed"
}
src_install() {
dobin ${PN} || die "dobin failed"
dodoc ${PN}.txt || die "dodoc failed"
}
|