forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordwarvi-1.00-r1.ebuild
59 lines (48 loc) · 1.21 KB
/
wordwarvi-1.00-r1.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
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 CC-BY-2.0 CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="portaudio"
RDEPEND="x11-libs/gtk+:2
portaudio? ( media-libs/libvorbis
>=media-libs/portaudio-19_pre1 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-sound.patch
)
src_prepare() {
default
sed -i \
-e "/^WITHAUDIO/s/yes/$(use portaudio && echo yes || echo no)/" \
Makefile || die
sed -i \
-e "s:GENTOO_DATADIR:/usr/share/${PN}:" \
wwviaudio.c || die
}
src_compile() {
emake \
PREFIX="/usr" \
DATADIR="/usr/share/${PN}" \
MANDIR="/usr/share/man"
}
src_install() {
emake \
DESTDIR="${D}" \
PREFIX="/usr" \
DATADIR="/usr/share/${PN}" \
MANDIR="/usr/share/man" \
install
if ! use portaudio ; then
rm -rf "${D}/usr/share" || die
fi
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"
}