blob: 5c0fba327044797c252e4e1da79f5e3306cd091e (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/njplot/njplot-2.3.ebuild,v 1.2 2009/10/31 17:59:45 maekke Exp $
EAPI="2"
inherit toolchain-funcs
DESCRIPTION="A phylogenetic tree drawing program which supports tree rooting"
HOMEPAGE="http://pbil.univ-lyon1.fr/software/njplot.html"
SRC_URI="ftp://pbil.univ-lyon1.fr/pub/mol_phylogeny/njplot/archive/njplot-${PV}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="x11-libs/libXmu"
DEPEND="sci-biology/ncbi-tools[X]
${RDEPEND}"
src_prepare() {
sed -i -e 's|/banques0/ncbiJun04|/usr/include/ncbi|' \
-e 's/CC = gcc/CC='$(tc-getCC)'/' -e 's/CFLAGS =/CFLAGS +=/' \
makefile || die
sed -i -e "s%njplot.help%/usr/share/doc/${PF}/njplot.help%" njplot-vib.c || die
}
src_install() {
dobin newicktops newicktotxt njplot unrooted || die
doman *.1 || die
dodoc README njplot.help
}
|