blob: 8efdd7d8e049fdcc83699c7cbf54c97045d148ae (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/monopd/monopd-0.9.3.ebuild,v 1.3 2005/07/14 03:05:45 mr_bones_ Exp $
inherit games
DESCRIPTION="server for atlantik games"
HOMEPAGE="http://unixcode.org/monopd/"
SRC_URI="http://unixcode.org/downloads/monopd/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND=">=net-libs/libcapsinetwork-0.3.0
>=sys-libs/libmath++-0.0.3"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc doc/api/gameboard API AUTHORS ChangeLog NEWS README* TODO
doinitd "${FILESDIR}"/monopd || die "doinitd failed"
prepgamesdirs
}
|