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/scamp: ChangeLog scamp-1.7.0-r1.ebuild scamp-1.7.0.ebuild scamp-1.6.2.ebuild
Date: Tue, 03 Jan 2012 02:43:30
Message-Id: 20120103024313.383C72004C@flycatcher.gentoo.org
1 bicatali 12/01/03 02:43:13
2
3 Modified: ChangeLog
4 Added: scamp-1.7.0-r1.ebuild
5 Removed: scamp-1.7.0.ebuild scamp-1.6.2.ebuild
6 Log:
7 Added a patch for plplot-5.9.9, thanks Jan Kohnert, bug #396723
8
9 (Portage version: 2.1.10.41/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.8 sci-astronomy/scamp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/scamp/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/scamp/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/scamp/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 4 Aug 2011 18:32:22 -0000 1.7
25 +++ ChangeLog 3 Jan 2012 02:43:12 -0000 1.8
26 @@ -1,6 +1,14 @@
27 # ChangeLog for sci-astronomy/scamp
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/ChangeLog,v 1.7 2011/08/04 18:32:22 bicatali Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/ChangeLog,v 1.8 2012/01/03 02:43:12 bicatali Exp $
32 +
33 +*scamp-1.7.0-r1 (03 Jan 2012)
34 +
35 + 03 Jan 2012; Sébastien Fabbro <bicatali@g.o>
36 + -files/scamp-1.4.6-autotools.patch, -files/scamp-1.5.5-autotools.patch,
37 + -scamp-1.6.2.ebuild, -scamp-1.7.0.ebuild, +scamp-1.7.0-r1.ebuild,
38 + +files/scamp-1.7.0-plplot599.patch:
39 + Added a patch for plplot-5.9.9, thanks Jan Kohnert, bug #396723
40
41 04 Aug 2011; Sébastien Fabbro <bicatali@g.o> metadata.xml:
42 Switched herd to sci-astronomy
43
44
45
46 1.1 sci-astronomy/scamp/scamp-1.7.0-r1.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/scamp/scamp-1.7.0-r1.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/scamp/scamp-1.7.0-r1.ebuild?rev=1.1&content-type=text/plain
50
51 Index: scamp-1.7.0-r1.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/scamp-1.7.0-r1.ebuild,v 1.1 2012/01/03 02:43:12 bicatali Exp $
56
57 EAPI=4
58 inherit eutils
59
60 DESCRIPTION="Astrometric and photometric solutions for astronomical images"
61 HOMEPAGE="http://www.astromatic.net/software/scamp"
62 SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
63
64 LICENSE="CeCILL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc threads plplot"
68
69 RDEPEND=">=sci-astronomy/cdsclient-3.4
70 virtual/cblas
71 >=sci-libs/lapack-atlas-3.8.0
72 sci-libs/fftw:3.0
73 plplot? ( sci-libs/plplot )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig"
76
77 src_prepare() {
78 # gentoo uses cblas instead of ptcblas (linked to threaded with eselect)
79 sed -i \
80 -e 's/ptcblas/cblas/g' \
81 configure || die "sed failed"
82 epatch "${FILESDIR}"/${P}-plplot599.patch
83 }
84
85 src_configure() {
86 econf \
87 --with-atlas-incdir="${EROOT}/usr/include/atlas" \
88 $(use_with plplot) \
89 $(use_enable threads)
90 }
91
92 src_install () {
93 default
94 use doc && dodoc doc/*,pdf
95 }