summaryrefslogtreecommitdiff
blob: e9b72ddc39b5500034186cd06f2c292220824b49 (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit desktop eutils		# eutils for make_wrapper()

MY_PN="WorldOfGoo"

DESCRIPTION="A puzzle game with a strong emphasis on physics (HumbleBundle edition)"
HOMEPAGE="http://2dboy.com/"
SRC_URI="${MY_PN}.Linux.${PV}.sh"

LICENSE="2dboy-EULA"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bundled-libs"
RESTRICT="fetch bindist strip bundled-libs? ( splitdebug )"

DEPEND="app-arch/unzip"
RDEPEND="!bundled-libs? (
		media-libs/libsdl2[alsa,sound,opengl,video]
		media-libs/sdl2-mixer[vorbis]
	)
	sys-libs/glibc
	virtual/opengl
	virtual/glu
	>=sys-devel/gcc-3.4
	!games-puzzle/world-of-goo
	!games-puzzle/world-of-goo-gog"

dir="/opt/${PN%-*}"

QA_PREBUILT="${dir:1}/${MY_PN}.bin.x86
	${dir:1}/${MY_PN}.bin.x86_64"

pkg_nofetch() {
	elog "Download ${A} from www.humblebundle.com"
	elog "and place it in your DISTDIR directory."
}

src_unpack() {
	unzip -d "${S}" "${DISTDIR}/${A}"
}

src_install() {
	exeinto "${dir}"
	doexe data/x86$(usex amd64 _64)/${MY_PN}.bin.x86$(usex amd64 _64)

	make_wrapper ${PN%-*} "${dir}"/${MY_PN}.bin.x86$(usex amd64 _64) \
		$(use bundled-libs && (printf '"%s" "%s/lib%s"' "${dir}" "${dir}" $(usex amd64 64) || die))

	insinto "${dir}"
	doins -r data/noarch/game
	use bundled-libs && doins -r data/x86$(usex amd64 _64)/lib$(usex amd64 64)
	newicon data/noarch/game/gooicon.png ${PN%-*}.png

	make_desktop_entry ${PN%-*} "World of Goo" ${PN%-*}

	docinto html
	dodoc data/noarch/readme.html
}