blob: 2be527ca733a15c119b5c87e5caba8b82e5d408d (
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
44
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/atanks/atanks-0.9.9d.ebuild,v 1.1 2003/09/10 19:29:16 vapier Exp $
inherit games
DATA_DIR="${GAMES_DATADIR}/${PN}"
S="${WORKDIR}/${PN}"
DESCRIPTION="Worms and Scorched Earth-like game"
HOMEPAGE="http://atanks.sourceforge.net/"
SRC_URI="mirror://sourceforge/atanks/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
IUSE=""
DEPEND="virtual/x11
>=sys-apps/sed-4
>=media-libs/allegro-4.0.3
>=media-libs/allegttf-2.0"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:DATA_DIR=.*:DATA_DIR=\\\\\"${DATA_DIR}\\\\\":" src/Makefile || \
die "sed src/Makefile failed"
}
src_install() {
dogamesbin atanks
dodir /usr/share/games/atanks
cp ${S}/*dat ${D}${DATA_DIR}
dodoc Changelog INSTRUCTIONS README TODO readme.linux tanks.txt
prepgamesdirs
}
pkg_postinst() {
einfo "NOTE: If you had atanks version 0.9.8b or less installed"
einfo "remove ~/.atanks-config to take advantage of new features."
games_pkg_postinst
}
|