# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/paml-3.15.ebuild,v 1.2 2007/11/22 13:26:59 markusle Exp $ inherit toolchain-funcs MY_P="${P/-}" DESCRIPTION="Phylogenetic Analysis by Maximum Likelihood" HOMEPAGE="http://abacus.gene.ucl.ac.uk/software/paml.html" SRC_URI="http://abacus.gene.ucl.ac.uk/software/${MY_P}.tar.gz" LICENSE="free-noncomm" SLOT="0" KEYWORDS="~x86" IUSE="" RDEPEND="" DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_P}" src_compile() { cd src emake \ -f Makefile.UNIX \ CC="$(tc-getCC)" \ CFLAGS="${CFLAGS}" \ || die "make failed" } src_install() { pushd "${S}"/src dobin baseml codeml basemlg mcmctree pamp evolver yn00 chi2 popd dodoc README.txt doc/* }