Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-util/atlas: atlas-0.3.1_p20100302.ebuild ChangeLog
Date: Tue, 02 Mar 2010 13:43:10
Message-Id: E1NmSNP-0001kG-76@stork.gentoo.org
1 ssuominen 10/03/02 13:43:07
2
3 Modified: ChangeLog
4 Added: atlas-0.3.1_p20100302.ebuild
5 Log:
6 Version bump (snapshot) as requested.
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 games-util/atlas/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/atlas/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/atlas/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/atlas/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-util/atlas/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 2 Mar 2010 10:37:37 -0000 1.18
23 +++ ChangeLog 2 Mar 2010 13:43:06 -0000 1.19
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-util/atlas
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-util/atlas/ChangeLog,v 1.18 2010/03/02 10:37:37 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-util/atlas/ChangeLog,v 1.19 2010/03/02 13:43:06 ssuominen Exp $
29 +
30 +*atlas-0.3.1_p20100302 (02 Mar 2010)
31 +
32 + 02 Mar 2010; Samuli Suominen <ssuominen@g.o>
33 + +atlas-0.3.1_p20100302.ebuild:
34 + Version bump (snapshot) as requested.
35
36 02 Mar 2010; Christian Faulhammer <fauli@g.o>
37 atlas-0.3.1_p20090812.ebuild:
38
39
40
41 1.1 games-util/atlas/atlas-0.3.1_p20100302.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/atlas/atlas-0.3.1_p20100302.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/atlas/atlas-0.3.1_p20100302.ebuild?rev=1.1&content-type=text/plain
45
46 Index: atlas-0.3.1_p20100302.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-util/atlas/atlas-0.3.1_p20100302.ebuild,v 1.1 2010/03/02 13:43:06 ssuominen Exp $
51
52 EAPI=2
53 inherit autotools flag-o-matic games
54
55 DESCRIPTION="Chart Program to use with Flightgear Flight Simulator"
56 HOMEPAGE="http://atlas.sourceforge.net/"
57 SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
62 IUSE=""
63
64 DEPEND="games-simulation/flightgear
65 media-libs/libpng
66 media-libs/jpeg:0
67 x11-libs/libX11
68 x11-libs/libXext
69 x11-libs/libXi
70 x11-libs/libICE
71 x11-libs/libSM
72 x11-libs/libXt
73 x11-libs/libXmu
74 virtual/opengl
75 virtual/glut
76 net-misc/curl"
77
78 src_prepare() {
79 eautoreconf
80 }
81
82 src_configure() {
83 append-cppflags -DGL_GLEXT_PROTOTYPES
84
85 egamesconf \
86 --disable-dependency-tracking \
87 --with-fgbase="${GAMES_DATADIR}"/FlightGear
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die
92 insinto "${GAMES_DATADIR}"/FlightGear/Atlas
93 doins src/data/*.jpg || die
94 insinto "${GAMES_DATADIR}"/FlightGear/Atlas/Palettes
95 doins src/data/Palettes/*.ap || die
96 insinto "${GAMES_DATADIR}"/FlightGear/Atlas/Fonts
97 doins src/data/Fonts/*.txf || die
98 dodoc AUTHORS NEWS README
99 prepgamesdirs
100 }
101
102 pkg_postinst() {
103 games_pkg_postinst
104 elog "You now can make the maps with the following commands:"
105 elog "${GAMES_BINDIR}/Map --atlas=${GAMES_DATADIR}/FlightGear/Atlas"
106 elog
107 elog "To run Atlas concurrently with FlightGear use the following:"
108 elog "Atlas --path=[path of map images] --udp=[port number]"
109 elog "and start fgfs with the following switch (or in .fgfsrc):"
110 elog "--nmea=socket,out,0.5,[host that you run Atlas on],[port number],udp"
111 echo
112 }
113
114 pkg_postrm() {
115 elog "You must manually remove the maps if you don't want them around."
116 elog "They are found in the following directory:"
117 echo
118 elog "${GAMES_DATADIR}/FlightGear/Atlas"
119 echo
120 }