From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B1B4D138F88 for ; Thu, 27 Feb 2014 23:01:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 599ADE09EB; Thu, 27 Feb 2014 23:01:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B403E09B0 for ; Thu, 27 Feb 2014 23:01:45 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC6E733F852 for ; Thu, 27 Feb 2014 23:01:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 81505188EA for ; Thu, 27 Feb 2014 23:01:43 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1393531311.4ed48e34f8ea5ab22e02bcc2a0019878b24f9d8e.bicatali@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/swarp/ X-VCS-Repository: proj/sci X-VCS-Files: sci-astronomy/swarp/ChangeLog sci-astronomy/swarp/swarp-9999.ebuild X-VCS-Directories: sci-astronomy/swarp/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 4ed48e34f8ea5ab22e02bcc2a0019878b24f9d8e X-VCS-Branch: master Date: Thu, 27 Feb 2014 23:01:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4be3aff6-5acb-464d-adb3-8f642f945aed X-Archives-Hash: 990462440885497597566e3345756e0a commit: 4ed48e34f8ea5ab22e02bcc2a0019878b24f9d8e Author: Sébastien Fabbro gentoo org> AuthorDate: Thu Feb 27 20:01:51 2014 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Thu Feb 27 20:01:51 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4ed48e34 sci-astronomy/swarp: EAPI-5, autotools-utils Package-Manager: portage-2.2.8-prefix --- sci-astronomy/swarp/ChangeLog | 5 ++++- sci-astronomy/swarp/swarp-9999.ebuild | 17 ++++++++--------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/sci-astronomy/swarp/ChangeLog b/sci-astronomy/swarp/ChangeLog index 4c8d76b..f5366c4 100644 --- a/sci-astronomy/swarp/ChangeLog +++ b/sci-astronomy/swarp/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-astronomy/swarp -# 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/swarp/ChangeLog,v 1.6 2011/08/04 18:33:44 bicatali Exp $ + 27 Feb 2014; Sébastien Fabbro swarp-9999.ebuild: + sci-astronomy/swarp: EAPI-5, autotools-utils + *swarp-9999 (04 Jul 2012) 04 Jul 2012; Sébastien Fabbro +swarp-9999.ebuild, diff --git a/sci-astronomy/swarp/swarp-9999.ebuild b/sci-astronomy/swarp/swarp-9999.ebuild index c764e79..920850f 100644 --- a/sci-astronomy/swarp/swarp-9999.ebuild +++ b/sci-astronomy/swarp/swarp-9999.ebuild @@ -2,19 +2,22 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=4 +EAPI=5 if [[ ${PV} == "9999" ]] ; then _SVN=subversion ESVN_REPO_URI="https://astromatic.net/pubsvn/software/${PN}/trunk" SRC_URI="" KEYWORDS="" + AUTOTOOLS_AUTORECONF=1 else SRC_URI="http://www.astromatic.net/download/${PN}/${P}.tar.gz" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" fi -inherit ${_SVN} autotools +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit ${_SVN} autotools-utils DESCRIPTION="Resample and coadd astronomical FITS images" HOMEPAGE="http://astromatic.iap.fr/software/swarp" @@ -27,16 +30,12 @@ IUSE="doc threads" RDEPEND="" DEPEND="${RDEPEND}" -src_prepare() { - eautoreconf -} - src_configure() { - econf \ - $(use_enable threads) + local myeconfargs=( $(use_enable threads) ) + autotools-utils_src_configure } src_install () { - default + autotools-utils_src_install use doc && dodoc doc/* }