diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2003-10-01 16:34:58 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2003-10-01 16:34:58 +0000 |
commit | 0c374d8e910f28aea0891a92cfea042f27de4cc3 (patch) | |
tree | 20fc5cedeadc2128eab598f30113c8afb997e398 /dev-python/piddle | |
parent | Encryption and gaim now properly detect nss/nspr (diff) | |
download | historical-0c374d8e910f28aea0891a92cfea042f27de4cc3.tar.gz historical-0c374d8e910f28aea0891a92cfea042f27de4cc3.tar.bz2 historical-0c374d8e910f28aea0891a92cfea042f27de4cc3.zip |
Initial import.
Diffstat (limited to 'dev-python/piddle')
-rw-r--r-- | dev-python/piddle/ChangeLog | 14 | ||||
-rw-r--r-- | dev-python/piddle/Manifest | 5 | ||||
-rw-r--r-- | dev-python/piddle/files/digest-piddle-1.0.15 | 1 | ||||
-rw-r--r-- | dev-python/piddle/metadata.xml | 17 | ||||
-rw-r--r-- | dev-python/piddle/piddle-1.0.15.ebuild | 24 |
5 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/piddle/ChangeLog b/dev-python/piddle/ChangeLog new file mode 100644 index 000000000000..a1ce5eab4feb --- /dev/null +++ b/dev-python/piddle/ChangeLog @@ -0,0 +1,14 @@ +# ChangeLog for dev-python/piddle +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/piddle/ChangeLog,v 1.1 2003/10/01 16:34:58 karltk Exp $ + +*piddle-1.0.5 (30 Sep 2003) + + 30 Sep 2003; Karl Trygve Kalleberg <karltk@gentoo.org> piddle-1.0.5.ebuild: + Initial import. + + "A python module providing a cross-platform and cross-media drawing + toolkit. It handles lines, polygons, curves, figures, and + text--powerful enough for professional plotting--including support for + wxWindows, Tk, Quickdraw, PDF, Postscript, and PIL." + diff --git a/dev-python/piddle/Manifest b/dev-python/piddle/Manifest new file mode 100644 index 000000000000..57753a3cbadb --- /dev/null +++ b/dev-python/piddle/Manifest @@ -0,0 +1,5 @@ +MD5 2d4f32e41d6c7b1f89bbea7ea58da444 piddle-1.0.15.ebuild 544 +MD5 d7fa1143572bfd8df5f14ba3c127b309 piddle-1.0.15.ebuild~ 543 +MD5 125ee013081b112d56a1d15507d72ef2 ChangeLog~ 3674 +MD5 3bd28b17ee8673d0a08da92dfeccdf5c ChangeLog 514 +MD5 60531cf044365817fc0b7e748799e27b files/digest-piddle-1.0.15 65 diff --git a/dev-python/piddle/files/digest-piddle-1.0.15 b/dev-python/piddle/files/digest-piddle-1.0.15 new file mode 100644 index 000000000000..11303e1d2890 --- /dev/null +++ b/dev-python/piddle/files/digest-piddle-1.0.15 @@ -0,0 +1 @@ +MD5 b199bee7379e40737673573f5f0e5d9f piddle-1.0.15.tar.gz 454044 diff --git a/dev-python/piddle/metadata.xml b/dev-python/piddle/metadata.xml new file mode 100644 index 000000000000..78048f79dfee --- /dev/null +++ b/dev-python/piddle/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<longdescription> +PIDDLE is a Python module for creating two-dimensional graphics in a +manner that is both cross-platform and cross-media; that is, it can +support screen graphics (e.g. QuickDraw, Windows, Tk) as well as file +output (PostScript, PDF, GIF, etc.). It makes use of the native 2D +drawing calls of each backend, for maximum efficiency and quality. It +works by defining a base class (piddle.Canvas) with methods for all +supported drawing primitives. A particular drawing context is provided +in the form of a derived class. PIDDLE applications will be able to +automatically select an appropriate backend for the user's environment. +</longdescription> + +</pkgmetadata> diff --git a/dev-python/piddle/piddle-1.0.15.ebuild b/dev-python/piddle/piddle-1.0.15.ebuild new file mode 100644 index 000000000000..dc5e95c9a248 --- /dev/null +++ b/dev-python/piddle/piddle-1.0.15.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.1 2003/10/01 16:34:58 karltk Exp $ + + +DESCRIPTION="Cross-media, cross-platform 2D graphics package" +HOMEPAGE="http://piddle.sourceforge.net/" +SRC_URI="mirror://sourceforge/piddle/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND=">=dev-lang/python-1.5.2" +S=${WORKDIR}/${P} + +src_compile() { + python setup.py build || die +} + +src_install() { + python setup.py install --root=${D} --prefix=/usr || die + dodoc README.txt + dohtml -r docs/* +} |