public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sebastien Fabbro" <bicatali@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/sextractor/
Date: Thu, 27 Feb 2014 23:01:43 +0000 (UTC)	[thread overview]
Message-ID: <1393531067.29d454bb00cf20c670b64ac4c265ce36dc38bcfa.bicatali@gentoo> (raw)

commit:     29d454bb00cf20c670b64ac4c265ce36dc38bcfa
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 27 19:57:47 2014 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 19:57:47 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=29d454bb

sci-astronomy/sextractor: EAPI-5, autotools-utils, missing threads on atlas

Package-Manager: portage-2.2.8-prefix

---
 sci-astronomy/sextractor/ChangeLog                 |  7 +++++--
 .../sextractor/sextractor-2.8.6-r1.ebuild          |  5 +++--
 sci-astronomy/sextractor/sextractor-9999.ebuild    | 22 ++++++++++++++--------
 3 files changed, 22 insertions(+), 12 deletions(-)

diff --git a/sci-astronomy/sextractor/ChangeLog b/sci-astronomy/sextractor/ChangeLog
index fc4b8f9..b5426c1 100644
--- a/sci-astronomy/sextractor/ChangeLog
+++ b/sci-astronomy/sextractor/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-astronomy/sextractor
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/sextractor/ChangeLog,v 1.3 2011/08/04 18:32:38 bicatali Exp $
 
+  27 Feb 2014; Sébastien Fabbro <bicatali@gentoo.org>
+  sextractor-2.8.6-r1.ebuild, sextractor-9999.ebuild:
+  sci-astronomy/sextractor: EAPI-5, autotools-utils, missing threads on atlas
+
 *sextractor-9999 (04 Jul 2012)
 
   04 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>
@@ -51,4 +55,3 @@
 	
   26 Nov 2005; Sebastien Fabbro <seb@ist.utl.pt> +sextractor-2.4.4.ebuild:
   Initial import. Close bug #65684
-

diff --git a/sci-astronomy/sextractor/sextractor-2.8.6-r1.ebuild b/sci-astronomy/sextractor/sextractor-2.8.6-r1.ebuild
index f6e4a0c..e70d3e3 100644
--- a/sci-astronomy/sextractor/sextractor-2.8.6-r1.ebuild
+++ b/sci-astronomy/sextractor/sextractor-2.8.6-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 inherit eutils autotools
 
 DESCRIPTION="Extract catalogs of sources from astronomical FITS images"
@@ -14,7 +14,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc threads"
 
-RDEPEND="sci-libs/atlas[lapack]
+RDEPEND="
+	sci-libs/atlas[lapack]
 	sci-libs/fftw:3.0"
 DEPEND="${RDEPEND}"
 

diff --git a/sci-astronomy/sextractor/sextractor-9999.ebuild b/sci-astronomy/sextractor/sextractor-9999.ebuild
index d79f690..c09faac 100644
--- a/sci-astronomy/sextractor/sextractor-9999.ebuild
+++ b/sci-astronomy/sextractor/sextractor-9999.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 if [[ ${PV} == "9999" ]] ; then
 	_SVN=subversion
@@ -14,7 +14,9 @@ else
 	KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 fi
 
-inherit ${_SVN} autotools
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+inherit ${_SVN} autotools-utils
 
 DESCRIPTION="Extract catalogs of sources from astronomical FITS images"
 HOMEPAGE="http://www.astromatic.net/software/sextractor"
@@ -24,7 +26,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc modelfit threads"
 
-RDEPEND="modelfit? ( sci-libs/atlas[lapack] sci-libs/fftw:3.0 )"
+RDEPEND="
+	modelfit? ( sci-libs/atlas[lapack,threads=] sci-libs/fftw:3.0 )"
 DEPEND="${RDEPEND}"
 
 src_prepare() {
@@ -42,19 +45,22 @@ src_prepare() {
 			-e "s/-llapack/-l${myclapack}/g" \
 			-e "s/AC_CHECK_LIB(lapack/AC_CHECK_LIB(${myclapack}/g" \
 			acx_atlas.m4 || die
-		eautoreconf
+		AUTOTOOLS_AUTORECONF=1
 	fi
+	autotools-utils_src_prepare
 }
 
 src_configure() {
-	econf \
-		--with-atlas-incdir="${EPREFIX}/usr/include/atlas" \
-		$(use_enable modelfit model-fitting) \
+	local myeconfargs=(
+		--with-atlas-incdir="${EPREFIX}/usr/include/atlas"
+		$(use_enable modelfit model-fitting)
 		$(use_enable threads)
+	)
+	autotools-utils_src_configure
 }
 
 src_install () {
-	default
+	autotools-utils_src_install
 	CONFDIR=/usr/share/sextractor
 	insinto ${CONFDIR}
 	doins config/*


             reply	other threads:[~2014-02-27 23:01 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-27 23:01 Sebastien Fabbro [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-09-22 10:12 [gentoo-commits] proj/sci:master commit in: sci-astronomy/sextractor/ Aisha Tammy
2016-03-14  2:17 Christoph Junghans
2014-03-22  9:45 Justin Lecher
2014-03-21 17:10 Sebastien Fabbro
2014-02-27 23:01 Sebastien Fabbro
2012-07-04 22:42 Sebastien Fabbro
2012-07-04 22:42 Sebastien Fabbro

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1393531067.29d454bb00cf20c670b64ac4c265ce36dc38bcfa.bicatali@gentoo \
    --to=bicatali@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox