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-misc/fitsverify: metadata.xml ChangeLog fitsverify-20100129.ebuild
Date: Sun, 31 Jan 2010 21:48:19
Message-Id: E1NbheS-0001KK-If@stork.gentoo.org
1 bicatali 10/01/31 21:48:16
2
3 Added: metadata.xml ChangeLog fitsverify-20100129.ebuild
4 Log:
5 Initial import
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-misc/fitsverify/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/fitsverify/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/fitsverify/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci</herd>
20 <longdescription lang='en'>
21 fitsverify is a computer program that rigorously checks whether a
22 FITS format data file conforms to all the requirements defined in
23 the FITS (Flexible Image Transport System) standard document.
24 </longdescription>
25 </pkgmetadata>
26
27
28
29 1.1 sci-misc/fitsverify/ChangeLog
30
31 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/fitsverify/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/fitsverify/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for sci-misc/fitsverify
37 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/sci-misc/fitsverify/ChangeLog,v 1.1 2010/01/31 21:48:15 bicatali Exp $
39
40 *fitsverify-20100129 (31 Jan 2010)
41
42 31 Jan 2010; Sébastien Fabbro <bicatali@g.o>
43 +fitsverify-20100129.ebuild, +metadata.xml:
44 Initial import
45
46
47
48
49 1.1 sci-misc/fitsverify/fitsverify-20100129.ebuild
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/fitsverify/fitsverify-20100129.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/fitsverify/fitsverify-20100129.ebuild?rev=1.1&content-type=text/plain
53
54 Index: fitsverify-20100129.ebuild
55 ===================================================================
56 # Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/sci-misc/fitsverify/fitsverify-20100129.ebuild,v 1.1 2010/01/31 21:48:15 bicatali Exp $
59
60 EAPI=2
61 inherit toolchain-funcs
62
63 DESCRIPTION="FITS file format checker"
64 HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/"
65 SRC_URI="${HOMEPAGE}/${PN}.tar"
66
67 LICENSE="public-domain"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 RDEPEND=">=sci-libs/cfitsio-3"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 S="${WORKDIR}/${PN}"
77
78 src_compile() {
79 $(tc-getCC) -DSTANDALONE ${CFLAGS} ${LDFLAGS} \
80 ftverify.c fvrf_data.c fvrf_file.c fvrf_head.c fvrf_key.c fvrf_misc.c \
81 -o ${PN} $(pkg-config --libs cfitsio) || die "compiling failed"
82 }
83
84 src_install() {
85 dobin fitsverify || die
86 dodoc README
87 }