diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-05-10 20:31:35 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-05-10 20:31:35 +0000 |
commit | f16f9c02b21d956717432f6199293a834e95bd25 (patch) | |
tree | 40cc7f3b8f00197fe05eea8c4f49f330e256e821 /dev-python/pyx | |
parent | new package (diff) | |
download | gentoo-2-f16f9c02b21d956717432f6199293a834e95bd25.tar.gz gentoo-2-f16f9c02b21d956717432f6199293a834e95bd25.tar.bz2 gentoo-2-f16f9c02b21d956717432f6199293a834e95bd25.zip |
new package
Diffstat (limited to 'dev-python/pyx')
-rw-r--r-- | dev-python/pyx/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/pyx/Manifest | 5 | ||||
-rw-r--r-- | dev-python/pyx/files/digest-pyx-0.3.1 | 1 | ||||
-rw-r--r-- | dev-python/pyx/pyx-0.3.1.ebuild | 35 |
4 files changed, 47 insertions, 3 deletions
diff --git a/dev-python/pyx/ChangeLog b/dev-python/pyx/ChangeLog new file mode 100644 index 000000000000..25c15a1240e3 --- /dev/null +++ b/dev-python/pyx/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/pyx +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.1 2003/05/10 20:31:25 liquidx Exp $ + +*pyx-0.3.1 (10 May 2003) + + 10 May 2003; Alastair Tse <liquidx@gentoo.org> pyx-0.3.1.ebuild: + Initial ebuild. Submitted by Dan Bullok <dan.gentoo@bullok.com>. + diff --git a/dev-python/pyx/Manifest b/dev-python/pyx/Manifest index 4093cb4e575e..f2df772a9db9 100644 --- a/dev-python/pyx/Manifest +++ b/dev-python/pyx/Manifest @@ -1,4 +1,3 @@ -MD5 f6a830b434f4371b5070c17bc24fd7d9 pyx-0.3.1.ebuild 564 -MD5 9bb3bfd9aa9557f0b85857cfd3b5cd2f ChangeLog 214 -MD5 46a94096ae827068a9488dbb0a2e4197 files/digest-PyX-0.3.1 61 +MD5 cff2227dd0095556e6e3e4d7929058a1 pyx-0.3.1.ebuild 666 +MD5 f9d1ed4493492e9851e4378a89552169 ChangeLog 372 MD5 46a94096ae827068a9488dbb0a2e4197 files/digest-pyx-0.3.1 61 diff --git a/dev-python/pyx/files/digest-pyx-0.3.1 b/dev-python/pyx/files/digest-pyx-0.3.1 new file mode 100644 index 000000000000..272cb104f776 --- /dev/null +++ b/dev-python/pyx/files/digest-pyx-0.3.1 @@ -0,0 +1 @@ +MD5 a01184011b3cec0e4c0086d42b065e01 PyX-0.3.1.tar.gz 658655 diff --git a/dev-python/pyx/pyx-0.3.1.ebuild b/dev-python/pyx/pyx-0.3.1.ebuild new file mode 100644 index 000000000000..6a6a94296ab5 --- /dev/null +++ b/dev-python/pyx/pyx-0.3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/pyx-0.3.1.ebuild,v 1.1 2003/05/10 20:31:25 liquidx Exp $ + +IUSE="" + +inherit distutils + +MY_P=${P/pyx/PyX} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Python package for the generation of encapsulated PostScript figures" +SRC_URI="mirror://sourceforge/pyx/${MY_P}.tar.gz" +HOMEPAGE="http://pyx.sourceforge.net/" + +DEPEND=">=dev-lang/python-2.2" + +SLOT="0" +KEYWORDS="~x86" +LICENSE="GPL-2" + + +src_install() { + + DOCS="manual/manual.ps" + distutils_src_install + + insinto /usr/share/doc/${PF}/examples + doins examples/* + +} + + + + |