blob: 97b747e4b8eebe1e423bdf60704e80d9ddb373b0 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrex/pyrex-0.5.ebuild,v 1.11 2004/06/25 01:43:00 agriffis Exp $
inherit distutils
MY_P="Pyrex-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="a language for writing Python extension modules"
HOMEPAGE="http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex"
SRC_URI="http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND="virtual/python"
RDEPEND=""
src_install() {
mydoc="CHANGES.txt INSTALL.txt README.txt USAGE.txt"
distutils_src_install
dodir ${D}usr/share/doc/${PF}/Demos
cp -r ${S}/Demos ${D}usr/share/doc/${PF}
dohtml -r Doc/*
cp ${S}/Doc/primes.c ${D}usr/share/doc/${PF}/html/
}
|