blob: 8a7d435c3882694215bab7c566558946438f1122 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/vienna-rna/vienna-rna-1.7.2.ebuild,v 1.3 2008/10/09 13:03:30 markusle Exp $
inherit toolchain-funcs multilib eutils versionator autotools perl-module
DESCRIPTION="The Vienna RNA Package - RNA secondary structure prediction and comparison"
LICENSE="vienna-rna"
HOMEPAGE="http://www.tbi.univie.ac.at/~ivo/RNA"
SRC_URI="http://www.tbi.univie.ac.at/~ivo/RNA/ViennaRNA-${PV}.tar.gz"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86 ~ppc"
DEPEND="dev-lang/perl
media-libs/gd"
S="${WORKDIR}/ViennaRNA-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-1.6.5-c-fixes.patch
epatch "${FILESDIR}"/${P}-gcc4.3.patch
epatch "${FILESDIR}"/${P}-LDFLAGS.patch
epatch "${FILESDIR}"/${P}-disable-gd.patch
eautoreconf
# we need a separate eautoreconf in RNAforester
cd RNAforester
eautoreconf
}
src_compile() {
econf --with-cluster || die "Configuration failed."
sed -e "s:LIBDIR = /usr/lib:LIBDIR = ${D}/usr/$(get_libdir):" \
-e "s:INCDIR = /usr/include:INCDIR = ${D}/usr/include:" \
-i RNAforester/g2-0.70/Makefile \
|| die "Failed patching RNAForester build system."
emake || die "Compilation failed."
cd "${S}"/Readseq
sed -e "s:CC=cc:CC=$(tc-getCC):" -e "s:CFLAGS=:CFLAGS=${CFLAGS}:" \
-i Makefile || die "Failed patching readseq Makefile."
emake || die "Failed to compile readseq."
# TODO: Add (optional?) support for the NCBI toolkit.
}
src_test() {
cd "${S}"/Perl && emake check || die "Perl tests failed"
cd "${S}"/Readseq && emake test || die "Readseq tests failed"
}
src_install() {
make install DESTDIR="${D}" || die "Installation failed."
dodoc AUTHORS ChangeLog NEWS README THANKS \
|| die "Failed to install documentation."
newbin Readseq/readseq readseq-vienna \
|| die "Installing readseq failed."
dodoc Readseq/Readseq.help || die \
"Readseq Documentation installation failed."
newdoc Readseq/Readme README.readseq && \
newdoc Readseq/Formats Formats.readseq \
|| die "Installing readseq Readme failed."
# remove perlocal.pod to avoid file collisions (see #240358)
fixlocalpod || die "Failed to remove perlocal.pod"
}
|