Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-astronomy/skycat: ChangeLog skycat-3.0.2-r1.ebuild skycat-3.0.1.ebuild
Date: Wed, 05 Nov 2008 21:53:42
Message-Id: E1KxqJn-0006ri-P4@stork.gentoo.org
1 bicatali 08/11/05 21:53:39
2
3 Modified: ChangeLog
4 Added: skycat-3.0.2-r1.ebuild
5 Removed: skycat-3.0.1.ebuild
6 Log:
7 Added some missing headers, more gcc-4.3 fixes not caught during compilation
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
9
10 Revision Changes Path
11 1.4 sci-astronomy/skycat/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/skycat/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/skycat/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/skycat/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 26 Jun 2008 11:34:30 -0000 1.3
24 +++ ChangeLog 5 Nov 2008 21:53:39 -0000 1.4
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sci-astronomy/skycat
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/ChangeLog,v 1.3 2008/06/26 11:34:30 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/ChangeLog,v 1.4 2008/11/05 21:53:39 bicatali Exp $
30 +
31 +*skycat-3.0.2-r1 (05 Nov 2008)
32 +
33 + 05 Nov 2008; Sébastien Fabbro <bicatali@g.o>
34 + files/skycat-3.0.1-gcc43.patch, -skycat-3.0.1.ebuild,
35 + +skycat-3.0.2-r1.ebuild:
36 + Added some missing headers, more gcc-4.3 fixes not caught during
37 + compilation
38
39 *skycat-3.0.2 (26 Jun 2008)
40
41
42
43
44 1.1 sci-astronomy/skycat/skycat-3.0.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/skycat/skycat-3.0.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/skycat/skycat-3.0.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: skycat-3.0.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/skycat-3.0.2-r1.ebuild,v 1.1 2008/11/05 21:53:39 bicatali Exp $
54
55 inherit eutils autotools
56
57 DESCRIPTION="ESO astronomical image visualizer with catalog access."
58 HOMEPAGE="http://archive.eso.org/skycat"
59 SRC_URI="ftp://ftp.eso.org/pub/archive/${PN}/Sources/${P}.tar.gz"
60 LICENSE="GPL-2"
61 SLOT="0"
62
63 KEYWORDS="~amd64 ~x86"
64 IUSE="threads"
65
66 DEPEND="x11-libs/libXext
67 >=dev-tcltk/tclx-2.4
68 >=dev-tcltk/blt-2.4
69 >=dev-tcltk/itcl-3.3
70 >=dev-tcltk/iwidgets-4.0.1
71 >=dev-tcltk/tkimg-1.3"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 # fix buggy tcl.m4 for bash3
77 epatch "${FILESDIR}"/${PN}-3.0.1-m4.patch
78 # fix old style headers, set as error by new g++
79 epatch "${FILESDIR}"/${PN}-3.0.1-gcc43.patch
80 eautoconf
81 }
82
83 src_compile() {
84 econf $(use_enable threads)
85 emake
86 emake || die "emake failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "emake install failed"
91 dodoc README CHANGES VERSION
92 for d in tclutil astrotcl rtd cat skycat; do
93 for f in README CHANGES VERSION; do
94 newdoc ${f} ${f}.${d}
95 done
96 done
97 }