summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2004-12-19 22:43:37 +0000
committerOlivier Fisette <ribosome@gentoo.org>2004-12-19 22:43:37 +0000
commitafdac2eaaa2e617f732b39328ea9d79d05280269 (patch)
tree2f356eb7e20657b3478c92fa8d384b5d7319e143 /app-sci/phylip
parentPATCH_VER 0.3.2. (#66223) Add 9370_all_6.7.0-ppc64-linux26-headers.patch. Arc... (diff)
downloadhistorical-afdac2eaaa2e617f732b39328ea9d79d05280269.tar.gz
historical-afdac2eaaa2e617f732b39328ea9d79d05280269.tar.bz2
historical-afdac2eaaa2e617f732b39328ea9d79d05280269.zip
New version
Diffstat (limited to 'app-sci/phylip')
-rw-r--r--app-sci/phylip/ChangeLog7
-rw-r--r--app-sci/phylip/Manifest6
-rw-r--r--app-sci/phylip/files/digest-phylip-3.631
-rw-r--r--app-sci/phylip/phylip-3.63.ebuild42
4 files changed, 53 insertions, 3 deletions
diff --git a/app-sci/phylip/ChangeLog b/app-sci/phylip/ChangeLog
index a7e1421dc558..857995b342b5 100644
--- a/app-sci/phylip/ChangeLog
+++ b/app-sci/phylip/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-sci/phylip
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/ChangeLog,v 1.9 2004/11/03 02:39:14 j4rg0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/ChangeLog,v 1.10 2004/12/19 22:43:37 ribosome Exp $
+
+*phylip-3.63 (19 Dec 2004)
+
+ 19 Dec 2004; Olivier Fisette <ribosome@gentoo.org> +phylip-3.63.ebuild:
+ New version.
2 Nov 2004; Lina Pezzella <j4rg0n@gentoo.org> -phylip-3.62.ebuild:
Keyworded ~ppc-macos.
diff --git a/app-sci/phylip/Manifest b/app-sci/phylip/Manifest
index 0b792afc953c..d66e0a4fe5d6 100644
--- a/app-sci/phylip/Manifest
+++ b/app-sci/phylip/Manifest
@@ -1,4 +1,6 @@
-MD5 e37972480e05f06619c2e882266cf4ff ChangeLog 1475
-MD5 e8b4df3df76800c376905734d8043cfa metadata.xml 216
+MD5 5aeacc04d3af37951adf6ad6f4d46c5d phylip-3.63.ebuild 961
MD5 5a91c60c82f0719b92bc4cdc6835d63b phylip-3.62.ebuild 990
+MD5 097353e78166961bc0ff0fed19a2088f ChangeLog 1596
+MD5 e8b4df3df76800c376905734d8043cfa metadata.xml 216
MD5 0481945687ffd40c06299b75ef705653 files/digest-phylip-3.62 64
+MD5 407269b8d1524b0f8e71dece76bdd291 files/digest-phylip-3.63 64
diff --git a/app-sci/phylip/files/digest-phylip-3.63 b/app-sci/phylip/files/digest-phylip-3.63
new file mode 100644
index 000000000000..5a62a93f6130
--- /dev/null
+++ b/app-sci/phylip/files/digest-phylip-3.63
@@ -0,0 +1 @@
+MD5 8bf06a775e68163f419e308597e08831 phylip-3.63.tar.bz2 601374
diff --git a/app-sci/phylip/phylip-3.63.ebuild b/app-sci/phylip/phylip-3.63.ebuild
new file mode 100644
index 000000000000..70d6dbd32f1d
--- /dev/null
+++ b/app-sci/phylip/phylip-3.63.ebuild
@@ -0,0 +1,42 @@
+# 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.63.ebuild,v 1.1 2004/12/19 22:43:37 ribosome Exp $
+
+inherit gcc
+
+DESCRIPTION="PHYLIP - The PHYLogeny Inference Package"
+HOMEPAGE="http://evolution.genetics.washington.edu/phylip.html"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+LICENSE="freedist"
+
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~ppc-macos"
+IUSE=""
+
+DEPEND="virtual/libc
+ virtual/x11"
+
+S=${WORKDIR}/${P}/src
+
+src_compile() {
+ sed -i -e "s/CFLAGS =/CFLAGS = ${CFLAGS}/" Makefile
+ sed -i -e "s/CC = cc/CC = $(gcc-getCC)/" Makefile
+ sed -i -e "s/DC = cc/DC = $(gcc-getCC)/" Makefile
+ mkdir ../fonts
+ emake -j1 all put || die
+ mv ../exe/font* ../fonts
+}
+
+src_install()
+{
+ cd ${WORKDIR}/${P}
+
+ dobin exe/*
+
+ dohtml phylip.html
+ insinto /usr/share/doc/${PF}/html/doc
+ doins doc/*
+
+ insinto /usr/share/${PN}/fonts
+ doins fonts/*
+}