Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/mutantstorm-demo: ChangeLog mutantstorm-demo-1.33.ebuild
Date: Wed, 26 Dec 2012 16:16:38
Message-Id: 20121226161627.983C62171D@flycatcher.gentoo.org
1 tupone 12/12/26 16:16:27
2
3 Modified: ChangeLog mutantstorm-demo-1.33.ebuild
4 Log:
5 Use QA_PREBUILT. Bug #430982
6
7 (Portage version: 2.1.11.38/cvs/Linux i686, signed Manifest commit with key 0145142D)
8
9 Revision Changes Path
10 1.14 games-action/mutantstorm-demo/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/mutantstorm-demo/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/mutantstorm-demo/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/mutantstorm-demo/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 8 Feb 2012 21:28:01 -0000 1.13
23 +++ ChangeLog 26 Dec 2012 16:16:27 -0000 1.14
24 @@ -1,6 +1,9 @@
25 # ChangeLog for games-action/mutantstorm-demo
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/ChangeLog,v 1.13 2012/02/08 21:28:01 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/ChangeLog,v 1.14 2012/12/26 16:16:27 tupone Exp $
29 +
30 + 26 Dec 2012; Tupone Alfredo <tupone@g.o> mutantstorm-demo-1.33.ebuild:
31 + Use QA_PREBUILT. Bug #430982 by Diego Elio Pettenò
32
33 08 Feb 2012; Mike Frysinger <vapier@g.o> mutantstorm-demo-1.33.ebuild:
34 Move to new unpacker eclass for unpack_makeself.
35
36
37
38 1.14 games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild?rev=1.14&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild?rev=1.14&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild?r1=1.13&r2=1.14
43
44 Index: mutantstorm-demo-1.33.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild,v
47 retrieving revision 1.13
48 retrieving revision 1.14
49 diff -u -r1.13 -r1.14
50 --- mutantstorm-demo-1.33.ebuild 8 Feb 2012 21:28:01 -0000 1.13
51 +++ mutantstorm-demo-1.33.ebuild 26 Dec 2012 16:16:27 -0000 1.14
52 @@ -1,6 +1,7 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild,v 1.13 2012/02/08 21:28:01 vapier Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild,v 1.14 2012/12/26 16:16:27 tupone Exp $
57 +EAPI=4
58
59 inherit eutils unpacker games
60
61 @@ -28,20 +29,21 @@
62
63 dir=${GAMES_PREFIX_OPT}/${PN}
64 Ddir=${D}/${dir}
65 +QA_PREBUILT="${dir:1}/mutantstorm-bin"
66
67 src_install() {
68 insinto "${dir}"
69 - doins -r menu script styles || die "doins failed"
70 + doins -r menu script styles
71
72 exeinto "${dir}"
73 - doexe bin/Linux/x86/* || die "doexe failed"
74 + doexe bin/Linux/x86/*
75 # Remove libSDL since we use the system version and our version doesn't
76 # have TEXTRELs in it.
77 rm -f "${Ddir}"/libSDL-1.2.so.0.0.5
78 games_make_wrapper mutantstorm-demo ./mutantstormdemo "${dir}" "${dir}"
79
80 insinto "${dir}"
81 - doins README.txt buy_me mutant.xpm pompom readme.htm || die "doins failed"
82 + doins README.txt buy_me mutant.xpm pompom readme.htm
83
84 prepgamesdirs
85 }