blob: 321240f3423d4b990f52afcace068528a582d8fe (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/wordwarvi/wordwarvi-0.23.ebuild,v 1.1 2008/12/02 21:46:10 mr_bones_ Exp $
EAPI=1
inherit eutils games
DESCRIPTION="A retro side-scrolling shoot'em up based on the editor war story"
HOMEPAGE="http://wordwarvi.sourceforge.net"
SRC_URI="mirror://sourceforge/wordwarvi/${P}.tar.gz"
LICENSE="GPL-2 CCPL-Attribution-2.0 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="vorbis"
RDEPEND="x11-libs/gtk+:2
vorbis? ( media-libs/libvorbis
>=media-libs/portaudio-0.19 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/^DATADIR/s/=/?=/' \
-e '/^OPTIMIZE_FLAG/s/=.*/=$(CFLAGS)/' \
Makefile \
|| die "sed failed"
}
src_compile() {
emake \
PREFIX="${GAMES_PREFIX}" \
DATADIR="${GAMES_DATADIR}/${PN}" \
MANDIR="/usr/share/man" \
WITHAUDIO=$(use vorbis && echo yes || echo no) all \
|| die "emake failed"
}
src_install() {
emake \
DESTDIR="${D}" \
PREFIX="${GAMES_PREFIX}" \
DATADIR="${GAMES_DATADIR}/${PN}" \
MANDIR="/usr/share/man" \
WITHAUDIO=$(use vorbis && echo yes || echo no) all \
install || die "emake install failed"
use vorbis || rm -rf "${D}${GAMES_DATADIR}/${PN}"
dodoc README AUTHORS changelog.txt AAA_HOW_TO_MAKE_NEW_LEVELS.txt
newicon icons/wordwarvi_icon_128x128.png ${PN}.png
make_desktop_entry ${PN} "Word War vi"
prepgamesdirs
}
|