diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-23 23:57:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-23 23:57:07 +0000 |
commit | f209a9064c0c8ba34e953526a0258cf91a8df94a (patch) | |
tree | e5e94a93114849b81c678b9cb025f749a0287115 /app-sci/phylip | |
parent | dont set EXTRA_ECONF (Manifest recommit) (diff) | |
download | gentoo-2-f209a9064c0c8ba34e953526a0258cf91a8df94a.tar.gz gentoo-2-f209a9064c0c8ba34e953526a0258cf91a8df94a.tar.bz2 gentoo-2-f209a9064c0c8ba34e953526a0258cf91a8df94a.zip |
dont set EXTRA_EMAKE
Diffstat (limited to 'app-sci/phylip')
-rw-r--r-- | app-sci/phylip/phylip-3.5.ebuild | 16 | ||||
-rw-r--r-- | app-sci/phylip/phylip-3.61.ebuild | 18 |
2 files changed, 14 insertions, 20 deletions
diff --git a/app-sci/phylip/phylip-3.5.ebuild b/app-sci/phylip/phylip-3.5.ebuild index da3afd2280a2..5eef8b21d524 100644 --- a/app-sci/phylip/phylip-3.5.ebuild +++ b/app-sci/phylip/phylip-3.5.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/phylip-3.5.ebuild,v 1.5 2004/06/24 22:14:56 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/phylip-3.5.ebuild,v 1.6 2004/09/23 23:57:07 vapier Exp $ DESCRIPTION="PHYLIP (the PHYLogeny Inference Package) is a package of programs for inferring phylogenies (evolutionary trees)" - HOMEPAGE="http://evolution.genetics.washington.edu/phylip.html" SRC_URI="ftp://evolution.genetics.washington.edu/pub/phylip/${PN}.tar.Z" @@ -11,17 +10,16 @@ LICENSE="freedist" SLOT="0" KEYWORDS="x86" IUSE="" + DEPEND="" +S=${WORKDIR} + src_compile() { - cd ${WORKDIR} - # uses only makefile. - EXTRA_EMAKE="-e ${CFLAGS}" - emake || die + emake -e ${CFLAGS} || die } -src_install() -{ - cd ${WORKDIR} + +src_install() { dobin clique consense contml contrast dnacomp dnadist dnainvar dobin dnaml dnamlk dnamove dnapars dnapenny dollop dolmove dolpenny dobin drawgram drawtree factor fitch gendist kitsch mix move neighbor diff --git a/app-sci/phylip/phylip-3.61.ebuild b/app-sci/phylip/phylip-3.61.ebuild index 5bd99f8f414f..f120a8be87e9 100644 --- a/app-sci/phylip/phylip-3.61.ebuild +++ b/app-sci/phylip/phylip-3.61.ebuild @@ -1,33 +1,29 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/phylip-3.61.ebuild,v 1.1 2004/08/07 18:54:54 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/phylip-3.61.ebuild,v 1.2 2004/09/23 23:57:07 vapier Exp $ -DESCRIPTION="PHYLIP - The PHYLogeny Inference Package" +DESCRIPTION="The PHYLogeny Inference Package" HOMEPAGE="http://evolution.genetics.washington.edu/${PN}.html" SRC_URI="ftp://evolution.genetics.washington.edu/pub/${PN}/${P}.tar.gz" -LICENSE="freedist" +LICENSE="freedist" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="~ppc ~x86" IUSE="" DEPEND="virtual/libc virtual/x11" -S=${WORKDIR}/${P}/src - src_compile() { + cd src mkdir ../fonts emake -j1 -e all put || die mv ../exe/font* ../fonts mv ../doc/phylip.html ../phylip.html } -src_install() -{ - cd ${WORKDIR}/${P} - - dobin exe/* +src_install() { + dobin exe/* || die dohtml phylip.html insinto /usr/share/doc/${PF}/html/doc |