mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sci-visualization/circos: version bump (0.69.9)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34524 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
This commit is contained in:
committed by
Andrew Ammerlaan
parent
92c42a318e
commit
33cb541c3a
@@ -1 +1,2 @@
|
||||
DIST circos-0.55.tgz 10163948 BLAKE2B b4dc821e99ea4ea072b6b2819f257eba920b133f4f4a10ddd119b073c067ba80dff1ffa1377d5b888098d25cf2eea8c92879444bd6a493b3743ab869b45f5302 SHA512 3ebad082acd96b27281e6fcd996fb79022d982a93db59e1f3589a341df7f9855d7554fb92c88c41dc4679e7273d11c0372285a4059ec14a77f11d1d4014db9c1
|
||||
DIST circos-0.69-9.tgz 29794907 BLAKE2B 615f3eacdb83ae68c014936b96c1e76280b546dee59bfc1d44aa4f1c09d9962946bd6329107dba6daac4153da5c1e2ac11cf3c658e35b4e9e92184b028144b60 SHA512 2ad8f3def2716a6055deb36c1d44126ce96e23d8fa76c6256b6586ed3bdd641245d885f42424279e8753d9a15385ad73f9f823e27119f16e0be8fc0a01207f37
|
||||
|
||||
55
sci-visualization/circos/circos-0.69.9.ebuild
Normal file
55
sci-visualization/circos/circos-0.69.9.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_PN="${PN}-$(ver_rs 2 -)"
|
||||
DESCRIPTION="Circular layout visualization of genomic and other data"
|
||||
HOMEPAGE="http://circos.ca/"
|
||||
SRC_URI="http://circos.ca/distribution/${MY_PN}.tgz"
|
||||
S="${WORKDIR}/${MY_PN}"
|
||||
|
||||
LICENSE="GPL-2+ GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="dev-perl/Config-General
|
||||
dev-perl/Font-TTF
|
||||
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
|
||||
dev-perl/Statistics-Basic
|
||||
dev-perl/SVG
|
||||
dev-perl/Text-Format
|
||||
dev-perl/Graphics-ColorObject
|
||||
dev-perl/List-MoreUtils"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
# remove windows only things
|
||||
rm -r "${S}/bin/${PN}.exe" || die
|
||||
rm -r "${S}/bin/compile.bat" || die
|
||||
default
|
||||
}
|
||||
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user