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.1.2.ebuild
Date: Mon, 25 Jul 2011 23:05:08
Message-Id: 20110725225322.99C2A2004B@flycatcher.gentoo.org
1 bicatali 11/07/25 22:53:22
2
3 Modified: ChangeLog
4 Added: skycat-3.1.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 sci-astronomy/skycat/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/skycat/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/skycat/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/skycat/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 24 Sep 2010 18:13:38 -0000 1.7
24 +++ ChangeLog 25 Jul 2011 22:53:22 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-astronomy/skycat
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/ChangeLog,v 1.7 2010/09/24 18:13:38 bicatali Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/ChangeLog,v 1.8 2011/07/25 22:53:22 bicatali Exp $
31 +
32 +*skycat-3.1.2 (25 Jul 2011)
33 +
34 + 25 Jul 2011; Sébastien Fabbro <bicatali@g.o> +skycat-3.1.2.ebuild:
35 + Version bump
36
37 *skycat-3.1.1 (24 Sep 2010)
38
39
40
41
42 1.1 sci-astronomy/skycat/skycat-3.1.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/skycat/skycat-3.1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/skycat/skycat-3.1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: skycat-3.1.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/skycat/skycat-3.1.2.ebuild,v 1.1 2011/07/25 22:53:22 bicatali Exp $
52
53 EAPI=4
54 inherit eutils autotools
55
56 DESCRIPTION="ESO astronomical image visualizer with catalog access."
57 HOMEPAGE="http://archive.eso.org/skycat"
58 SRC_URI="http://archive.eso.org/cms/tools-documentation/skycat-download/${P}.tar.gz"
59
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 sci-libs/cfitsio
73 sci-astronomy/wcstools"
74 RDEPEND="${DEPEND}"
75
76 src_prepare() {
77 # fix buggy tcl.m4 for bash3
78 epatch "${FILESDIR}"/${PN}-3.0.1-m4.patch
79 # need fix for tk-8.5
80 if has_version ">=dev-lang/tk-8.5" ; then
81 epatch "${FILESDIR}"/${PN}-3.0.2-tk8.5.patch
82 fi
83 epatch "${FILESDIR}"/${PN}-3.0.2-makefile-qa.patch
84 # use system libs
85 epatch "${FILESDIR}"/${PN}-3.0.2-systemlibs.patch
86 rm -fr astrotcl/{cfitsio,libwcs} \
87 || die "Failed to remove included libs"
88 eautoreconf
89 }
90
91 src_configure() {
92 econf $(use_enable threads) --enable-merge
93 }
94
95 src_install() {
96 default
97 local d
98 for d in tclutil astrotcl rtd cat skycat; do
99 for f in README CHANGES VERSION; do
100 newdoc ${f} ${f}.${d}
101 done
102 done
103 }