summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/visual')
-rw-r--r--dev-python/visual/ChangeLog5
-rw-r--r--dev-python/visual/visual-5.03_rc1.ebuild41
2 files changed, 4 insertions, 42 deletions
diff --git a/dev-python/visual/ChangeLog b/dev-python/visual/ChangeLog
index 467f23a56711..82accfb83477 100644
--- a/dev-python/visual/ChangeLog
+++ b/dev-python/visual/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/visual
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.32 2009/10/20 16:13:47 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.33 2009/12/04 07:20:15 grozin Exp $
+
+ 04 Dec 2009; Andrey Grozin <grozin@gentoo.org> -visual-5.03_rc1.ebuild:
+ Cleaning an old version
*visual-5.13 (20 Oct 2009)
diff --git a/dev-python/visual/visual-5.03_rc1.ebuild b/dev-python/visual/visual-5.03_rc1.ebuild
deleted file mode 100644
index 4acf2af942fe..000000000000
--- a/dev-python/visual/visual-5.03_rc1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.03_rc1.ebuild,v 1.1 2009/04/07 11:25:19 bicatali Exp $
-
-EAPI=2
-inherit eutils python
-
-MY_P="${P/rc1/candidate}"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="Real-time 3D graphics library for Python"
-HOMEPAGE="http://www.vpython.org/"
-SRC_URI="http://www.vpython.org/contents/download/${MY_P}.tar.bz2"
-
-IUSE="doc examples"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-LICENSE="visual"
-
-RDEPEND="=dev-libs/boost-1.35*
- dev-cpp/libglademm
- >=dev-cpp/gtkglextmm-1.2
- dev-python/numpy"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_configure() {
- econf \
- --with-html-dir=/usr/share/doc/${PF}/html \
- --with-example-dir=/usr/share/doc/${PF}/examples \
- $(use_enable doc docs) \
- $(use_enable examples)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc authors.txt HACKING.txt NEWS.txt
- #the vpython script is only use for examples
- use examples || rm -r "${D}"/usr/bin
-}