summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-sci/njplot-unrooted/njplot-unrooted-1.ebuild')
-rw-r--r--app-sci/njplot-unrooted/njplot-unrooted-1.ebuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/app-sci/njplot-unrooted/njplot-unrooted-1.ebuild b/app-sci/njplot-unrooted/njplot-unrooted-1.ebuild
new file mode 100644
index 000000000000..7a03e56af70d
--- /dev/null
+++ b/app-sci/njplot-unrooted/njplot-unrooted-1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/njplot-unrooted/njplot-unrooted-1.ebuild,v 1.1 2004/10/06 12:44:33 ribosome Exp $
+
+DESCRIPTION="A phylogenetic tree drawing program which supports tree rooting"
+HOMEPAGE="http://pbil.univ-lyon1.fr/software/njplot.html"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+LICENSE="public-domain"
+
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="app-sci/ncbi-tools
+ virtual/x11"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i -e "s%njplot.help%/usr/share/doc/${PF}/njplot.help%" njplot-vib.c
+}
+
+src_compile() {
+ make -e || die
+}
+
+src_install() {
+ dobin newicktops njplot unrooted
+
+ insinto /usr/share/doc/${PF}
+ doins njplot.help
+
+ insinto /usr/share/${PN}
+ doins test.ph
+}