blob: f166946c008f2b347cac3eae2a0d5a4e27f4efbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit perl-module git-2
SUBPROJECTS="+db +network +run"
DESCRIPTION="Perl tools for bioinformatics - Core modules"
HOMEPAGE="http://www.bioperl.org/"
SRC_URI=""
EGIT_REPO_URI="https://github.com/${PN}/${PN}-live.git"
LICENSE="Artistic GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="-minimal graphviz ${SUBPROJECTS}"
CDEPEND="
dev-perl/Data-Stag
dev-perl/libwww-perl
!minimal? (
dev-perl/Ace
dev-perl/Bio-ASN1-EntrezGene
dev-perl/Spreadsheet-ParseExcel
dev-perl/Spreadsheet-WriteExcel
>=dev-perl/XML-SAX-0.15
dev-perl/Graph
dev-perl/SOAP-Lite
dev-perl/Array-Compare
dev-perl/SVG
dev-perl/XML-Simple
dev-perl/XML-Parser
dev-perl/XML-Twig
>=dev-perl/HTML-Parser-3.60
>=dev-perl/XML-Writer-0.4
dev-perl/Clone
dev-perl/XML-DOM
dev-perl/Set-Scalar
dev-perl/XML-XPath
dev-perl/XML-DOM-XPath
dev-perl/Algorithm-Munkres
dev-perl/Data-Stag
dev-perl/Math-Random
dev-perl/PostScript
dev-perl/Convert-Binary-C
dev-perl/SVG-Graph
)
graphviz? ( dev-perl/GraphViz )"
DEPEND="dev-perl/Module-Build
${CDEPEND}"
RDEPEND="${CDEPEND}"
PDEPEND="!minimal? ( dev-perl/Bio-ASN1-EntrezGene )
db? ( >=sci-biology/bioperl-db-${PV} )
network? ( >=sci-biology/bioperl-network-${PV} )
run? ( >=sci-biology/bioperl-run-${PV} )"
S="${WORKDIR}/BioPerl-${PV}"
src_configure() {
sed -i -e '/add_post_install_script.*symlink_script.pl/d' \
-e "/'CPAN' *=> *1.81/d" "${S}/Build.PL" \
-e "/'ExtUtils::Manifest' *=> *'1.52'/d" "${S}/Build.PL" \
|| die
if use minimal && use graphviz; then die "USE flags minimal and graphviz cannot be used together"; fi
perl-module_src_configure
}
src_install() {
mydoc="AUTHORS BUGS FAQ"
perl-module_src_install
}
|