diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-08-19 12:55:11 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-08-19 12:55:11 +0000 |
commit | 4bdbb62ddf1fce7c9ab9f36d81ca32ecf4d0ee0c (patch) | |
tree | 3bd619a84c0bc2bc41d6d649f2a83334174fa003 /sci-chemistry/autodock_vina | |
parent | remove old (diff) | |
download | gentoo-2-4bdbb62ddf1fce7c9ab9f36d81ca32ecf4d0ee0c.tar.gz gentoo-2-4bdbb62ddf1fce7c9ab9f36d81ca32ecf4d0ee0c.tar.bz2 gentoo-2-4bdbb62ddf1fce7c9ab9f36d81ca32ecf4d0ee0c.zip |
sci-chemistry/autodock_vina: Drop old fixes problems with boost-1.52, #460264
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-chemistry/autodock_vina')
-rw-r--r-- | sci-chemistry/autodock_vina/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/autodock_vina/autodock_vina-1.1.1-r1.ebuild | 45 |
2 files changed, 4 insertions, 46 deletions
diff --git a/sci-chemistry/autodock_vina/ChangeLog b/sci-chemistry/autodock_vina/ChangeLog index 111f2e75244f..c44d831c5868 100644 --- a/sci-chemistry/autodock_vina/ChangeLog +++ b/sci-chemistry/autodock_vina/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/autodock_vina # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/autodock_vina/ChangeLog,v 1.10 2013/08/18 13:46:53 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/autodock_vina/ChangeLog,v 1.11 2013/08/19 12:55:11 jlec Exp $ + + 19 Aug 2013; Justin Lecher <jlec@gentoo.org> -autodock_vina-1.1.1-r1.ebuild: + Drop old fixes problems with boost-1.52, #460264 18 Aug 2013; Agostino Sarubbo <ago@gentoo.org> autodock_vina-1.1.2.ebuild: Stable for x86, wrt bug #480626 diff --git a/sci-chemistry/autodock_vina/autodock_vina-1.1.1-r1.ebuild b/sci-chemistry/autodock_vina/autodock_vina-1.1.1-r1.ebuild deleted file mode 100644 index c1dc92ffeb3c..000000000000 --- a/sci-chemistry/autodock_vina/autodock_vina-1.1.1-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/autodock_vina/autodock_vina-1.1.1-r1.ebuild,v 1.4 2012/01/28 15:09:39 phajdan.jr Exp $ - -EAPI="3" - -inherit eutils flag-o-matic versionator - -MY_P="${PN}_$(replace_all_version_separators _)" - -DESCRIPTION="Program for drug discovery, molecular docking and virtual screening" -HOMEPAGE="http://vina.scripps.edu/" -SRC_URI="http://vina.scripps.edu/download/${MY_P}.tgz" - -SLOT="0" -KEYWORDS="amd64 x86" -LICENSE="Apache-2.0" -IUSE="debug" - -RDEPEND="dev-libs/boost" -DEPEND="${RDEPEND}" - -S="${WORKDIR}"/${MY_P}/build/linux/release - -src_prepare() { - cd "${WORKDIR}"/${MY_P} && epatch "${FILESDIR}"/${PV}-gentoo.patch -} - -src_compile() { - local c_options - - use debug || c_options="-DNDEBUG" - - append-cxxflags -DBOOST_FILESYSTEM_VERSION=2 - - emake \ - BASE="${EPREFIX}"/usr/ \ - GPP="$(tc-getCXX)" \ - C_OPTIONS="${c_options}" \ - || die -} - -src_install() { - dobin vina{,_split} || die -} |