blob: 56d36f96f125a65a9c193d2c4ed96b9ee747ecd5 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.14 2003/09/09 22:50:02 liquidx Exp $
#
# Author: Jon Nelson <jnelson@gentoo.org>
# Current Maintainer: Alastair Tse <liquidx@gentoo.org>
#
# The distutils eclass is designed to allow easier installation of
# distutils-based python modules and their incorporation into
# the Gentoo Linux system.
#
# - Features:
# distutils_src_compile() - does python setup.py build
# distutils_src_install() - does python setup.py install and install docs
# distutils_python_version() - sets PYVER/PYVER_MAJOR/PYVER_MINOR
# distutils_python_tkinter() - checks for tkinter support in python
#
# - Variables:
# PYTHON_SLOT_VERSION - for Zope support
# DOCS - additional DOCS
ECLASS=distutils
INHERITED="$INHERITED $ECLASS"
# This helps make it possible to add extensions to python slots.
# Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION.
if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then
newdepend "=dev-lang/python-2.1*"
python="python2.1"
else
newdepend "virtual/python"
python="python"
fi
distutils_src_compile() {
${python} setup.py build ${@} || die "compilation failed"
}
distutils_src_install() {
${python} setup.py install --root=${D} ${@} || die
dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS
dodoc CONTRIBUTORS LICENSE COPYING*
dodoc Change* MANIFEST* README*
[ -n "${DOCS}" ] && dodoc ${DOCS}
# deprecated! please use DOCS instead.
[ -n "${mydoc}" ] && dodoc ${mydoc}
}
# e.g. insinto ${ROOT}/usr/include/python${PYVER}
distutils_python_version() {
local tmpstr="$(${python} -V 2>&1 )"
export PYVER_ALL="${tmpstr#Python }"
export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1)
export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2)
export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-)
export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}"
}
# checks for if tkinter support is compiled into python
distutils_python_tkinter() {
if ! python -c "import Tkinter" >/dev/null 2>&1; then
eerror "You need to recompile python with Tkinter support."
eerror "That means: USE='tcltk' emerge python"
echo
die "missing tkinter support with installed python"
fi
}
EXPORT_FUNCTIONS src_compile src_install
|