forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
criticalmass-1.0.2.ebuild
53 lines (45 loc) · 1.16 KB
/
criticalmass-1.0.2.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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils games
DESCRIPTION="SDL/OpenGL space shoot'em up game"
HOMEPAGE="http://criticalmass.sourceforge.net/"
SRC_URI="mirror://sourceforge/criticalmass/CriticalMass-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="media-libs/sdl-mixer
media-libs/sdl-image[png]
media-libs/libpng:0
virtual/opengl
net-misc/curl"
RDEPEND="${DEPEND}"
S=${WORKDIR}/CriticalMass-${PV}
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc43.patch \
"${FILESDIR}"/${P}-system_curl.patch \
"${FILESDIR}"/${P}-libpng14.patch \
"${FILESDIR}"/${P}-cflags.patch \
"${FILESDIR}"/${P}-libpng15.patch
rm -rf curl
eautoreconf
}
src_install() {
default
rm -f "${D}${GAMES_BINDIR}/Packer"
dohtml Readme.html
newicon critter.png ${PN}.png
make_desktop_entry critter "Critical Mass"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if ! has_version "media-libs/sdl-mixer[mod]" ; then
ewarn
ewarn "To hear music, you will have to rebuild media-libs/sdl-mixer"
ewarn "with the \"mod\" USE flag turned on."
ewarn
fi
}