blob: d2e5bb1ec978e856a401f83252eeccf19ca851c8 (
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
|
# 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 -> ${P}.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
"
RDEPEND="
media-libs/libsdl2
media-libs/sdl2-image
media-libs/sdl2-mixer
"
PATCHES="
${FILESDIR}/Makefile.patch
"
src_compile() {
emake CFLAGS="${CFLAGS}"
}
src_install() {
DESTDIR="${ED}" 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!"
}
|