blob: 6005935df7c87048d5f30a3855fb3fd93223a96f (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mako/mako-0.3.6.ebuild,v 1.4 2010/12/22 11:31:10 hwoarang Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
MY_P="Mako-${PV}"
DESCRIPTION="A Python templating language"
HOMEPAGE="http://www.makotemplates.org/ http://pypi.python.org/pypi/Mako"
SRC_URI="http://www.makotemplates.org/downloads/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE="doc test"
RDEPEND=">=dev-python/beaker-1.1
>=dev-python/markupsafe-0.9.2"
DEPEND="${RDEPEND}
dev-python/setuptools
test? ( dev-python/nose )"
S="${WORKDIR}/${MY_P}"
DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
src_prepare() {
distutils_src_prepare
2to3_conversion() {
[[ "${PYTHON_ABI}" == 2.* ]] && return
2to3-${PYTHON_ABI} -n -w --no-diffs mako
}
python_execute_function -s 2to3_conversion
}
src_test() {
testing() {
[[ "${PYTHON_ABI}" == 3.* ]] && return
PYTHONPATH="build/lib" nosetests
}
python_execute_function -s testing
}
src_install() {
distutils_src_install
if use doc; then
pushd doc > /dev/null
dohtml -r *.html *.js _static || die "Installation of documentation failed"
popd > /dev/null
fi
}
|