blob: c67fce6ca468179c11ed609e5680e506e9b33cb7 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Abstract Shooting Game"
HOMEPAGE="https://www.asahi-net.or.jp/~cs8k-cyu/windows/noiz2sa_e.html https://sourceforge.net/projects/noiz2sa/"
SRC_URI="https://downloads.sourceforge.net/noiz2sa/${P}.tar.gz"
S="${WORKDIR}/${PN}/src"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
>=dev-libs/libbulletml-0.0.3
media-libs/libsdl[joystick]
media-libs/sdl-mixer[vorbis]
virtual/opengl"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-gcc41.patch
"${FILESDIR}"/${P}-underlink.patch
)
src_prepare() {
default
cp makefile.lin Makefile || die
tc-export CC CXX
}
src_install() {
local datadir="/usr/share/games/${PN}"
dobin ${PN}
dodir "${datadir}"
dodoc ../readme*
cp -r ../noiz2sa_share/* "${D}/${datadir}" || die
}
|