blob: cdc2969857507ca6b0041b29e18d7509da26c24b (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils games
MY_P="twind-${PV}"
DESCRIPTION="Match and remove all of the blocks before time runs out"
HOMEPAGE="http://twind.sourceforge.net/"
SRC_URI="mirror://sourceforge/twind/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/libsdl[video]
media-libs/sdl-mixer
media-libs/sdl-image[png]"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_prepare() {
sed -i \
-e '/^CC/d' \
-e "/^CFLAGS/s:-g:${CFLAGS}:" \
-e "/^DATA_PREFIX/s:/.*$:${GAMES_DATADIR}/${PN}/:" \
-e "/^HIGH_SCORE_PREFIX/s:/.*$:${GAMES_STATEDIR}/${PN}/:" \
Makefile || die "sed failed"
epatch \
"${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-warnings.patch
}
src_install() {
dogamesbin twind
insinto "${GAMES_DATADIR}/${PN}"
doins -r graphics music sound
doicon graphics/twind.png
make_desktop_entry twind "Twin Distress"
dodoc AUTHORS ChangeLog CREDITS NEWS README TODO
dodir "${GAMES_STATEDIR}/${PN}"
touch "${D}/${GAMES_STATEDIR}/${PN}/twind.hscr"
fperms 660 "${GAMES_STATEDIR}/${PN}/twind.hscr"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if ! has_version "media-libs/sdl-mixer[vorbis]" ; then
ewarn "Music support will be disabled since sdl-mixer"
ewarn "wasn't built with USE=vorbis"
fi
}
|