Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-sports/dustrac: dustrac-1.6.3.ebuild ChangeLog
Date: Sun, 26 Jan 2014 23:15:14
Message-Id: 20140126231510.C45802004E@flycatcher.gentoo.org
1 hasufell 14/01/26 23:15:10
2
3 Modified: ChangeLog
4 Added: dustrac-1.6.3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.2 games-sports/dustrac/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-sports/dustrac/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-sports/dustrac/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-sports/dustrac/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-sports/dustrac/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 26 Dec 2013 13:53:52 -0000 1.1
24 +++ ChangeLog 26 Jan 2014 23:15:10 -0000 1.2
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-sports/dustrac
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-sports/dustrac/ChangeLog,v 1.1 2013/12/26 13:53:52 hasufell Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-sports/dustrac/ChangeLog,v 1.2 2014/01/26 23:15:10 hasufell Exp $
31 +
32 +*dustrac-1.6.3 (26 Jan 2014)
33 +
34 + 26 Jan 2014; Julian Ospald <hasufell@g.o> +dustrac-1.6.3.ebuild,
35 + +files/dustrac-1.6.3-cmake.patch, +files/dustrac-1.6.3-desktopfile.patch:
36 + version bump
37
38 *dustrac-1.6.2 (26 Dec 2013)
39
40 @@ -8,4 +14,3 @@
41 +files/dustrac-1.6.2-cmake.patch, +files/dustrac-1.6.2-desktopfile.patch,
42 +metadata.xml:
43 initial import
44 -
45
46
47
48 1.1 games-sports/dustrac/dustrac-1.6.3.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-sports/dustrac/dustrac-1.6.3.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-sports/dustrac/dustrac-1.6.3.ebuild?rev=1.1&content-type=text/plain
52
53 Index: dustrac-1.6.3.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/games-sports/dustrac/dustrac-1.6.3.ebuild,v 1.1 2014/01/26 23:15:10 hasufell Exp $
58
59 EAPI=5
60
61 inherit eutils gnome2-utils cmake-utils games
62
63 DESCRIPTION="Tile-based, cross-platform 2D racing game"
64 HOMEPAGE="http://dustrac.sourceforge.net/"
65 SRC_URI="mirror://sourceforge/dustrac/${P}.tar.gz"
66
67 LICENSE="GPL-3 CC-BY-NC-3.0"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 RDEPEND="
73 dev-qt/qtcore:4
74 dev-qt/qtgui:4
75 dev-qt/qtopengl:4
76 media-libs/libvorbis
77 media-libs/openal
78 media-libs/mesa[gles2]"
79 DEPEND="${RDEPEND}
80 virtual/pkgconfig"
81
82 src_prepare() {
83 epatch "${FILESDIR}"/${P}-cmake.patch \
84 "${FILESDIR}"/${P}-desktopfile.patch
85 }
86
87 src_configure() {
88 # build failure without gles 2.0
89 local mycmakeargs=(
90 -DGLES=ON
91 -DGL30=ON
92 -DReleaseBuild=ON
93 -DDATA_PATH="${GAMES_DATADIR}/${PN}"
94 -DBIN_PATH="${GAMES_BINDIR}"
95 -DDOC_PATH=/usr/share/doc/${PF}
96 )
97
98 cmake-utils_src_configure
99 }
100
101 src_compile() {
102 cmake-utils_src_compile
103 }
104
105 src_install() {
106 cmake-utils_src_install
107 prepgamesdirs
108 }
109
110 pkg_preinst() {
111 games_pkg_preinst
112 gnome2_icon_savelist
113 }
114
115 pkg_postinst() {
116 games_pkg_postinst
117 gnome2_icon_cache_update
118 }
119
120 pkg_postrm() {
121 gnome2_icon_cache_update
122 }