diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-06-28 19:16:47 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-06-28 19:16:47 +0000 |
commit | 04664cb759126b15a2481b2a9a95c825aa6c53e9 (patch) | |
tree | 2f5142efb845456486427cfa846ec79aae0370c7 /sci-chemistry | |
parent | Drop old (diff) | |
download | gentoo-2-04664cb759126b15a2481b2a9a95c825aa6c53e9.tar.gz gentoo-2-04664cb759126b15a2481b2a9a95c825aa6c53e9.tar.bz2 gentoo-2-04664cb759126b15a2481b2a9a95c825aa6c53e9.zip |
Drop old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'sci-chemistry')
5 files changed, 6 insertions, 181 deletions
diff --git a/sci-chemistry/openbabel/ChangeLog b/sci-chemistry/openbabel/ChangeLog index 2cb127593866..a645d87950e7 100644 --- a/sci-chemistry/openbabel/ChangeLog +++ b/sci-chemistry/openbabel/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-chemistry/openbabel # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.67 2015/06/28 11:18:49 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.68 2015/06/28 19:16:47 jlec Exp $ + + 28 Jun 2015; Justin Lecher <jlec@gentoo.org> + -files/openbabel-2.2.0-doxyfile.patch, -files/openbabel-2.3.0-swig.patch, + -files/openbabel-2.3.0-test_lib_path.patch, -openbabel-2.2.3.ebuild: + Drop old 28 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> openbabel-2.3.2.ebuild: x86 stable wrt bug #534612 diff --git a/sci-chemistry/openbabel/files/openbabel-2.2.0-doxyfile.patch b/sci-chemistry/openbabel/files/openbabel-2.2.0-doxyfile.patch deleted file mode 100644 index e54a530397a6..000000000000 --- a/sci-chemistry/openbabel/files/openbabel-2.2.0-doxyfile.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- Doxyfile.orig 2008-07-01 20:55:40.000000000 +0300 -+++ Doxyfile 2009-02-10 01:30:56.000000000 +0200 -@@ -752,13 +752,13 @@ - # each generated HTML page. If it is left blank doxygen will generate a - # standard header. - --HTML_HEADER = doc/api-header.html -+HTML_HEADER = - - # The HTML_FOOTER tag can be used to specify a personal HTML footer for - # each generated HTML page. If it is left blank doxygen will generate a - # standard footer. - --HTML_FOOTER = doc/api-footer.html -+HTML_FOOTER = - - # The HTML_STYLESHEET tag can be used to specify a user-defined cascading - # style sheet that is used by each HTML page. It can be used to -@@ -767,7 +767,7 @@ - # the style sheet file to the HTML output directory, so don't put your own - # stylesheet in the HTML output directory as well, or it will be erased! - --HTML_STYLESHEET = doc/api-style.css -+HTML_STYLESHEET = - - # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, - # files or namespaces will be aligned in HTML using tables. If set to diff --git a/sci-chemistry/openbabel/files/openbabel-2.3.0-swig.patch b/sci-chemistry/openbabel/files/openbabel-2.3.0-swig.patch deleted file mode 100644 index aeb29c5140fb..000000000000 --- a/sci-chemistry/openbabel/files/openbabel-2.3.0-swig.patch +++ /dev/null @@ -1,42 +0,0 @@ - scripts/CMakeLists.txt | 15 +++++---------- - 1 files changed, 5 insertions(+), 10 deletions(-) - -diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt -index bf2527b..df173f7 100644 ---- a/scripts/CMakeLists.txt -+++ b/scripts/CMakeLists.txt -@@ -8,16 +8,11 @@ if (RUN_SWIG) - # SWIG_EXECUTABLE - the path to the swig executable - # SWIG_VERSION - the version number of the swig executable - -- find_package(SWIG) -+ find_package(SWIG 2.0) - if (NOT SWIG_FOUND) -- message(STATUS "SWIG NOT found") -+ message(STATUS "SWIG 2.0 NOT found") - return() - endif (NOT SWIG_FOUND) -- message(STATUS "SWIG version is ${SWIG_VERSION}") -- if (NOT ${SWIG_VERSION} STREQUAL "2.0.0" AND NOT ${SWIG_VERSION} STREQUAL "2.0.1") -- message(STATUS "SWIG version 2.0.0 exactly is required") -- return() -- endif (NOT ${SWIG_VERSION} STREQUAL "2.0.0" AND NOT ${SWIG_VERSION} STREQUAL "2.0.1") - endif (RUN_SWIG) - - ################### -@@ -84,12 +79,12 @@ if (DO_PYTHON_BINDINGS) - VERBATIM) - - if (PYTHON_PREFIX) -- install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${openbabel_SOURCE_DIR}/scripts/python/setup.py install --prefix=${PYTHON_PREFIX} WORKING_DIRECTORY ${openbabel_BINARY_DIR}/scripts)") -+ install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${openbabel_SOURCE_DIR}/scripts/python/setup.py install --prefix=${PYTHON_PREFIX} WORKING_DIRECTORY ${openbabel_BINARY_DIR}/scripts)" LIBRARY DESTINATION ${LIB_INSTALL_DIR}) - else (PYTHON_PREFIX) - if (${CMAKE_INSTALL_PREFIX} STREQUAL "/usr/local") -- install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${openbabel_SOURCE_DIR}/scripts/python/setup.py install WORKING_DIRECTORY ${openbabel_BINARY_DIR}/scripts)") -+ install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${openbabel_SOURCE_DIR}/scripts/python/setup.py install WORKING_DIRECTORY ${openbabel_BINARY_DIR}/scripts)" LIBRARY DESTINATION ${LIB_INSTALL_DIR}) - else (${CMAKE_INSTALL_PREFIX} STREQUAL "/usr/local") -- install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${openbabel_SOURCE_DIR}/scripts/python/setup.py install --prefix=${CMAKE_INSTALL_PREFIX} WORKING_DIRECTORY ${openbabel_BINARY_DIR}/scripts)") -+ install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} ${openbabel_SOURCE_DIR}/scripts/python/setup.py install --prefix=${CMAKE_INSTALL_PREFIX} WORKING_DIRECTORY ${openbabel_BINARY_DIR}/scripts)" LIBRARY DESTINATION ${LIB_INSTALL_DIR}) - endif (${CMAKE_INSTALL_PREFIX} STREQUAL "/usr/local") - endif (PYTHON_PREFIX) - diff --git a/sci-chemistry/openbabel/files/openbabel-2.3.0-test_lib_path.patch b/sci-chemistry/openbabel/files/openbabel-2.3.0-test_lib_path.patch deleted file mode 100644 index 014da6bcd585..000000000000 --- a/sci-chemistry/openbabel/files/openbabel-2.3.0-test_lib_path.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru old/openbabel-2.3.0/test/CMakeLists.txt new/openbabel-2.3.0/test/CMakeLists.txt ---- old/openbabel-2.3.0/test/CMakeLists.txt 2010-10-26 17:39:01.000000000 +0300 -+++ new/openbabel-2.3.0/test/CMakeLists.txt 2010-11-14 18:13:32.000000000 +0200 -@@ -2,7 +2,7 @@ - add_definitions(-DTESTDATADIR="\\"${CMAKE_SOURCE_DIR}/test/files/\\"") - - # define FORMATDIR for location of format plugin binaries --add_definitions(-DFORMATDIR="\\"${openbabel_BINARY_DIR}/lib/\\"") -+add_definitions(-DFORMATDIR="\\"${openbabel_BINARY_DIR}/lib${LIB_SUFFIX}/\\"") - - ########################################################### - # new tests using obtest.h diff --git a/sci-chemistry/openbabel/openbabel-2.2.3.ebuild b/sci-chemistry/openbabel/openbabel-2.2.3.ebuild deleted file mode 100644 index 07717237848c..000000000000 --- a/sci-chemistry/openbabel/openbabel-2.2.3.ebuild +++ /dev/null @@ -1,99 +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/openbabel/openbabel-2.2.3.ebuild,v 1.16 2012/04/26 15:46:14 jlec Exp $ - -EAPI="3" - -PYTHON_DEPEND="python? 2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" -PYTHON_MODNAME="openbabel.py pybel.py" - -inherit eutils distutils - -DESCRIPTION="Interconverts file formats used in molecular modeling" -HOMEPAGE="http://openbabel.sourceforge.net/" -SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz" - -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -SLOT="0" -LICENSE="GPL-2" -IUSE="doc python swig" - -RDEPEND=" - dev-libs/libxml2:2 - !sci-chemistry/babel - !sci-chemistry/openbabel-perl - !sci-chemistry/openbabel-python - sys-libs/zlib" - -DEPEND="${RDEPEND} - dev-lang/perl - >=dev-libs/boost-1.35.0 - python? ( swig? ( >=dev-lang/swig-1.3.38 ) ) - doc? ( app-doc/doxygen )" - -src_prepare() { - epatch "${FILESDIR}/${PN}-2.2.0-doxyfile.patch" - if use python; then - cd "${S}/scripts/python" - distutils_src_prepare - fi -} - -src_configure() { - local swigconf="" - if use swig; then - swigconf="--enable-maintainer-mode" - fi - econf ${swigconf} -} - -src_compile() { - emake || die "emake failed" - if use doc ; then - emake docs || die "make docs failed" - fi - if use swig; then - emake scripts/python/openbabel_python.cpp \ - || die "Failed to make SWIG python bindings" - fi - if use python; then - cd "${S}/scripts/python" - distutils_src_compile - fi -} - -src_test() { - emake check || die "make check failed" -} - -src_install() { - dodoc AUTHORS ChangeLog NEWS README THANKS doc/{*.inc,README*,*.inc,*.mol2} || die - dohtml doc/{*.html,*.png} || die - if use doc ; then - insinto /usr/share/doc/${PF}/API/html - doins doc/API/html/* || die - fi - - emake DESTDIR="${D}" install || die "make install failed" - # Now to install the Python bindings if necessary - if use python; then - cd "${S}/scripts/python" - distutils_src_install - if use doc; then - docinto python - dodoc README || die - docinto python/html - dodoc *.html || die - fi - fi -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} |