blob: bbc024c0eac8872d7b7b9f86712c14ce7a5dbaa2 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/corewars/corewars-0.9.13-r1.ebuild,v 1.1 2004/02/02 22:12:09 mr_bones_ Exp $
inherit games
DESCRIPTION="Simulation game involving virtual machine code"
HOMEPAGE="http://corewars.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
KEYWORDS="x86 ~ppc"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND="virtual/x11
virtual/glibc
>=dev-libs/glib-1.2.10-r1
=x11-libs/gtk+-1.2*"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog README doc/{TODO,DIFFERENCES,INTERESTING-COMBINATIONS}
prepgamesdirs
}
|