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/wcslib: wcslib-4.4.4.ebuild ChangeLog wcslib-4.3.3-r1.ebuild wcslib-4.4.2.ebuild wcslib-4.3-r1.ebuild
Date: Fri, 29 Jan 2010 03:04:32
Message-Id: E1Nah9n-0007sY-U2@stork.gentoo.org
1 bicatali 10/01/29 03:04:27
2
3 Modified: ChangeLog
4 Added: wcslib-4.4.4.ebuild
5 Removed: wcslib-4.3.3-r1.ebuild wcslib-4.4.2.ebuild
6 wcslib-4.3-r1.ebuild
7 Log:
8 Version bump
9 (Portage version: 2.2_rc61/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.9 sci-astronomy/wcslib/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/wcslib/ChangeLog?rev=1.9&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/wcslib/ChangeLog?rev=1.9&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/wcslib/ChangeLog?r1=1.8&r2=1.9
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/wcslib/ChangeLog,v
21 retrieving revision 1.8
22 retrieving revision 1.9
23 diff -u -r1.8 -r1.9
24 --- ChangeLog 9 Sep 2009 16:15:44 -0000 1.8
25 +++ ChangeLog 29 Jan 2010 03:04:27 -0000 1.9
26 @@ -1,6 +1,15 @@
27 # ChangeLog for sci-astronomy/wcslib
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcslib/ChangeLog,v 1.8 2009/09/09 16:15:44 bicatali Exp $
30 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcslib/ChangeLog,v 1.9 2010/01/29 03:04:27 bicatali Exp $
32 +
33 +*wcslib-4.4.4 (29 Jan 2010)
34 +
35 + 29 Jan 2010; Sébastien Fabbro <bicatali@g.o>
36 + -wcslib-4.3-r1.ebuild, -wcslib-4.3.3-r1.ebuild,
37 + -files/wcslib-4.3.3-flibs.patch, -files/wcslib-4.3.3-tests.patch,
38 + -wcslib-4.4.2.ebuild, +wcslib-4.4.4.ebuild,
39 + +files/wcslib-4.4.4-destdir.patch:
40 + Version bump
41
42 *wcslib-4.4.3 (09 Sep 2009)
43
44
45
46
47 1.1 sci-astronomy/wcslib/wcslib-4.4.4.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/wcslib/wcslib-4.4.4.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/wcslib/wcslib-4.4.4.ebuild?rev=1.1&content-type=text/plain
51
52 Index: wcslib-4.4.4.ebuild
53 ===================================================================
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/wcslib/wcslib-4.4.4.ebuild,v 1.1 2010/01/29 03:04:27 bicatali Exp $
57
58 EAPI=2
59 inherit eutils virtualx flag-o-matic
60
61 DESCRIPTION="Astronomical World Coordinate System transformations library"
62 HOMEPAGE="http://www.atnf.csiro.au/people/mcalabre/WCS/"
63 SRC_URI="ftp://ftp.atnf.csiro.au/pub/software/${PN}/${P}.tar.bz2"
64
65 LICENSE="LGPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc test"
69
70 RDEPEND="sci-libs/pgplot
71 sci-libs/cfitsio"
72 DEPEND="${RDEPEND}
73 test? (
74 media-fonts/font-misc-misc
75 media-fonts/font-cursor-misc )"
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${PN}-4.4.2-flibs.patch
79 epatch "${FILESDIR}"/${PN}-4.4.4-destdir.patch
80 append-flags -U_FORTIFY_SOURCE
81 }
82
83 src_compile() {
84 # -j1 forced. build system too crappy to be worth debugging
85 # does not really fix anything
86 emake -j1 || die "emake failed"
87 }
88
89 src_test() {
90 Xemake check || die "emake test failed"
91 }
92
93 src_install () {
94 emake DESTDIR="${D}" install || die "emake install failed"
95 dodoc README
96 if use doc; then
97 insinto /usr/share/doc/${PF}
98 doins -r *.pdf html || die
99 fi
100 }