diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-18 07:55:33 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-18 07:55:33 +0000 |
commit | 6f4f3fa1ba19673b005606196247b62a6ad947fd (patch) | |
tree | 49694b7e6b65240a457ddc55d5114068dcd4acce /sci-biology/t-coffee | |
parent | Version bump (diff) | |
download | gentoo-2-6f4f3fa1ba19673b005606196247b62a6ad947fd.tar.gz gentoo-2-6f4f3fa1ba19673b005606196247b62a6ad947fd.tar.bz2 gentoo-2-6f4f3fa1ba19673b005606196247b62a6ad947fd.zip |
Fix installation, #324307
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/t-coffee')
-rw-r--r-- | sci-biology/t-coffee/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/t-coffee/t-coffee-8.69.ebuild | 29 |
2 files changed, 16 insertions, 18 deletions
diff --git a/sci-biology/t-coffee/ChangeLog b/sci-biology/t-coffee/ChangeLog index f76a00ca8a26..c193d433bd28 100644 --- a/sci-biology/t-coffee/ChangeLog +++ b/sci-biology/t-coffee/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/t-coffee # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/ChangeLog,v 1.41 2010/06/15 13:47:35 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/ChangeLog,v 1.42 2010/06/18 07:55:33 jlec Exp $ + + 18 Jun 2010; Justin Lecher <jlec@gentoo.org> t-coffee-8.69.ebuild: + Fix installation, #324307 *t-coffee-8.69 (15 Jun 2010) diff --git a/sci-biology/t-coffee/t-coffee-8.69.ebuild b/sci-biology/t-coffee/t-coffee-8.69.ebuild index c08ac6cf7813..1f775ef65647 100644 --- a/sci-biology/t-coffee/t-coffee-8.69.ebuild +++ b/sci-biology/t-coffee/t-coffee-8.69.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/t-coffee-8.69.ebuild,v 1.1 2010/06/15 13:47:35 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/t-coffee/t-coffee-8.69.ebuild,v 1.2 2010/06/18 07:55:33 jlec Exp $ EAPI="2" @@ -12,7 +12,7 @@ SRC_URI="http://www.tcoffee.org/Packages/T-COFFEE_distribution_Version_${PV}.tar LICENSE="GPL-2" SLOT="0" -IUSE="" +IUSE="examples test" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" RDEPEND="sci-biology/clustalw" @@ -48,25 +48,20 @@ src_test() { } src_install() { - dobin t_coffee || die "Failed to install program." + dobin t_coffee_source/t_coffee || die "Failed to install program." insinto /usr/share/${PN}/lib/html - doins "${TCDIR}"/html/* \ - || die "Failed to install Web interface files." + doins html/* || die "Failed to install Web interface files." - cd "${TCDIR}"/doc - dodoc aln_compare.doc.txt seq_reformat.doc.txt \ - t_coffee_technical.txt t_coffee_tutorial.txt \ - || die "Failed to install text documentation." - - dohtml t_coffee_technical.htm t_coffee_tutorial.htm \ - || die "Failed to install HTML documentation." +# cd IR}"/doc + dodoc doc/*.txt || die "Failed to install text documentation." + dohtml doc/*.htm || die "Failed to install HTML documentation." insinto /usr/share/doc/${PF} - doins t_coffee_technical.doc t_coffee_tutorial.doc \ - || die "Failed to install DOC documentation." + doins doc/*.doc || die "Failed to install DOC documentation." - insinto /usr/share/${PN} - doins -r "${TCDIR}"/example \ - || die "Failed to install example files." + if use examples; then + insinto /usr/share/${PN} + doins -r example || die "Failed to install example files." + fi } |