blob: 91f49a2ff1b2ee4f969c4d9bd25ed15c57e700ff (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/cherrypy-2.2.1-r2.ebuild,v 1.2 2008/01/09 14:55:42 armin76 Exp $
inherit eutils distutils
MY_P=CherryPy-${PV}
DESCRIPTION="CherryPy is a pythonic, object-oriented web development framework."
SRC_URI="http://download.cherrypy.org/cherrypy/${PV}/${MY_P}.tar.gz"
HOMEPAGE="http://www.cherrypy.org/"
IUSE="doc"
SLOT="0"
KEYWORDS="~amd64 ia64 ~ppc x86"
LICENSE="BSD"
DEPEND="dev-python/setuptools"
RDEPEND=""
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-py2.5.patch
epatch "${FILESDIR}"/${P}-invalidsession.patch
sed -i \
-e '/raw_input/d' \
cherrypy/test/test.py || die "sed failed"
sed -i \
-e 's/"cherrypy.tutorial",//' \
-e "/('cherrypy\/tutorial',/, /),/d" \
-e 's/distutils.core/setuptools/' \
setup.py || die "sed failed"
}
src_install() {
distutils_src_install
if use doc ; then
insinto /usr/share/doc/${PF}
doins -r cherrypy/tutorial
fi
}
src_test() {
PYTHONPATH=. "${python}" cherrypy/test/test.py || die "test failed"
}
|