blob: ece3d8f90bcfa3b697d77506a313bfb2174b2162 (
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
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit wrapper
DESCRIPTION="Libre clone of Mega-Lo-Mania (original from ~1990), supports original resources"
HOMEPAGE="https://gigalomania.sourceforge.net"
SRC_URI="http://launchpad.net/$PN/trunk/$PV/+download/${PN}src.zip"
S="$WORKDIR/${PN}src"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
app-arch/unzip
media-libs/libsdl2
media-libs/sdl2-image
media-libs/sdl2-mixer
"
src_compile() {
emake CFLAGS="${CFLAGS}"
}
src_install() {
DESTDIR="$D" emake install
make_wrapper $PN "./$PN" /opt/$PN/
}
pkg_postinst() {
einfo "Supports using the graphics from Mega-Lo-Mania (from the Amiga version - should be in hard disk format, e.g., Whdload version) if you have that game."
einfo "The data/ folder should be copied into the main gigalomania/ folder"
einfo "and then rename the gfx/ folder to something else (e.g., xgfx/)."
einfo "It's up to you to legally obtain the game if you want this feature!"
}
|