diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-01-06 10:17:07 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-01-06 10:17:07 +0000 |
commit | 1e5ac4fdea3aa1ad265baaec7e8e8a1519a8a2aa (patch) | |
tree | 49478b6c1c4eb6ae29657f2d29e685dbca6be75d /sci-biology | |
parent | sci-chemistry/bodr: Version BUmp; punt base.eclass (diff) | |
download | gentoo-2-1e5ac4fdea3aa1ad265baaec7e8e8a1519a8a2aa.tar.gz gentoo-2-1e5ac4fdea3aa1ad265baaec7e8e8a1519a8a2aa.tar.bz2 gentoo-2-1e5ac4fdea3aa1ad265baaec7e8e8a1519a8a2aa.zip |
sci-biology/clustal-omega: Version Bump
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/clustal-omega/ChangeLog | 9 | ||||
-rw-r--r-- | sci-biology/clustal-omega/clustal-omega-1.2.0.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/sci-biology/clustal-omega/ChangeLog b/sci-biology/clustal-omega/ChangeLog index 168aee238b34..f3c17b68f232 100644 --- a/sci-biology/clustal-omega/ChangeLog +++ b/sci-biology/clustal-omega/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-biology/clustal-omega -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustal-omega/ChangeLog,v 1.3 2013/04/26 10:06:03 jlec Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustal-omega/ChangeLog,v 1.4 2014/01/06 10:17:06 jlec Exp $ + +*clustal-omega-1.2.0 (06 Jan 2014) + + 06 Jan 2014; Justin Lecher <jlec@gentoo.org> +clustal-omega-1.2.0.ebuild: + Version Bump *clustal-omega-1.1.0 (26 Apr 2013) diff --git a/sci-biology/clustal-omega/clustal-omega-1.2.0.ebuild b/sci-biology/clustal-omega/clustal-omega-1.2.0.ebuild new file mode 100644 index 000000000000..a874525bcefd --- /dev/null +++ b/sci-biology/clustal-omega/clustal-omega-1.2.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustal-omega/clustal-omega-1.2.0.ebuild,v 1.1 2014/01/06 10:17:07 jlec Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true + +inherit autotools-utils + +DESCRIPTION="Scalable multiple alignment of protein sequences" +HOMEPAGE="http://www.clustal.org/omega/" +SRC_URI="http://www.clustal.org/omega/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +DEPEND="dev-libs/argtable" +RDEPEND="${DEPEND}" + +AUTOTOOLS_IN_SOURCE_BUILD=1 + +src_prepare() { + sed \ + -e "s:-O3::g" \ + -i configure.ac || die + autotools-utils_src_prepare +} + +src_install() { + autotools-utils_src_install + if ! use static-libs; then + rm -f "${ED}"/usr/$(get_libdir)/*.a || die + rm -fr "${ED}"/usr/$(get_libdir)/pkgconfig || die + fi +} |