blob: 40a53ba489f38d04c40fee192922a94980193a48 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/monopd/monopd-0.8.3.ebuild,v 1.2 2004/02/20 07:31:48 mr_bones_ Exp $
inherit games
DESCRIPTION="server for atlantik games"
HOMEPAGE="http://unixcode.org/monopd/"
SRC_URI="mirror://sourceforge/monopd/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=net-libs/libcapsinetwork-0.2.3
>=sys-libs/libmath++-0.0.3"
src_install() {
make install DESTDIR=${D} || die "make install failed"
dodoc doc/api/gameboard API AUTHORS ChangeLog NEWS README* TODO || \
die "dodoc failed"
exeinto /etc/init.d
doexe "${FILESDIR}/monopd" || die "doexe failed"
prepgamesdirs
}
|