blob: 1a6d2d8f313c940353b8194061c97b2c968687ef (
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
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/turbogears/turbogears-1.0.5.ebuild,v 1.2 2008/07/02 13:19:09 mr_bones_ Exp $
NEED_PYTHON=2.4
inherit distutils
KEYWORDS="~x86"
MY_PN=TurboGears
MY_P=${MY_PN}-${PV}
DESCRIPTION="The rapid web development meta-framework you've been looking for."
HOMEPAGE="http://www.turbogears.org/"
SRC_URI="http://files.turbogears.org/eggs/${MY_P}.zip"
LICENSE="MIT"
SLOT="0"
IUSE="test"
RDEPEND=">=dev-python/turbojson-1.1.3
>=dev-python/turbocheetah-1.0
>=dev-python/turbokid-1.0.4
=dev-python/cherrypy-2.3*
>=dev-python/simplejson-1.3
>=dev-python/pastescript-0.9.7
>=dev-python/formencode-0.7.1
>=dev-python/ruledispatch-0.5_pre2306
>=dev-python/decoratortools-1.4
>=dev-python/configobj-4.3.2
|| ( =dev-lang/python-2.4*
( =dev-lang/python-2.5* >=dev-python/cheetah-2.0_rc7-r1 ) )
|| ( =dev-lang/python-2.5*
( =dev-lang/python-2.4* >=dev-python/celementtree-1.0.5 ) )
>=dev-python/sqlobject-0.7
test? ( >=dev-python/nose-0.9.1 >=dev-python/sqlalchemy-0.3.3
|| ( =dev-lang/python-2.5*
( =dev-lang/python-2.4* dev-python/pysqlite ) ) )
>=dev-python/genshi-0.3.6"
DEPEND="${RDEPEND}
app-arch/zip
>=dev-python/setuptools-0.6_rc5"
S="${WORKDIR}/${MY_P}"
DOCS="CHANGELOG.txt CONTRIBUTORS.txt"
src_test() {
#I had this fail if pylons is emerged: can't import turbogears config
#pythonhead http://trac.turbogears.org/ticket/1774
PYTHONPATH=. "${python}" setup.py test || die "tests failed"
}
pkg_postinst() {
elog "While not directly depending on them, TurboGears works with/integrates"
elog "the following packages:"
elog " - dev-python/elixir"
elog " - dev-python/sqlalchemy (already installed when built with tests enabled)"
elog " - dev-python/tg-widgets-lightbox"
elog " - dev-python/tg-widgets-scriptaculous"
}
|