Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-simulation/senken: senken-0.3.0.ebuild ChangeLog
Date: Thu, 30 Oct 2014 15:31:49
Message-Id: 20141030153143.8EC8D913D@oystercatcher.gentoo.org
1 mr_bones_ 14/10/30 15:31:43
2
3 Modified: senken-0.3.0.ebuild ChangeLog
4 Log:
5 EAPI=5; tidy; fix underlinking again (bug #527462)
6
7 (Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.11 games-simulation/senken/senken-0.3.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild?r1=1.10&r2=1.11
15
16 Index: senken-0.3.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- senken-0.3.0.ebuild 1 Mar 2011 07:20:13 -0000 1.10
23 +++ senken-0.3.0.ebuild 30 Oct 2014 15:31:43 -0000 1.11
24 @@ -1,13 +1,13 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild,v 1.10 2011/03/01 07:20:13 mr_bones_ Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/senken-0.3.0.ebuild,v 1.11 2014/10/30 15:31:43 mr_bones_ Exp $
30
31 -EAPI=2
32 +EAPI=5
33 inherit eutils games
34
35 DESCRIPTION="city simulation game"
36 HOMEPAGE="http://www.contrib.andrew.cmu.edu/~tmartin/senken/"
37 -SRC_URI="http://www.contrib.andrew.cmu.edu/~tmartin/senken/download/${P}.tar.gz"
38 +SRC_URI="mirror://gentoo/${P}.tar.gz"
39
40 LICENSE="GPL-2"
41 SLOT="0"
42 @@ -24,28 +24,27 @@
43 src_prepare() {
44 sed -i \
45 -e "s:/usr/local/share:${GAMES_DATADIR}:" \
46 - lib/utils.h \
47 - || die "sed lib/utils.h failed"
48 - epatch "${FILESDIR}"/${P}-as-needed.patch
49 + lib/utils.h || die
50 + epatch \
51 + "${FILESDIR}"/${P}-as-needed.patch \
52 + "${FILESDIR}"/${P}-warnings.patch
53 }
54 src_configure() {
55 - egamesconf $(use_enable nls) || die
56 + egamesconf $(use_enable nls)
57 }
58
59 src_install() {
60 - emake DESTDIR="${D}" install || die "emake install failed"
61 - dodoc AUTHORS README TODO
62 + default
63
64 dodir "${GAMES_DATADIR}"
65 - mv "${D}/${GAMES_PREFIX}/share/senken" "${D}/${GAMES_DATADIR}/" \
66 - || die "mv failed"
67 - rm -rf "${D}/${GAMES_PREFIX}"/{include,lib,man,share}
68 + mv "${D}/${GAMES_PREFIX}/share/senken" "${D}/${GAMES_DATADIR}/" || die
69 + rm -rf "${D}/${GAMES_PREFIX}"/{include,lib,man,share} || die
70
71 insinto "${GAMES_DATADIR}/senken/img"
72 doins img/*.png
73
74 - find "${D}/${GAMES_DATADIR}/" -type f -exec chmod a-x \{\} \;
75 - find "${D}/${GAMES_DATADIR}/" -name "Makefile.*" -exec rm -f \{\} \;
76 + find "${D}/${GAMES_DATADIR}/" -type f -exec chmod a-x \{\} +
77 + find "${D}/${GAMES_DATADIR}/" -name "Makefile.*" -exec rm -f \{\} +
78
79 prepgamesdirs
80 }
81
82
83
84 1.11 games-simulation/senken/ChangeLog
85
86 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/senken/ChangeLog?rev=1.11&view=markup
87 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/senken/ChangeLog?rev=1.11&content-type=text/plain
88 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/senken/ChangeLog?r1=1.10&r2=1.11
89
90 Index: ChangeLog
91 ===================================================================
92 RCS file: /var/cvsroot/gentoo-x86/games-simulation/senken/ChangeLog,v
93 retrieving revision 1.10
94 retrieving revision 1.11
95 diff -u -r1.10 -r1.11
96 --- ChangeLog 11 Feb 2009 13:05:34 -0000 1.10
97 +++ ChangeLog 30 Oct 2014 15:31:43 -0000 1.11
98 @@ -1,6 +1,11 @@
99 # ChangeLog for games-simulation/senken
100 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
101 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/ChangeLog,v 1.10 2009/02/11 13:05:34 tupone Exp $
102 +# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
103 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/senken/ChangeLog,v 1.11 2014/10/30 15:31:43 mr_bones_ Exp $
104 +
105 + 30 Oct 2014; Michael Sterrett <mr_bones_@g.o>
106 + +files/senken-0.3.0-warnings.patch, files/senken-0.3.0-as-needed.patch,
107 + senken-0.3.0.ebuild:
108 + EAPI=5; tidy; fix underlinking again (bug #527462)
109
110 11 Feb 2009; Alfredo Tupone <tupone@g.o>
111 +files/senken-0.3.0-as-needed.patch, senken-0.3.0.ebuild: