Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/t-coffee: ChangeLog t-coffee-6.82.ebuild t-coffee-4.96.ebuild t-coffee-5.05.ebuild
Date: Sat, 06 Sep 2008 11:30:03
Message-Id: E1KbvzM-0004rg-3H@stork.gentoo.org
1 markusle 08/09/06 11:30:00
2
3 Modified: ChangeLog
4 Added: t-coffee-6.82.ebuild
5 Removed: t-coffee-4.96.ebuild t-coffee-5.05.ebuild
6 Log:
7 Version bump and removed old ebuilds (fixes bug #232323). According to the website and docs, t-coffee is now released under the GPL-2, hence changed the license info and uploaded the tarball to our mirrors.
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-SENTINEL-2 i686)
9
10 Revision Changes Path
11 1.34 sci-biology/t-coffee/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/t-coffee/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/t-coffee/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/t-coffee/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 14 Jul 2008 17:01:42 -0000 1.33
24 +++ ChangeLog 6 Sep 2008 11:29:59 -0000 1.34
25 @@ -1,6 +1,15 @@
26 # ChangeLog for sci-biology/t-coffee
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/ChangeLog,v 1.33 2008/07/14 17:01:42 nixnut Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/ChangeLog,v 1.34 2008/09/06 11:29:59 markusle Exp $
30 +
31 +*t-coffee-6.82 (06 Sep 2008)
32 +
33 + 06 Sep 2008; Markus Dittrich <markusle@g.o> -t-coffee-4.96.ebuild,
34 + -t-coffee-5.05.ebuild, +t-coffee-6.82.ebuild:
35 + Version bump and removed old ebuilds (fixes bug #232323). According
36 + to the website and docs, t-coffee is now released under the GPL-2,
37 + hence changed the license info and uploaded the tarball to our
38 + mirrors.
39
40 14 Jul 2008; nixnut <nixnut@g.o> t-coffee-5.65.ebuild:
41 Stable on ppc wrt bug 221165
42
43
44
45 1.1 sci-biology/t-coffee/t-coffee-6.82.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/t-coffee/t-coffee-6.82.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/t-coffee/t-coffee-6.82.ebuild?rev=1.1&content-type=text/plain
49
50 Index: t-coffee-6.82.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/t-coffee-6.82.ebuild,v 1.1 2008/09/06 11:29:59 markusle Exp $
55
56 inherit toolchain-funcs flag-o-matic
57
58 DESCRIPTION="A multiple sequence alignment package"
59 LICENSE="GPL-2"
60 HOMEPAGE="http://www.tcoffee.org/Projects_home_page/t_coffee_home_page.html"
61 SRC_URI="http://www.tcoffee.org/Packages/T-COFFEE_distribution_Version_${PV}.tar.gz"
62
63 SLOT="0"
64 IUSE=""
65 KEYWORDS="~amd64 ~ppc ~x86"
66
67 DEPEND="sci-biology/clustalw"
68
69 TCDIR="${WORKDIR}/T-COFFEE_distribution_Version_${PV}"
70 S="${TCDIR}/t_coffee_source"
71
72 die_compile() {
73 echo
74 eerror "If you experience an internal compiler error (consult the above"
75 eerror "messages), try compiling t-coffee using very modest compiler flags."
76 eerror "See bug #114745 on the Gentoo Bugzilla for more details."
77 die "Compilation failed"
78 }
79
80 src_compile() {
81 [[ $(gcc-version) == "3.4" ]] && append-flags -fno-unit-at-a-time
82 [[ $(gcc-version) == "4.1" ]] && append-flags -fno-unit-at-a-time
83 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" emake || die_compile
84 }
85
86 src_install() {
87 dobin t_coffee || die "Failed to install program."
88
89 insinto /usr/share/${PN}/lib/html
90 doins "${TCDIR}"/html/* \
91 || die "Failed to install Web interface files."
92
93 cd "${TCDIR}"/doc
94 dodoc aln_compare.doc.txt seq_reformat.doc.txt \
95 t_coffee_technical.txt t_coffee_tutorial.txt \
96 || die "Failed to install text documentation."
97
98 dohtml t_coffee_technical.htm t_coffee_tutorial.htm \
99 || die "Failed to install HTML documentation."
100
101 insinto /usr/share/doc/${PF}
102 doins t_coffee_technical.doc t_coffee_tutorial.doc \
103 || die "Failed to install DOC documentation."
104
105 insinto /usr/share/${PN}/example
106 doins "${TCDIR}"/example/* \
107 || die "Failed to install example files."
108 }