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/ast: ChangeLog ast-5.1.0.ebuild
Date: Sat, 21 Mar 2009 15:46:53
Message-Id: E1Ll3PO-0005FX-Ep@stork.gentoo.org
1 bicatali 09/03/21 15:46:50
2
3 Modified: ChangeLog
4 Added: ast-5.1.0.ebuild
5 Log:
6 Version bump and fixed a libtool file (bug #261077)
7 (Portage version: 2.2_rc26/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 sci-astronomy/ast/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ast/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ast/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ast/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/ast/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 25 Feb 2009 17:12:26 -0000 1.7
23 +++ ChangeLog 21 Mar 2009 15:46:50 -0000 1.8
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sci-astronomy/ast
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ast/ChangeLog,v 1.7 2009/02/25 17:12:26 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ast/ChangeLog,v 1.8 2009/03/21 15:46:50 bicatali Exp $
29 +
30 +*ast-5.1.0 (21 Mar 2009)
31 +
32 + 21 Mar 2009; Sébastien Fabbro <bicatali@g.o>
33 + files/ast-4.6.2-makefile.in.patch, +files/ast-5.1.0-makefile.in.patch,
34 + +ast-5.1.0.ebuild:
35 + Version bump and fixed a libtool file (bug #261077)
36
37 25 Feb 2009; Sébastien Fabbro <bicatali@g.o> -ast-4.6.2-r1.ebuild:
38 Removed buggy version
39
40
41
42 1.1 sci-astronomy/ast/ast-5.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ast/ast-5.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/ast/ast-5.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ast-5.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ast/ast-5.1.0.ebuild,v 1.1 2009/03/21 15:46:50 bicatali Exp $
52
53 EAPI=2
54 inherit eutils versionator
55
56 MYP="${PN}-$(replace_version_separator 2 '-')"
57
58 DESCRIPTION="Library for handling World Coordinate Systems in astronomy"
59 HOMEPAGE="http://www.starlink.ac.uk/~dsb/ast/ast.html"
60 SRC_URI="http://www.starlink.ac.uk/~dsb/${PN}/${MYP}.tar.gz"
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="doc"
65 RDEPEND="sci-libs/pgplot"
66 DEPEND="${RDEPEND}"
67
68 S="${WORKDIR}/${MYP}"
69
70 src_prepare() {
71 # dont patch/sed Makefile.am because it requires special upstream automake
72 # not shipped
73 epatch "${FILESDIR}"/${P}-makefile.in.patch
74 }
75
76 #src_configure() {
77 # PATH=".:${PATH}" econf
78 #}
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake install failed"
82 rm -rf "${D}"usr/{docs,help,manifests,news,share} || die
83 dodoc ast.news fac_1521_err
84 if use doc; then
85 dodoc *.ps || die "doc install failed"
86 fi
87 }