blob: 5c967731ad8cd5b3e2dba3b5936fcc8a0b772ad8 (
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
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WX_GTK_VER="3.2-gtk3"
PYTHON_COMPAT=( python3_{10..13} )
inherit desktop python-single-r1 toolchain-funcs wxwidgets xdg
DESCRIPTION="simulator for Conway's Game of Life and other cellular automata"
HOMEPAGE="http://golly.sourceforge.net/
https://sourceforge.net/projects/golly/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-src.tar.gz"
S="${WORKDIR}/${P}-src"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
sys-libs/zlib
virtual/opengl
x11-libs/wxGTK:${WX_GTK_VER}[X,curl,opengl,sdl,tiff]
${PYTHON_DEPS}
"
DEPEND="
${RDEPEND}
"
PATCHES=( "${FILESDIR}/${PN}-4.0-CFLAGS.patch" )
src_configure() {
setup-wxwidgets
}
src_compile() {
local -a mymakeopts=(
ENABLE_SOUND=yes
GOLLYDIR="${EPREFIX}/usr/share/${PN}"
PYTHON="${EPYTHON}"
WX_CONFIG="${WX_CONFIG}"
AR="$(tc-getAR)"
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
CXXC="$(tc-getCXX)"
RANLIB="$(tc-getRANLIB)"
)
emake -C gui-wx -f makefile-gtk "${mymakeopts[@]}"
}
src_install() {
# Has no 'make install', let's install files manually.
exeinto /usr/bin
doexe golly bgolly
insinto "/usr/share/${PN}"
doins -r Help Patterns Scripts Rules docs
newicon --size 32 gui-wx/icons/appicon.xpm "${PN}.xpm"
make_desktop_entry "${PN}" "Golly" "${PN}" "Science"
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|