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 68E031387B1 for ; Tue, 22 Sep 2015 08:19:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8890E087D; Tue, 22 Sep 2015 08:19:45 +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 B9621E0885 for ; Tue, 22 Sep 2015 08:19:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B50F33409C7 for ; Tue, 22 Sep 2015 08:19:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3846923F for ; Tue, 22 Sep 2015 08:19:39 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1442908238.714bc8ed8dcefc986f5ad0e506b1859430627258.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/psx/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/psx/psx-0.1.ebuild X-VCS-Directories: sci-biology/psx/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 714bc8ed8dcefc986f5ad0e506b1859430627258 X-VCS-Branch: master Date: Tue, 22 Sep 2015 08:19:39 +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: aeed0b8d-d99e-4d77-b693-8c9b58231a42 X-Archives-Hash: b7fc0912c68fba1c2698a678bdbb67b5 commit: 714bc8ed8dcefc986f5ad0e506b1859430627258 Author: Justin Lecher gentoo org> AuthorDate: Tue Sep 22 07:50:38 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Sep 22 07:50:38 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=714bc8ed sci-biology/psx: Bump to EAPI=5 Package-Manager: portage-2.2.21 Signed-off-by: Justin Lecher gentoo.org> sci-biology/psx/psx-0.1.ebuild | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/sci-biology/psx/psx-0.1.ebuild b/sci-biology/psx/psx-0.1.ebuild index ecac153..0c78b3a 100644 --- a/sci-biology/psx/psx-0.1.ebuild +++ b/sci-biology/psx/psx-0.1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=3 +EAPI=5 + +inherit toolchain-funcs DESCRIPTION="parallel multi-FASTA file processing tool from TIGR Gene Indices project tools" HOMEPAGE="http://compbio.dfci.harvard.edu/tgi/software/" @@ -13,24 +15,16 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="" -RDEPEND="${DEPEND}" - S=${WORKDIR} -src_unpack(){ - mkdir ${PN} || die - cd ${PN} || die "Failed to chdir" - unpack ${PN}.tar.gz || die -} - src_compile() { - cd ${PN} || die - emake || die "emake failed in "${S}"/${PN}" + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" } src_install() { - cd ${PN} || die - dobin ${PN} || die "Failed to install ${PN} binary" + dobin ${PN} newdoc README README.${PN} }