diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2009-03-09 13:41:01 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2009-03-09 13:41:01 +0000 |
commit | 4b2eeb98b5159def3d00f865b0e4c2456b9dcd10 (patch) | |
tree | 60014a253f694b176ac2dc92a86273b4afaa4b36 /sci-biology/phyml/phyml-2.4.5-r1.ebuild | |
parent | Sparc stable, Bug #261797. (diff) | |
download | gentoo-2-4b2eeb98b5159def3d00f865b0e4c2456b9dcd10.tar.gz gentoo-2-4b2eeb98b5159def3d00f865b0e4c2456b9dcd10.tar.bz2 gentoo-2-4b2eeb98b5159def3d00f865b0e4c2456b9dcd10.zip |
QA fixes
(Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64)
Diffstat (limited to 'sci-biology/phyml/phyml-2.4.5-r1.ebuild')
-rw-r--r-- | sci-biology/phyml/phyml-2.4.5-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sci-biology/phyml/phyml-2.4.5-r1.ebuild b/sci-biology/phyml/phyml-2.4.5-r1.ebuild new file mode 100644 index 000000000000..45a60f08bace --- /dev/null +++ b/sci-biology/phyml/phyml-2.4.5-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/phyml/phyml-2.4.5-r1.ebuild,v 1.1 2009/03/09 13:41:01 weaver Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Estimation of large phylogenies by maximum likelihood" +HOMEPAGE="http://atgc.lirmm.fr/phyml/" +SRC_URI="http://www.lirmm.fr/~guindon/${PN}_v${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${PN}_v${PV}" + +src_unpack() { + unpack ${A} + sed -i -e 's/^hello !!!//' \ + -e 's/^CFLAGS =/#CFLAGS =/' \ + -e 's/^CC =/CC ='$(tc-getCC)'#/' \ + -e 's/-static//' "${S}/Makefile" +} + +src_install() { + dobin phyml +} |