Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/
Date: Thu, 27 Feb 2014 23:01:49
Message-Id: 1393531311.4ed48e34f8ea5ab22e02bcc2a0019878b24f9d8e.bicatali@gentoo
1 commit: 4ed48e34f8ea5ab22e02bcc2a0019878b24f9d8e
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 27 20:01:51 2014 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 27 20:01:51 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4ed48e34
7
8 sci-astronomy/swarp: EAPI-5, autotools-utils
9
10 Package-Manager: portage-2.2.8-prefix
11
12 ---
13 sci-astronomy/swarp/ChangeLog | 5 ++++-
14 sci-astronomy/swarp/swarp-9999.ebuild | 17 ++++++++---------
15 2 files changed, 12 insertions(+), 10 deletions(-)
16
17 diff --git a/sci-astronomy/swarp/ChangeLog b/sci-astronomy/swarp/ChangeLog
18 index 4c8d76b..f5366c4 100644
19 --- a/sci-astronomy/swarp/ChangeLog
20 +++ b/sci-astronomy/swarp/ChangeLog
21 @@ -1,7 +1,10 @@
22 # ChangeLog for sci-astronomy/swarp
23 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
24 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
25 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/swarp/ChangeLog,v 1.6 2011/08/04 18:33:44 bicatali Exp $
26
27 + 27 Feb 2014; Sébastien Fabbro <bicatali@g.o> swarp-9999.ebuild:
28 + sci-astronomy/swarp: EAPI-5, autotools-utils
29 +
30 *swarp-9999 (04 Jul 2012)
31
32 04 Jul 2012; Sébastien Fabbro <bicatali@g.o> +swarp-9999.ebuild,
33
34 diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild
35 index c764e79..920850f 100644
36 --- a/sci-astronomy/swarp/swarp-9999.ebuild
37 +++ b/sci-astronomy/swarp/swarp-9999.ebuild
38 @@ -2,19 +2,22 @@
39 # Distributed under the terms of the GNU General Public License v2
40 # $Header: $
41
42 -EAPI=4
43 +EAPI=5
44
45 if [[ ${PV} == "9999" ]] ; then
46 _SVN=subversion
47 ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk"
48 SRC_URI=""
49 KEYWORDS=""
50 + AUTOTOOLS_AUTORECONF=1
51 else
52 SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz"
53 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
54 fi
55
56 -inherit ${_SVN} autotools
57 +AUTOTOOLS_IN_SOURCE_BUILD=1
58 +
59 +inherit ${_SVN} autotools-utils
60
61 DESCRIPTION="Resample and coadd astronomical FITS images"
62 HOMEPAGE="http://astromatic.iap.fr/software/swarp"
63 @@ -27,16 +30,12 @@ IUSE="doc threads"
64 RDEPEND=""
65 DEPEND="${RDEPEND}"
66
67 -src_prepare() {
68 - eautoreconf
69 -}
70 -
71 src_configure() {
72 - econf \
73 - $(use_enable threads)
74 + local myeconfargs=( $(use_enable threads) )
75 + autotools-utils_src_configure
76 }
77
78 src_install () {
79 - default
80 + autotools-utils_src_install
81 use doc && dodoc doc/*
82 }