summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2005-10-18 01:03:07 +0000
committerOlivier Fisette <ribosome@gentoo.org>2005-10-18 01:03:07 +0000
commit8eec5e61792f95a3d5cc0ff11cf44bea033fc092 (patch)
tree0259816b37b848335f2415cc2f51826cec3f5242 /sci-biology/phylip
parentMark 4.1 stable on alpha (diff)
downloadgentoo-2-8eec5e61792f95a3d5cc0ff11cf44bea033fc092.tar.gz
gentoo-2-8eec5e61792f95a3d5cc0ff11cf44bea033fc092.tar.bz2
gentoo-2-8eec5e61792f95a3d5cc0ff11cf44bea033fc092.zip
New version
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'sci-biology/phylip')
-rw-r--r--sci-biology/phylip/ChangeLog7
-rw-r--r--sci-biology/phylip/Manifest2
-rw-r--r--sci-biology/phylip/files/digest-phylip-3.651
-rw-r--r--sci-biology/phylip/phylip-3.65.ebuild42
4 files changed, 51 insertions, 1 deletions
diff --git a/sci-biology/phylip/ChangeLog b/sci-biology/phylip/ChangeLog
index b3653ddc9afe..643014a18b2d 100644
--- a/sci-biology/phylip/ChangeLog
+++ b/sci-biology/phylip/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-biology/phylip
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/ChangeLog,v 1.13 2005/10/17 17:45:13 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/ChangeLog,v 1.14 2005/10/18 01:03:07 ribosome Exp $
+
+*phylip-3.65 (18 Oct 2005)
+
+ 18 Oct 2005; Olivier Fisette <ribosome@gentoo.org> +phylip-3.65.ebuild:
+ New version.
17 Oct 2005; Olivier Fisette <ribosome@gentoo.org> -phylip-3.63.ebuild:
Pruning old version.
diff --git a/sci-biology/phylip/Manifest b/sci-biology/phylip/Manifest
index 588645e59c50..fb07f39a6194 100644
--- a/sci-biology/phylip/Manifest
+++ b/sci-biology/phylip/Manifest
@@ -1,4 +1,6 @@
+MD5 f069d9655b1aac146583cc1d8d906731 phylip-3.65.ebuild 1271
MD5 b78719b4e6f683481e3fac55dcce1769 ChangeLog 2994
MD5 f189a3c4ff5ae55bcee4f8ed0ace5d20 metadata.xml 254
MD5 b56d632ce611256d9e51dff8a142efe1 phylip-3.64.ebuild 988
MD5 6a0365a6136c482528c2ddcd860a9d97 files/digest-phylip-3.64 64
+MD5 d87091a1c48c794109dbfb88336d9068 files/digest-phylip-3.65 64
diff --git a/sci-biology/phylip/files/digest-phylip-3.65 b/sci-biology/phylip/files/digest-phylip-3.65
new file mode 100644
index 000000000000..ab57e5b003a0
--- /dev/null
+++ b/sci-biology/phylip/files/digest-phylip-3.65
@@ -0,0 +1 @@
+MD5 c89a92c8692faaba4310b69b2d89bc33 phylip-3.65.tar.gz 1036976
diff --git a/sci-biology/phylip/phylip-3.65.ebuild b/sci-biology/phylip/phylip-3.65.ebuild
new file mode 100644
index 000000000000..92973d37fb86
--- /dev/null
+++ b/sci-biology/phylip/phylip-3.65.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/phylip-3.65.ebuild,v 1.1 2005/10/18 01:03:07 ribosome Exp $
+
+inherit toolchain-funcs
+
+DESCRIPTION="PHYLIP - The PHYLogeny Inference Package"
+LICENSE="freedist"
+HOMEPAGE="http://evolution.genetics.washington.edu/phylip.html"
+SRC_URI="ftp://evolution.genetics.washington.edu/pub/${PN}/${P}.tar.gz"
+
+SLOT="0"
+IUSE=""
+KEYWORDS="~ppc ~ppc-macos ~x86"
+
+DEPEND="virtual/libc
+ virtual/x11"
+
+S="${WORKDIR}/${PN}${PV}/src"
+
+src_compile() {
+ sed -e "s/CFLAGS = -O3 -fomit-frame-pointer/CFLAGS = ${CFLAGS}/" \
+ -e "s/CC = cc/CC = $(tc-getCC)/" \
+ -e "s/DC = cc/DC = $(tc-getCC)/" \
+ -i Makefile || die "Patching Makefile failed."
+ mkdir ../fonts
+ emake -j1 all put || die "Compilation failed."
+ mv ../exe/font* ../fonts || die "Font move failed."
+}
+
+src_install() {
+ cd "${WORKDIR}/${PN}${PV}"
+
+ dobin exe/* || "Failed to install programs."
+
+ dohtml phylip.html || "Failed to install HTML documentation index."
+ insinto /usr/share/doc/${PF}/html/doc
+ doins doc/* || "Failed to install HTML documentation."
+
+ insinto /usr/share/${PN}/fonts
+ doins fonts/* || die "Fonts installation failed."
+}