diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-11-08 06:32:24 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-11-08 06:32:24 +0000 |
commit | 3a4ed360fe07ca2eb927e18236550ccc1f4d2977 (patch) | |
tree | 859104516acabeb838157c450c2d0b95f8e17a92 /dev-python | |
parent | Mask older rb_libtorrent (bug #442314). (diff) | |
download | gentoo-2-3a4ed360fe07ca2eb927e18236550ccc1f4d2977.tar.gz gentoo-2-3a4ed360fe07ca2eb927e18236550ccc1f4d2977.tar.bz2 gentoo-2-3a4ed360fe07ca2eb927e18236550ccc1f4d2977.zip |
Remove old version depending on older boost.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/cgkit/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/cgkit/cgkit-2.0.0_alpha9.ebuild | 75 |
2 files changed, 5 insertions, 76 deletions
diff --git a/dev-python/cgkit/ChangeLog b/dev-python/cgkit/ChangeLog index cbe6a6dc880a..55e8ebe577de 100644 --- a/dev-python/cgkit/ChangeLog +++ b/dev-python/cgkit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/cgkit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cgkit/ChangeLog,v 1.35 2012/11/06 07:44:44 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cgkit/ChangeLog,v 1.36 2012/11/08 06:32:24 flameeyes Exp $ + + 08 Nov 2012; Diego E. Pettenò <flameeyes@gentoo.org> + -cgkit-2.0.0_alpha9.ebuild: + Remove old version depending on older boost. 06 Nov 2012; Ian Delaney <idella4@gentoo.org> +files/cgkit-2.0.0-test.patch, cgkit-2.0.0_alpha9-r1.ebuild: diff --git a/dev-python/cgkit/cgkit-2.0.0_alpha9.ebuild b/dev-python/cgkit/cgkit-2.0.0_alpha9.ebuild deleted file mode 100644 index 4e0ec714d031..000000000000 --- a/dev-python/cgkit/cgkit-2.0.0_alpha9.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cgkit/cgkit-2.0.0_alpha9.ebuild,v 1.6 2012/01/24 20:45:42 hwoarang Exp $ - -EAPI="3" -PYTHON_DEPEND="2" - -inherit distutils - -MY_P="${P/_/}" - -DESCRIPTION="Python library for creating 3D images" -HOMEPAGE="http://cgkit.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -RDEPEND="dev-python/pyrex - <dev-libs/boost-1.48[python] - dev-python/pyprotocols - dev-python/pyopengl - dev-python/pygame - dev-python/imaging - 3ds? ( media-libs/lib3ds )" -DEPEND="${RDEPEND} - dev-util/scons" - -LICENSE="LGPL-2.1 MPL-1.1 GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="3ds" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - distutils_src_prepare - - sed -i -e "s/fPIC/fPIC\",\"${CFLAGS// /\",\"}/" supportlib/SConstruct - cp config_template.cfg config.cfg - echo 'LIBS += ["GL", "GLU", "glut"]' >> config.cfg - if use 3ds; then - echo 'LIB3DS_AVAILABLE = True' >> config.cfg - fi - - # Ogre viewer is no longer maintained by upstream - # bug 210731 - #if use ogre; then - # echo 'OGRE_AVAILABLE = True' >> config.cfg - # echo 'INC_DIRS += ["/usr/include/OGRE"]' >> config.cfg - # echo 'MACROS += [("EXT_HASH", None),("GCC_3_1",None)]' >> config.cfg - # sed -i -e "s/#include <Math.h>//" wrappers/ogre/OgreCore.h - #fi - - sed -i -e "s:INC_DIRS = \[\]:INC_DIRS = \['/usr/include'\]:" "${S}"/setup.py - - sed -i -e "160s/as/as_/;168s/as/as_/" cgkit/flockofbirds.py -} - -src_compile() { - pushd supportlib > /dev/null - scons ${MAKEOPTS} - popd > /dev/null - - distutils_src_compile -} - -src_test() { - cd unittests - # Remove failing tests due to non-existing files - rm test_maimport.py test_mayaascii.py test_mayabinary.py test_ri.py test_slparams.py - PYTHONPATH="$(ls -d ../build/lib*)" "$(PYTHON)" all.py || die "Tests failed" -} |