blob: 5b869591075be7e8af913f2c365d1333f88154af (
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 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop toolchain-funcs wrapper
COMMIT="cc31822e4ebe54c0109623ac0c5cdf0e3acad755"
DESCRIPTION="Free version of the well-known city building simulation"
HOMEPAGE="https://www.donhopkins.com/home/micropolis/"
SRC_URI="https://gitlab.com/stargo/micropolis/-/archive/${COMMIT}/micropolis-${COMMIT}.tar.bz2"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
media-libs/libsdl
media-libs/sdl-mixer
x11-libs/libX11
x11-libs/libXpm"
DEPEND="${RDEPEND}"
BDEPEND="sys-devel/bison"
S="${WORKDIR}/${PN}-${COMMIT}"
src_prepare() {
default
sed -i -e "s|-O3|${CFLAGS}|" \
src/tclx/config.mk src/{sim,tcl,tk}/makefile || die
sed -i -e "s|XLDFLAGS=|&${LDFLAGS}|" \
src/tclx/config.mk || die
}
src_compile() {
emake -C src LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
}
src_install() {
local dir=/usr/share/${PN}
exeinto "${dir}/res"
doexe src/sim/sim
insinto "${dir}"
doins -r activity cities images manual res
make_wrapper micropolis res/sim "${dir}"
doicon Micropolis.png
make_desktop_entry micropolis "Micropolis" Micropolis
}
|