blob: 267c1c603f36d4e057484f73e4aafd4a186c8f09 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/noiz2sa/noiz2sa-0.51a.ebuild,v 1.8 2007/03/12 13:20:37 genone Exp $
inherit eutils games
DESCRIPTION="Abstract Shooting Game"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.asahi-net.or.jp/~cs8k-cyu/windows/noiz2sa_e.html http://sourceforge.net/projects/noiz2sa/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="media-libs/sdl-mixer
>=dev-libs/libbulletml-0.0.3
virtual/opengl"
S="${WORKDIR}/${PN}"
src_unpack(){
unpack ${A}
cd "${S}/src"
epatch "${FILESDIR}/${P}"-gcc41.patch
sed -e "s/-lglut/-lGL/" makefile.lin > Makefile || die "sed failed"
sed -i \
-e "s:/.noiz2sa.prf:/noiz2sa.prf:" \
-e "s:getenv(\"HOME\"):\"${GAMES_STATEDIR}\":" \
attractmanager.c \
|| die "sed failed"
}
src_compile(){
emake -C src MORE_CFLAGS="${CFLAGS}" || die
}
src_install(){
local datadir="${GAMES_DATADIR}/${PN}"
dogamesbin src/${PN} || die "dogamesbin failed"
dodir "${datadir}" "${GAMES_STATEDIR}"
cp -r noiz2sa_share/* "${D}/${datadir}" || die "cp failed"
dodoc readme*
touch "${D}${GAMES_STATEDIR}/${PN}.prf"
fperms 660 "${GAMES_STATEDIR}/${PN}.prf"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if ! built_with_use media-libs/sdl-mixer vorbis ; then
elog "${PN} will not have sound since sdl-mixer"
elog "is built with USE=-vorbis"
elog "Please emerge sdl-mixer with USE=vorbis"
elog "if you want sound support"
fi
}
|