summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Polatel <hawking@gentoo.org>2008-10-27 10:09:57 +0000
committerAli Polatel <hawking@gentoo.org>2008-10-27 10:09:57 +0000
commitc9d30fc95bd09a6f0eed980321f0e0184b3c32ab (patch)
tree5da684c8477ce8e3b52eef485448c40c94fb9e69 /dev-python/piddle
parentUse python_need_rebuild. (diff)
downloadgentoo-2-c9d30fc95bd09a6f0eed980321f0e0184b3c32ab.tar.gz
gentoo-2-c9d30fc95bd09a6f0eed980321f0e0184b3c32ab.tar.bz2
gentoo-2-c9d30fc95bd09a6f0eed980321f0e0184b3c32ab.zip
Use distutils.
(Portage version: -svn/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'dev-python/piddle')
-rw-r--r--dev-python/piddle/ChangeLog7
-rw-r--r--dev-python/piddle/piddle-1.0.15.ebuild15
2 files changed, 11 insertions, 11 deletions
diff --git a/dev-python/piddle/ChangeLog b/dev-python/piddle/ChangeLog
index 7ba02fcb2a6c..89218c673a13 100644
--- a/dev-python/piddle/ChangeLog
+++ b/dev-python/piddle/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/piddle
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/piddle/ChangeLog,v 1.9 2006/07/12 15:48:11 agriffis Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/piddle/ChangeLog,v 1.10 2008/10/27 10:09:57 hawking Exp $
+
+ 27 Oct 2008; Ali Polatel <hawking@gentoo.org> piddle-1.0.15.ebuild:
+ Use distutils.
12 Jul 2006; Aron Griffis <agriffis@gentoo.org> piddle-1.0.15.ebuild:
Mark 1.0.15 stable on ia64
diff --git a/dev-python/piddle/piddle-1.0.15.ebuild b/dev-python/piddle/piddle-1.0.15.ebuild
index 67d063b12f99..1a8e9e27ed56 100644
--- a/dev-python/piddle/piddle-1.0.15.ebuild
+++ b/dev-python/piddle/piddle-1.0.15.ebuild
@@ -1,6 +1,9 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/piddle/piddle-1.0.15.ebuild,v 1.6 2006/07/12 15:48:11 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/piddle/piddle-1.0.15.ebuild,v 1.7 2008/10/27 10:09:57 hawking Exp $
+
+NEED_PYTHON="1.5.2"
+inherit distutils
DESCRIPTION="Cross-media, cross-platform 2D graphics package"
HOMEPAGE="http://piddle.sourceforge.net/"
@@ -9,14 +12,8 @@ LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="ia64 x86"
IUSE=""
-DEPEND=">=dev-lang/python-1.5.2"
-
-src_compile() {
- python setup.py build || die
-}
src_install() {
- python setup.py install --root=${D} --prefix=/usr || die
- dodoc README.txt
+ distutils_src_install
dohtml -r docs/*
}