blob: 1aa25c2446bcc6b48bec58b3b52c6dabb19c21c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.3 2003/06/22 12:16:00 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/*
}
|