diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-07-20 00:44:54 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-07-20 00:44:54 +0000 |
commit | 4142cb963e155f6c1007f14c7ca1ad88f5f07e21 (patch) | |
tree | 62df36c53637c830859f7943a31b299c23408439 /app-sci/phylip | |
parent | eclass/embassy.eclass - A new eclass for EMBASSY packages (add-ons for EMBOSS) (diff) | |
download | historical-4142cb963e155f6c1007f14c7ca1ad88f5f07e21.tar.gz historical-4142cb963e155f6c1007f14c7ca1ad88f5f07e21.tar.bz2 historical-4142cb963e155f6c1007f14c7ca1ad88f5f07e21.zip |
Update for app-sci/phylip-3.6
Diffstat (limited to 'app-sci/phylip')
-rw-r--r-- | app-sci/phylip/ChangeLog | 8 | ||||
-rw-r--r-- | app-sci/phylip/Manifest | 4 | ||||
-rw-r--r-- | app-sci/phylip/files/digest-phylip-3.6 | 1 | ||||
-rw-r--r-- | app-sci/phylip/phylip-3.6.ebuild | 39 |
4 files changed, 50 insertions, 2 deletions
diff --git a/app-sci/phylip/ChangeLog b/app-sci/phylip/ChangeLog index 14f92fd0c2e0..3c7c9768d24b 100644 --- a/app-sci/phylip/ChangeLog +++ b/app-sci/phylip/ChangeLog @@ -1,6 +1,12 @@ # 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.2 2004/06/24 22:14:56 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/phylip/ChangeLog,v 1.3 2004/07/20 00:44:54 ribosome Exp $ + +*phylip-3.6.ebuild (19 Jul 2004) + + 19 Jul 2004; Olivier Fisette <ribosome@gentoo.org> phylip-3.6.ebuild: + New version and a modified ebuild. Update suggested by Pablo Nehab-Hess + <natunobilis@gentoobr.org> (#38853). *phylip-3.5 (23 Apr 2003) diff --git a/app-sci/phylip/Manifest b/app-sci/phylip/Manifest index e56bed42d2cc..c83c85a8b724 100644 --- a/app-sci/phylip/Manifest +++ b/app-sci/phylip/Manifest @@ -1,4 +1,6 @@ MD5 6be0a97d7c6c48a80ccacb41680065df phylip-3.5.ebuild 1456 -MD5 253b1a38061b83abecba08bc2a2c0a0d ChangeLog 392 +MD5 bde334eaf96f60f08d836426be7e78d3 phylip-3.6.ebuild 839 +MD5 65357b7295c85079201ec1c5f4f69c9f ChangeLog 612 MD5 e8b4df3df76800c376905734d8043cfa metadata.xml 216 MD5 cfa8a22ac65037bfe8dfefda7c4171f5 files/digest-phylip-3.5 57 +MD5 bb199081099f331eaaf2e491736e754e files/digest-phylip-3.6 62 diff --git a/app-sci/phylip/files/digest-phylip-3.6 b/app-sci/phylip/files/digest-phylip-3.6 new file mode 100644 index 000000000000..4ebfb819dd59 --- /dev/null +++ b/app-sci/phylip/files/digest-phylip-3.6 @@ -0,0 +1 @@ +MD5 80a234e102da5dc2ee17515e599d1d30 phylip-3.6.tar.gz 839710 diff --git a/app-sci/phylip/phylip-3.6.ebuild b/app-sci/phylip/phylip-3.6.ebuild new file mode 100644 index 000000000000..2d53ab434b8f --- /dev/null +++ b/app-sci/phylip/phylip-3.6.ebuild @@ -0,0 +1,39 @@ +# 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.6.ebuild,v 1.1 2004/07/20 00:44:54 ribosome Exp $ + +DESCRIPTION="PHYLIP - The PHYLogeny Inference Package" +HOMEPAGE="http://evolution.genetics.washington.edu/${PN}.html" +SRC_URI="ftp://evolution.genetics.washington.edu/pub/${PN}/${P}.tar.gz" +LICENSE="freedist" + +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc + virtual/x11" + +S=${WORKDIR}/${P}/src + +src_compile() { + mkdir ../fonts + emake -j1 -e 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/* + insinto /usr/share/${PN}/icons + doins src/icons/*.ico +} |