35 lines
852 B
Bash
35 lines
852 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils 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"
|
|
|
|
SLOT="0"
|
|
LICENSE="public-domain"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
sci-biology/ncbi-tools[X,static-libs]
|
|
x11-libs/libXmu"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
sed -i -e "s%njplot.help%${EPREFIX}/usr/share/doc/${PF}/njplot.help%" njplot-vib.c || die
|
|
epatch \
|
|
"${FILESDIR}"/${P}-format-security.patch \
|
|
"${FILESDIR}"/${P}-buildsystem.patch
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
dobin newicktops newicktotxt njplot unrooted
|
|
doman *.1
|
|
dodoc README njplot.help
|
|
}
|