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/stiff: stiff-2.1.2.ebuild ChangeLog stiff-1.10.ebuild
Date: Fri, 26 Feb 2010 19:47:34
Message-Id: E1Nl69p-00058d-Cf@stork.gentoo.org
1 bicatali 10/02/26 19:47:29
2
3 Modified: ChangeLog
4 Added: stiff-2.1.2.ebuild
5 Removed: stiff-1.10.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc63/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sci-astronomy/stiff/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/stiff/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/stiff/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/stiff/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 28 Jul 2009 17:42:50 -0000 1.3
24 +++ ChangeLog 26 Feb 2010 19:47:28 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-astronomy/stiff
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.3 2009/07/28 17:42:50 bicatali Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/ChangeLog,v 1.4 2010/02/26 19:47:28 bicatali Exp $
31 +
32 +*stiff-2.1.2 (26 Feb 2010)
33 +
34 + 26 Feb 2010; Sébastien Fabbro <bicatali@g.o> -stiff-1.10.ebuild,
35 + +stiff-2.1.2.ebuild:
36 + Version bump
37
38 28 Jul 2009; Sébastien Fabbro <bicatali@g.o> stiff-1.12.ebuild:
39 Updated license to CeCILL-2
40
41
42
43 1.1 sci-astronomy/stiff/stiff-2.1.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/stiff/stiff-2.1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/stiff/stiff-2.1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: stiff-2.1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/stiff/stiff-2.1.2.ebuild,v 1.1 2010/02/26 19:47:28 bicatali Exp $
53
54 EAPI=2
55
56 DESCRIPTION="Converts astronomical FITS images to the TIFF format"
57 HOMEPAGE="http://astromatic.iap.fr/software/stiff"
58 SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz"
59
60 LICENSE="CeCILL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc threads"
64
65 RDEPEND="media-libs/tiff
66 media-libs/jpeg
67 sys-libs/zlib"
68
69 DEPEND="${RDEPEND}"
70
71 src_configure() {
72 econf $(use_enable threads)
73 }
74
75 src_install () {
76 emake DESTDIR="${D}" install || die "emake install failed"
77 dodoc AUTHORS BUGS ChangeLog HISTORY README THANKS
78 if use doc; then
79 insinto /usr/share/doc/${PF}
80 doins doc/*.pdf || die
81 fi
82 }