summaryrefslogtreecommitdiff
path: root/dev-games/renpy/renpy-6.10.2-r1.ebuild
blob: be93910d7cbb08f04060c87a623e5a817af601ac (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
72
73
74
75
76
77
78
79
80
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"
PYTHON_DEPEND="2:2.5"

inherit confutils eutils games python versionator

DESCRIPTION="Visual novel engine written in python"
HOMEPAGE="http://www.renpy.org"
SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2"

LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~x86"
IUSE="development doc examples"

RDEPEND="dev-python/pygame[X]
	>=dev-games/renpy-modules-${PV}"

pkg_setup() {
	confutils_use_depend_any examples development
	games_pkg_setup
}

src_prepare() {
	# Fix path to app-editors/jedit
	epatch "${FILESDIR}"/${PN}-jedit-path.patch

	find renpy -iname '*.pyo' -delete
}

src_install() {
	insinto "${GAMES_DATADIR}"/${P}
	exeinto "${GAMES_DATADIR}"/${P}

	doexe renpy.py || die "doexe failed"

	dodir "${GAMES_BINDIR}" || die "dodir failed"
	P_SLOT=${PN}-${SLOT}
	cat <<-EOF > "${D}"/"${GAMES_BINDIR}"/${P_SLOT} || die "Failed to create ${P_SLOT}"
		#!/bin/sh
		RENPY_BASE="${GAMES_DATADIR}"/${P} "${GAMES_DATADIR}"/${P}/renpy.py "\${@}"
	EOF

	doins -r common renpy || die "doins failed"

	if use development; then
		doins -r launcher template || die "doins failed"

		newicon launcher/logo32.png ${P}.png || die "newicon failed"
		make_desktop_entry ${P_SLOT} "Ren'Py ${PV}" ${P} Game "${GAMES_DATADIR}"/${P} || die "make_desktop_entry failed"
	fi

	if use examples; then
		doins -r the_question || die "doins failed"
		doins -r tutorial || die "doins failed"
	fi

	dodoc CHANGELOG.txt || die "dodoc failed"

	if use doc; then
		dohtml -r doc || die "dohtml failed"
	fi

	prepgamesdirs
}

pkg_postinst() {
	python_mod_optimize "${GAMES_DATADIR}/${P}"
	if use development; then
		elog "You need to emerge app-editors/jedit to easily use renpy development interface."
	fi
	games_pkg_postinst
}

pkg_postrm() {
	python_mod_cleanup "${GAMES_DATADIR}/${P}"
}