blob: 3f48a8c5df0b89cb5eac338c1306733cb9279fe1 (
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
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/chickens/chickens-0.2.4.ebuild,v 1.14 2009/04/02 18:53:56 mr_bones_ Exp $
EAPI=2
inherit eutils games
MY_P="ChickensForLinux-Linux-${PV}"
DESCRIPTION="Target chickens with rockets and shotguns. Funny"
HOMEPAGE="http://www.chickensforlinux.com"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 ppc x86"
IUSE=""
DEPEND="media-libs/allegro"
S=${WORKDIR}/${PN}
src_prepare() {
sed -i \
-e "s:HighScores:${GAMES_STATEDIR}/${PN}/HighScores:" \
-e "s:....\(.\)\(_\)\(.*.4x0\)\(.\):M\4\2\x42\x6Fn\1s\2:" \
highscore.cpp HighScores \
|| die "sed failed"
sed -i \
-e "s:options.cfg:${GAMES_SYSCONFDIR}/${PN}/options.cfg:" \
-e "s:\"sound/:\"${GAMES_DATADIR}/${PN}/sound/:" \
-e "s:\"dat/:\"${GAMES_DATADIR}/${PN}/dat/:" main.cpp README \
|| die "sed failed"
sed -i \
-e '/^CPPFLAGS/d' \
configure \
|| die "sed failed"
}
src_configure() {
./configure || die
}
src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r dat sound || die "doins failed"
dodoc AUTHOR README
insinto "${GAMES_STATEDIR}"/${PN}
doins HighScores || die "doins failed"
insinto "${GAMES_SYSCONFDIR}"/${PN}
doins options.cfg || die "doins failed"
fperms g+w "${GAMES_STATEDIR}"/${PN}/HighScores
make_desktop_entry ${PN} Chickens
prepgamesdirs
}
|