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 DF793139696 for ; Sat, 25 Feb 2017 19:19:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47B3AE0C28; Sat, 25 Feb 2017 19:19:24 +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 26A7DE0C2A for ; Sat, 25 Feb 2017 19:19:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6097434102B for ; Sat, 25 Feb 2017 19:19:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD0185466 for ; Sat, 25 Feb 2017 19:19:21 +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: <1488050282.3d418275c8a40e60d41b0839b830a9703181213d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/aaindex/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/aaindex/aaindex-9.1-r1.ebuild sci-biology/aaindex/aaindex-9.1.ebuild X-VCS-Directories: sci-biology/aaindex/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3d418275c8a40e60d41b0839b830a9703181213d X-VCS-Branch: master Date: Sat, 25 Feb 2017 19:19:21 +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: 29577321-7b8c-44ee-a569-7aedf8ea616b X-Archives-Hash: 7a61d732a76410220ab37f88ed58e858 commit: 3d418275c8a40e60d41b0839b830a9703181213d Author: David Seifert gentoo org> AuthorDate: Sat Feb 25 17:27:08 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 25 19:18:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d418275 sci-biology/aaindex: Modernise to EAPI 6 Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../{aaindex-9.1.ebuild => aaindex-9.1-r1.ebuild} | 26 ++++++++++++---------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/sci-biology/aaindex/aaindex-9.1.ebuild b/sci-biology/aaindex/aaindex-9.1-r1.ebuild similarity index 67% rename from sci-biology/aaindex/aaindex-9.1.ebuild rename to sci-biology/aaindex/aaindex-9.1-r1.ebuild index 5212990237..50b59535db 100644 --- a/sci-biology/aaindex/aaindex-9.1.ebuild +++ b/sci-biology/aaindex/aaindex-9.1-r1.ebuild @@ -2,40 +2,42 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +EAPI=6 + DESCRIPTION="Amino acid indices and similarity matrices" -LICENSE="public-domain" -HOMEPAGE="http://www.genome.ad.jp/aaindex" +HOMEPAGE="http://www.genome.jp/aaindex/" SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="public-domain" SLOT="0" # Minimal build keeps only the indexed files (if applicable) and the # documentation. The non-indexed database is not installed. -IUSE="emboss minimal" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="emboss minimal" DEPEND="emboss? ( sci-biology/emboss )" - RDEPEND="${DEPEND}" src_compile() { if use emboss; then - mkdir AAINDEX - echo + mkdir AAINDEX || die + einfo einfo "Indexing AAindex for usage with EMBOSS." - EMBOSS_DATA="." aaindexextract -auto -infile ${PN}1 || die \ - "Indexing AAindex failed." - echo + EMBOSS_DATA="." aaindexextract -auto -infile ${PN}1 || die "Indexing AAindex failed" + einfo fi } src_install() { + dodoc ${PN}.doc + if ! use minimal; then insinto /usr/share/${PN} - doins ${PN}{1,2,3} || die "Failed to install raw database." + doins ${PN}{1,2,3} fi - dodoc ${PN}.doc || die "Failed to install documentation." + if use emboss; then insinto /usr/share/EMBOSS/data/AAINDEX - doins AAINDEX/* || die "Failed to install EMBOSS data files." + doins -r AAINDEX/. fi }