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 B4F01139086 for ; Sun, 15 Jan 2017 10:13:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7962E14235; Sun, 15 Jan 2017 10:13: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 5A98414235 for ; Sun, 15 Jan 2017 10:13:24 +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 5BCA5341265 for ; Sun, 15 Jan 2017 10:13:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 417B327D6 for ; Sun, 15 Jan 2017 10:13:15 +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: <1484475148.4c4d4873c10d6142aec0ca391ae9b8611d0c85ea.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/circos/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-visualization/circos/circos-0.55-r1.ebuild X-VCS-Directories: sci-visualization/circos/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 4c4d4873c10d6142aec0ca391ae9b8611d0c85ea X-VCS-Branch: master Date: Sun, 15 Jan 2017 10:13:15 +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: 00eb1941-57ef-4a6a-a8ea-d4fe5aae6ee7 X-Archives-Hash: d27861eb76877c4da9547151cb816afe commit: 4c4d4873c10d6142aec0ca391ae9b8611d0c85ea Author: Gerhard Bräunlich gmx net> AuthorDate: Sat Jan 14 14:11:10 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jan 15 10:12:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4d4873 sci-visualization/circos: EAPI bump 4 -> 6 Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/3470 sci-visualization/circos/circos-0.55-r1.ebuild | 43 ++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/sci-visualization/circos/circos-0.55-r1.ebuild b/sci-visualization/circos/circos-0.55-r1.ebuild new file mode 100644 index 00000000..8212f34 --- /dev/null +++ b/sci-visualization/circos/circos-0.55-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Circular layout visualization of genomic and other data" +HOMEPAGE="http://mkweb.bcgsc.ca/circos/" +SRC_URI="http://mkweb.bcgsc.ca/circos/distribution/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +DEPEND="dev-perl/Config-General + dev-perl/GD + dev-perl/Math-Bezier + dev-perl/Math-Round + dev-perl/Math-VecStat + dev-perl/Params-Validate + dev-perl/Readonly + dev-perl/Regexp-Common + >=dev-perl/Set-IntSpan-1.11 + dev-perl/Graphics-ColorObject + dev-perl/List-MoreUtils" +RDEPEND="${DEPEND}" + +src_install() { + insinto /opt/${PN} + doins -r */ + + exeinto /opt/${PN}/bin + doexe bin/circos bin/gddiag + + dosym /opt/${PN}/bin/circos /usr/bin/circos + + einstalldocs + local d + while IFS="" read -d $'\0' -r d; do + dodoc "${d}" + done < <(find * -maxdepth 0 -type f -print0) +}