From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E8939139083 for ; Sat, 25 Feb 2017 15:49:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E2ABE0C41; Sat, 25 Feb 2017 15:49:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 157E8E0C41 for ; Sat, 25 Feb 2017 15:49:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DA1B340A23 for ; Sat, 25 Feb 2017 15:49:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 201B5543E for ; Sat, 25 Feb 2017 15:49:17 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1488037747.be81909256c71d238243efde2f27c55e4595e7cf.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/kalign/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/kalign/kalign-2.03-r2.ebuild X-VCS-Directories: sci-biology/kalign/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: be81909256c71d238243efde2f27c55e4595e7cf X-VCS-Branch: master Date: Sat, 25 Feb 2017 15:49:17 +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: 4e6fe235-70e3-4e7e-830f-2bc3ba14ecd8 X-Archives-Hash: 2bef8b96bea2e0842f09f59944fd4512 commit: be81909256c71d238243efde2f27c55e4595e7cf Author: David Seifert gentoo org> AuthorDate: Sat Feb 25 15:48:34 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 25 15:49:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be819092 sci-biology/kalign: Modernise to EAPI 6 Package-Manager: Portage-2.3.3, Repoman-2.3.1 sci-biology/kalign/kalign-2.03-r2.ebuild | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/sci-biology/kalign/kalign-2.03-r2.ebuild b/sci-biology/kalign/kalign-2.03-r2.ebuild new file mode 100644 index 0000000000..0693f82344 --- /dev/null +++ b/sci-biology/kalign/kalign-2.03-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Global and progressive multiple sequence alignment" +HOMEPAGE="http://msa.cgb.ki.se/" +SRC_URI="mirror://debian/pool/main/k/kalign/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~amd64 ~x86" + +S=${WORKDIR}/${PN} + +src_prepare() { + default + sed \ + -e "s/\$(CFLAGS) \$(OBJECTS)/\$(LDFLAGS) &/" \ + -i Makefile.in || die +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + dobin ${PN} + einstalldocs +}