diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-01-08 21:39:15 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-01-08 21:39:15 +0000 |
commit | 94bd3a602f59be31b25bc0f193ff273201f7faeb (patch) | |
tree | bdbdff2ed24ccc807a8a6895c526ed4e213c1e9b /dev-python | |
parent | Remove old (diff) | |
download | gentoo-2-94bd3a602f59be31b25bc0f193ff273201f7faeb.tar.gz gentoo-2-94bd3a602f59be31b25bc0f193ff273201f7faeb.tar.bz2 gentoo-2-94bd3a602f59be31b25bc0f193ff273201f7faeb.zip |
Remove old
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/visual/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/visual/visual-4_beta0.ebuild | 73 |
2 files changed, 5 insertions, 75 deletions
diff --git a/dev-python/visual/ChangeLog b/dev-python/visual/ChangeLog index 3c69379b061b..26be3aac0fbe 100644 --- a/dev-python/visual/ChangeLog +++ b/dev-python/visual/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/visual -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.23 2008/08/09 17:31:45 neurogeek Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.24 2009/01/08 21:39:15 patrick Exp $ + + 08 Jan 2009; Patrick Lauer <patrick@gentoo.org> -visual-4_beta0.ebuild: + Removing old *visual-3.2.9-r1 (09 Aug 2008) diff --git a/dev-python/visual/visual-4_beta0.ebuild b/dev-python/visual/visual-4_beta0.ebuild deleted file mode 100644 index a77a639e6913..000000000000 --- a/dev-python/visual/visual-4_beta0.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-4_beta0.ebuild,v 1.4 2008/05/01 14:18:31 maekke Exp $ - -inherit distutils versionator multilib - -MY_P=$(replace_version_separator _ . ${P}) - -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="An easy to use Real-time 3D graphics library for Python." -SRC_URI="http://www.vpython.org/download/${MY_P}.tar.bz2" -HOMEPAGE="http://www.vpython.org/" - -IUSE="doc examples numeric numarray" -SLOT="0" -KEYWORDS="~x86" -LICENSE="visual" - -DEPEND=">=dev-lang/python-2.2 - >=dev-libs/boost-1.31 - virtual/opengl - =dev-cpp/gtkglextmm-1.2* - dev-cpp/libglademm - numeric? ( dev-python/numeric ) - numarray? ( >=dev-python/numarray-1.0 ) - !numeric? ( !numarray? ( dev-python/numeric ) )" - -RDEPEND=${DEPEND} - -src_compile() { - local myconf="--without-numarray --without-numeric" - - echo - if useq numeric; then - elog "Building with Numeric support" - myconf=${myconf/--without-numeric} - fi - if useq numarray; then - elog "Building with Numarray support" - myconf=${myconf/--without-numarray} - fi - if ! useq numeric && ! useq numarray; then - elog "Support for Numeric or Numarray was not specified." - elog "Building with Numeric support" - myconf=${myconf/--without-numeric} - fi - echo - - econf \ - --with-html-dir=/usr/share/doc/${PF}/html \ - --with-example-dir=/usr/share/doc/${PF}/examples \ - $(use_enable doc docs ) \ - $(use_enable examples ) \ - ${myconf} \ - || die "configure failed" - - sed -i s/boost_thread/boost_thread-mt/ src/Makefile - - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - - python_version - - mv "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/cvisualmodule* \ - "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/visual - - #the vpython script does not work, and is unnecessary - rm "${D}"/usr/bin/vpython -} |