dev-python/dbus-python: Remove redundant configure options

This commit is contained in:
Michał Górny
2018-07-24 12:41:16 +02:00
parent 6fa1cc47a7
commit 3e72daeef9

View File

@@ -44,20 +44,13 @@ src_prepare() {
src_configure() {
configuring() {
local PYTHON_CONFIG
python_export PYTHON_CONFIG
# epydoc is python2-only, bug #447642
local apidocs=--disable-api-docs
[[ ${EPYTHON/.*} = "python2" ]] && apidocs=$(use_enable doc api-docs)
econf \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--disable-html-docs \
${apidocs} \
PYTHON_INCLUDES="$(${PYTHON_CONFIG} --includes)" \
PYTHON_LIBS="$(${PYTHON_CONFIG} --ldflags)"
# configure assumes that ${PYTHON}-config executable exists :/
${apidocs}
}
python_foreach_impl run_in_build_dir configuring
}