diff options
author | 2012-08-13 20:06:36 +0000 | |
---|---|---|
committer | 2012-08-13 20:06:36 +0000 | |
commit | cf6437b240a3b116d1dae88080e2fc1306f4bdfb (patch) | |
tree | 985a3603c496924f080738f21a1c0e04482f363e /sci-chemistry/tm-align | |
parent | version bump (diff) | |
download | gentoo-2-cf6437b240a3b116d1dae88080e2fc1306f4bdfb.tar.gz gentoo-2-cf6437b240a3b116d1dae88080e2fc1306f4bdfb.tar.bz2 gentoo-2-cf6437b240a3b116d1dae88080e2fc1306f4bdfb.zip |
sci-chemistry/tm-align: Version Bump
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/tm-align')
-rw-r--r-- | sci-chemistry/tm-align/ChangeLog | 8 | ||||
-rw-r--r-- | sci-chemistry/tm-align/tm-align-20120124.ebuild | 4 | ||||
-rw-r--r-- | sci-chemistry/tm-align/tm-align-20120707.ebuild | 25 |
3 files changed, 34 insertions, 3 deletions
diff --git a/sci-chemistry/tm-align/ChangeLog b/sci-chemistry/tm-align/ChangeLog index 03bc93a72827..c73b92b8ada0 100644 --- a/sci-chemistry/tm-align/ChangeLog +++ b/sci-chemistry/tm-align/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-chemistry/tm-align # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/tm-align/ChangeLog,v 1.1 2012/03/21 12:18:47 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/tm-align/ChangeLog,v 1.2 2012/08/13 20:06:36 jlec Exp $ + +*tm-align-20120707 (13 Aug 2012) + + 13 Aug 2012; Justin Lecher <jlec@gentoo.org> tm-align-20120124.ebuild, + +tm-align-20120707.ebuild: + Version Bump *tm-align-20120124 (21 Mar 2012) diff --git a/sci-chemistry/tm-align/tm-align-20120124.ebuild b/sci-chemistry/tm-align/tm-align-20120124.ebuild index a6f7c565e0bd..abf7cbe84998 100644 --- a/sci-chemistry/tm-align/tm-align-20120124.ebuild +++ b/sci-chemistry/tm-align/tm-align-20120124.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/tm-align/tm-align-20120124.ebuild,v 1.1 2012/03/21 12:18:47 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/tm-align/tm-align-20120124.ebuild,v 1.2 2012/08/13 20:06:36 jlec Exp $ EAPI=4 -inherit cmake-utils fortran-2 +inherit cmake-utils flag-o-matic fortran-2 DESCRIPTION="Quick & Accurate Structural Alignment" HOMEPAGE="http://zhanglab.ccmb.med.umich.edu/TM-align/" diff --git a/sci-chemistry/tm-align/tm-align-20120707.ebuild b/sci-chemistry/tm-align/tm-align-20120707.ebuild new file mode 100644 index 000000000000..2314e4daf232 --- /dev/null +++ b/sci-chemistry/tm-align/tm-align-20120707.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/tm-align/tm-align-20120707.ebuild,v 1.1 2012/08/13 20:06:36 jlec Exp $ + +EAPI=4 + +inherit cmake-utils flag-o-matic fortran-2 + +DESCRIPTION="Quick & Accurate Structural Alignment" +HOMEPAGE="http://zhanglab.ccmb.med.umich.edu/TM-align/" +SRC_URI="http://zhanglab.ccmb.med.umich.edu/TM-align/TMtools${PV}.tar.gz" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static custom-cflags" + +S="${WORKDIR}" + +src_prepare() { + cp "${FILESDIR}"/CMakeLists.txt . || die + use static && append-fflags -static && append-ldflags -static + # recommended by upstream + use custom-cflags || replace-flags -O* -O3 && append-fflags -ffast-math +} |