diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2012-04-22 15:53:08 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2012-04-22 15:53:08 +0000 |
commit | 1df48116c7211027b5a4455b04f7ee823ba1e808 (patch) | |
tree | 1e72ca2581936207e522e598b26653243c86c991 /sci-biology/clustalx | |
parent | Fix bug 412213 and add a workaround for an additional issue with ffmpeg filte... (diff) | |
download | gentoo-2-1df48116c7211027b5a4455b04f7ee823ba1e808.tar.gz gentoo-2-1df48116c7211027b5a4455b04f7ee823ba1e808.tar.bz2 gentoo-2-1df48116c7211027b5a4455b04f7ee823ba1e808.zip |
Version bump wrt #410163 by Michael (kensington) <gentoo@scribeofthenile.com>
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/clustalx')
-rw-r--r-- | sci-biology/clustalx/ChangeLog | 9 | ||||
-rw-r--r-- | sci-biology/clustalx/clustalx-2.1.ebuild | 39 |
2 files changed, 46 insertions, 2 deletions
diff --git a/sci-biology/clustalx/ChangeLog b/sci-biology/clustalx/ChangeLog index 15cfc808eb01..267e004251ea 100644 --- a/sci-biology/clustalx/ChangeLog +++ b/sci-biology/clustalx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-biology/clustalx -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalx/ChangeLog,v 1.21 2010/10/10 21:18:22 ulm Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalx/ChangeLog,v 1.22 2012/04/22 15:53:08 xarthisius Exp $ + +*clustalx-2.1 (22 Apr 2012) + + 22 Apr 2012; Kacper Kowalik <xarthisius@gentoo.org> +clustalx-2.1.ebuild: + Version bump wrt #410163 by Michael (kensington) <gentoo@scribeofthenile.com> 10 Oct 2010; Ulrich Mueller <ulm@gentoo.org> clustalx-1.83-r2.ebuild: Fix openmotif dependency. diff --git a/sci-biology/clustalx/clustalx-2.1.ebuild b/sci-biology/clustalx/clustalx-2.1.ebuild new file mode 100644 index 000000000000..c4ef02e7399e --- /dev/null +++ b/sci-biology/clustalx/clustalx-2.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalx/clustalx-2.1.ebuild,v 1.1 2012/04/22 15:53:08 xarthisius Exp $ + +EAPI=4 + +inherit eutils qt4-r2 + +DESCRIPTION="Graphical interface for the ClustalW multiple alignment program" +HOMEPAGE="http://www.ebi.ac.uk/tools/clustalw2/" +SRC_URI="http://www.clustal.org/download/current/${P}.tar.gz" + +LICENSE="GPL-3 LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/qt-core:4 + x11-libs/qt-gui:4" +RDEPEND="${DEPEND} + >=sci-biology/clustalw-2.1" + +src_prepare() { + sed -e "s|colprot.xml|/usr/share/${PN}/colprot.xml|" \ + -e "s|coldna.xml|/usr/share/${PN}/coldna.xml|" \ + -e "s|colprint.xml|/usr/share/${PN}/colprint.xml|" \ + -i ClustalQtParams.h || \ + die "Failed to patch shared files location." + sed -e "s|clustalx.hlp|/usr/share/${PN}/clustalx.hlp|" \ + -i HelpDisplayWidget.cpp || \ + die "Failed to patch help file location." +} + +src_install() { + dobin clustalx + insinto /usr/share/${PN} + doins colprot.xml coldna.xml colprint.xml clustalx.hlp + make_desktop_entry ${PN} ClustalX +} |