Gentoo Archives: gentoo-commits

From: "Denis Dupeyron (calchan)" <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-rpg/soltys: ChangeLog soltys-1.0-r1.ebuild soltys-1.0.ebuild
Date: Tue, 30 Dec 2014 05:43:47
Message-Id: 20141230054342.29E62E78D@oystercatcher.gentoo.org
1 calchan 14/12/30 05:43:42
2
3 Modified: ChangeLog
4 Added: soltys-1.0-r1.ebuild
5 Removed: soltys-1.0.ebuild
6 Log:
7 Remove hq3x as default scaler as it can be too ambitious for some machines and can be changed by the user at run time.
8
9 (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.2 games-rpg/soltys/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/games-rpg/soltys/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 30 Oct 2014 00:16:18 -0000 1.1
25 +++ ChangeLog 30 Dec 2014 05:43:42 -0000 1.2
26 @@ -1,6 +1,13 @@
27 # ChangeLog for games-rpg/soltys
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/soltys/ChangeLog,v 1.1 2014/10/30 00:16:18 calchan Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/soltys/ChangeLog,v 1.2 2014/12/30 05:43:42 calchan Exp $
31 +
32 +*soltys-1.0-r1 (30 Dec 2014)
33 +
34 + 30 Dec 2014; Denis Dupeyron <calchan@g.o> -soltys-1.0.ebuild,
35 + +soltys-1.0-r1.ebuild:
36 + Remove hq3x as default scaler as it can be too ambitious for some machines
37 + and can be changed by the user at run time.
38
39 *soltys-1.0 (30 Oct 2014)
40
41
42
43
44 1.1 games-rpg/soltys/soltys-1.0-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/soltys-1.0-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/soltys-1.0-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: soltys-1.0-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/games-rpg/soltys/soltys-1.0-r1.ebuild,v 1.1 2014/12/30 05:43:42 calchan Exp $
54
55 EAPI=5
56 inherit unpacker eutils games
57
58 DESCRIPTION="Classic adventure game"
59 HOMEPAGE="http://wiki.scummvm.org/index.php/Soltys"
60 SRC_URI="linguas_en? ( mirror://sourceforge/scummvm/${PN}-en-v${PV}.zip )
61 linguas_es? ( mirror://sourceforge/scummvm/${PN}-es-v${PV}.zip )
62 linguas_pl? ( mirror://sourceforge/scummvm/${PN}-pl-v${PV}.zip )
63 !linguas_en? ( !linguas_es? ( !linguas_pl? ( mirror://sourceforge/scummvm/${PN}-en-v${PV}.zip ) ) )
64 http://www.scummvm.org/images/cat-soltys.png"
65
66 LICENSE="Soltys"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="linguas_en linguas_es linguas_pl"
70
71 RDEPEND=">=games-engines/scummvm-1.5"
72 DEPEND="$(unpacker_src_uri_depends)"
73
74 S=${WORKDIR}
75
76 src_unpack() {
77 if use linguas_en || ( ! use linguas_en && ! use linguas_es && ! use linguas_pl ) ; then
78 mkdir -p en || die
79 unpacker ${PN}-en-v${PV}.zip
80 mv vol.{cat,dat} en/ || die
81 fi
82 if use linguas_es ; then
83 mkdir -p es || die
84 unpacker ${PN}-es-v${PV}.zip
85 mv soltys-es-v1-0/vol.{cat,dat} es/ || die
86 fi
87 if use linguas_pl ; then
88 mkdir -p pl || die
89 unpacker ${PN}-pl-v${PV}.zip
90 mv vol.{cat,dat} pl/ || die
91 fi
92 }
93
94 src_prepare() {
95 rm -rf license.txt soltys-es-v1-0
96 }
97
98 src_install() {
99 insinto "${GAMES_DATADIR}"/${PN}
100 doins -r *
101 newicon "${DISTDIR}"/cat-soltys.png soltys.png
102 if use linguas_en || ( ! use linguas_en && ! use linguas_es && ! use linguas_pl ) ; then
103 games_make_wrapper soltys-en "scummvm -f -p \"${GAMES_DATADIR}/${PN}/en\" soltys" .
104 make_desktop_entry ${PN}-en "Soltys (English)" soltys
105 fi
106 if use linguas_es ; then
107 games_make_wrapper soltys-es "scummvm -f -p \"${GAMES_DATADIR}/${PN}/es\" soltys" .
108 make_desktop_entry ${PN}-es "Soltys (EspaƱol)" soltys
109 fi
110 if use linguas_pl ; then
111 games_make_wrapper soltys-pl "scummvm -f -p \"${GAMES_DATADIR}/${PN}/pl\" soltys" .
112 make_desktop_entry ${PN}-pl "Soltys (Polski)" soltys
113 fi
114 prepgamesdirs
115 }