Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-astronomy/esorex: esorex-3.8.3-r1.ebuild ChangeLog esorex-3.8.3.ebuild
Date: Sun, 03 Oct 2010 08:25:01
Message-Id: 20101003082456.469F220054@flycatcher.gentoo.org
1 xarthisius 10/10/03 08:24:56
2
3 Modified: ChangeLog
4 Added: esorex-3.8.3-r1.ebuild
5 Removed: esorex-3.8.3.ebuild
6 Log:
7 Use pkg-config for cfitsio wrt bug 339460. Thanks to Diego for the report. Drop old.
8
9 (Portage version: 2.1.9/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.2 sci-astronomy/esorex/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/esorex/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/esorex/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/esorex/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/esorex/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 26 May 2010 19:10:16 -0000 1.1
25 +++ ChangeLog 3 Oct 2010 08:24:56 -0000 1.2
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sci-astronomy/esorex
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/esorex/ChangeLog,v 1.1 2010/05/26 19:10:16 bicatali Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/esorex/ChangeLog,v 1.2 2010/10/03 08:24:56 xarthisius Exp $
31 +
32 +*esorex-3.8.3-r1 (03 Oct 2010)
33 +
34 + 03 Oct 2010; Kacper Kowalik <xarthisius@g.o> -esorex-3.8.3.ebuild,
35 + +esorex-3.8.3-r1.ebuild, +files/esorex-3.8.3-cfitsio.patch:
36 + Use pkg-config for cfitsio wrt bug 339460. Thanks to Diego for the report.
37 + Drop old.
38
39 *esorex-3.8.3 (26 May 2010)
40
41
42
43
44 1.1 sci-astronomy/esorex/esorex-3.8.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/esorex/esorex-3.8.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/esorex/esorex-3.8.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: esorex-3.8.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/esorex/esorex-3.8.3-r1.ebuild,v 1.1 2010/10/03 08:24:55 xarthisius Exp $
54
55 EAPI=2
56
57 inherit autotools eutils
58
59 DESCRIPTION="ESO Recipe Execution Tool to exec cpl scripts"
60 HOMEPAGE="http://www.eso.org/sci/data-processing/software/cpl/esorex.html"
61 SRC_URI="ftp://ftp.eso.org/pub/cpl/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="examples"
67
68 DEPEND=">=sci-astronomy/cpl-5.2"
69 RDEPEND="${DEPEND}"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-cfitsio.patch
73 eautoreconf
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die
78 dodoc README AUTHORS NEWS TODO BUGS ChangeLog || die
79 if use examples; then
80 insinto /usr/share/doc/${PF}
81 doins -r examples || die
82 fi
83 }