Gentoo Archives: gentoo-commits

From: "Olivier Fisette (ribosome)" <ribosome@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/phylip: ChangeLog phylip-3.68.ebuild
Date: Tue, 26 Aug 2008 19:29:57
Message-Id: E1KY4Ej-0008Nc-O3@stork.gentoo.org
1 ribosome 08/08/26 19:29:53
2
3 Modified: ChangeLog
4 Added: phylip-3.68.ebuild
5 Log:
6 New upstream version.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.33 sci-biology/phylip/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/phylip/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/phylip/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/phylip/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/phylip/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 29 Jun 2008 08:24:01 -0000 1.32
23 +++ ChangeLog 26 Aug 2008 19:29:53 -0000 1.33
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-biology/phylip
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/ChangeLog,v 1.32 2008/06/29 08:24:01 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/ChangeLog,v 1.33 2008/08/26 19:29:53 ribosome Exp $
29 +
30 +*phylip-3.68 (26 Aug 2008)
31 +
32 + 26 Aug 2008; Olivier Fisette <ribosome@g.o> +phylip-3.68.ebuild:
33 + New upstream version.
34
35 29 Jun 2008; Torsten Veller <tove@g.o> phylip-3.65-r1.ebuild,
36 phylip-3.66.ebuild, phylip-3.67.ebuild:
37
38
39
40 1.1 sci-biology/phylip/phylip-3.68.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/phylip/phylip-3.68.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/phylip/phylip-3.68.ebuild?rev=1.1&content-type=text/plain
44
45 Index: phylip-3.68.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/phylip-3.68.ebuild,v 1.1 2008/08/26 19:29:53 ribosome Exp $
50
51 inherit toolchain-funcs
52
53 DESCRIPTION="PHYLIP - The PHYLogeny Inference Package"
54 LICENSE="freedist"
55 HOMEPAGE="http://evolution.genetics.washington.edu/phylip.html"
56 SRC_URI="http://evolution.gs.washington.edu/${PN}/download/${P}.tar.gz"
57
58 SLOT="0"
59 IUSE=""
60 KEYWORDS="~amd64 ~ppc ~x86"
61
62 RDEPEND="x11-libs/libXaw"
63
64 DEPEND="${RDEPEND}
65 x11-proto/xproto"
66
67 S="${WORKDIR}/${P}/src"
68
69 src_compile() {
70 sed -e "s/CFLAGS = -O3 -fomit-frame-pointer/CFLAGS = ${CFLAGS}/" \
71 -e "s/CC = cc/CC = $(tc-getCC)/" \
72 -e "s/DC = cc/DC = $(tc-getCC)/" \
73 -i Makefile || die "Patching Makefile failed."
74 mkdir ../fonts
75 emake -j1 all put || die "Compilation failed."
76 mv ../exe/font* ../fonts || die "Font move failed."
77 mv ../exe/factor ../exe/factor-${PN} || die "Renaming factor failed."
78 }
79
80 src_install() {
81 cd "${WORKDIR}/${P}"
82
83 dobin exe/* || die "Failed to install programs."
84
85 dodoc "${FILESDIR}"/README.Gentoo || die "Failed to install Gentoo notes."
86
87 dohtml phylip.html || die "Failed to install HTML documentation index."
88 insinto /usr/share/doc/${PF}/html/doc
89 doins doc/* || die "Failed to install HTML documentation."
90
91 insinto /usr/share/${PN}/fonts
92 doins fonts/* || die "Fonts installation failed."
93 }