# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/dev-python/pyrex/pyrex-0.9.ebuild,v 1.1 2004/04/03 17:24:20 kloeri 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="~x86" DEPEND="virtual/python" src_unpack() { unpack ${MY_P}.tar.gz cd ${S} epatch ${FILESDIR}/pyrex-0.9.1.1-gentoo.patch } src_install() { mydoc="CHANGES.txt INSTALL.txt README.txt USAGE.txt" distutils_src_install dodir /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/ }