blob: 1d6876a4545c4b7bd02ac108ce1964951b27f72a [file] [log] [blame]
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/markupsafe-0.15.ebuild,v 1.13 2012/05/09 00:11:59 aballier Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
MY_PN="MarkupSafe"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Implements a XML/HTML/XHTML Markup safe string for Python"
HOMEPAGE="http://pypi.python.org/pypi/MarkupSafe"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="*"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
set_global_options() {
if [[ "$(python_get_implementation)" = "CPython" ]]; then
DISTUTILS_GLOBAL_OPTIONS=("--with-speedups")
else
DISTUTILS_GLOBAL_OPTIONS=()
fi
}
distutils_src_compile_pre_hook() {
set_global_options
}
distutils_src_test_pre_hook() {
set_global_options
}
distutils_src_install_pre_hook() {
set_global_options
}
src_install() {
distutils_src_install
python_clean_installation_image
}