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
commitbbd64ac158dd19d6fc72440a8a61bd2fa1c8492d (patch)
tree4c774d03161f108f53829f66b6b439b65f229717
parentPATCH_VER 0.3.2. (#66223) Add 9370_all_6.7.0-ppc64-linux26-headers.patch. Arc... (diff)
downloadgentoo-2-bbd64ac158dd19d6fc72440a8a61bd2fa1c8492d.tar.gz
gentoo-2-bbd64ac158dd19d6fc72440a8a61bd2fa1c8492d.tar.bz2
gentoo-2-bbd64ac158dd19d6fc72440a8a61bd2fa1c8492d.zip
New version
-rw-r--r--app-sci/phylip/ChangeLog7
-rw-r--r--app-sci/phylip/Manifest4
-rw-r--r--app-sci/phylip/files/digest-phylip-3.631
-rw-r--r--app-sci/phylip/phylip-3.63.ebuild42
4 files changed, 52 insertions, 2 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..77df5813f78f 100644
--- a/app-sci/phylip/Manifest
+++ b/app-sci/phylip/Manifest
@@ -1,4 +1,6 @@
+MD5 5d0e25684df2252c771d45cc02f3c902 phylip-3.63.ebuild 959
+MD5 5a91c60c82f0719b92bc4cdc6835d63b phylip-3.62.ebuild 990
MD5 e37972480e05f06619c2e882266cf4ff ChangeLog 1475
MD5 e8b4df3df76800c376905734d8043cfa metadata.xml 216
-MD5 5a91c60c82f0719b92bc4cdc6835d63b phylip-3.62.ebuild 990
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/*
+}