blob: d4af6a0f1bb1aa74c5513785c3d59aa0484a6577 (
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
55
56
57
58
59
60
61
62
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/apricots-0.2.6-r1.ebuild,v 1.8 2009/05/06 01:50:54 mr_bones_ Exp $
EAPI=2
inherit autotools eutils games
DESCRIPTION="Fly a plane around bomb/shoot the enemy. Port of Planegame from Amiga."
HOMEPAGE="http://www.fishies.org.uk/apricots.html"
SRC_URI="http://www.fishies.org.uk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/openal
media-libs/freealut"
src_prepare() {
epatch "${FILESDIR}"/${P}-freealut.patch
cp admin/acinclude.m4.in acinclude.m4
sed -i \
-e 's:-DAP_PATH=\\\\\\"$prefix.*":-DAP_PATH=\\\\\\"${GAMES_DATADIR}/${PN}/\\\\\\"":' \
configure.in \
|| die "sed failed"
sed -i \
-e "s:filename(AP_PATH):filename(\"${GAMES_SYSCONFDIR}/${PN}/\"):" \
${PN}/init.cpp \
|| die "sed failed"
sed -i \
-e "s:apricots.cfg:${GAMES_SYSCONFDIR}/${PN}/apricots.cfg:" \
README apricots.html \
|| die "sed failed"
sed -i \
-e 's/-Wmissing-prototypes//' \
acinclude.m4 \
|| die "sed failed"
eautoreconf
}
src_install() {
dodoc AUTHORS README TODO ChangeLog
dohtml apricots.html
cd ${PN}
dogamesbin apricots || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins *.wav *.psf *.shapes || die "doins failed"
insinto "${GAMES_SYSCONFDIR}"/${PN}
doins apricots.cfg || die "doins apricots.cfg failed"
make_desktop_entry ${PN} Apricots
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "You can change the game options by editing:"
elog "${GAMES_SYSCONFDIR}/${PN}/apricots.cfg"
}
|