You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/shiboken/shiboken-1.1.0-r2.ebuild

84 lines
1.9 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.1.0-r2.ebuild,v 1.1 2012/03/11 16:53:24 jlec Exp $
EAPI=4
CMAKE_IN_SOURCE_BUILD="1"
PYTHON_DEPEND="2:2.6 3:3.2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 2.5 3.1 *-jython 2.7-pypy-*"
inherit multilib cmake-utils python
DESCRIPTION="A tool for creating Python bindings for C++ libraries"
HOMEPAGE="http://www.pyside.org/"
SRC_URI="http://www.pyside.org/files/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
>=dev-python/apiextractor-0.10.10
>=dev-python/generatorrunner-0.6.16
>=x11-libs/qt-core-4.7.0:4
"
DEPEND="${RDEPEND}"
DOCS=( ChangeLog )
src_prepare() {
# Fix inconsistent naming of libshiboken.so and ShibokenConfig.cmake,
# caused by the usage of a different version suffix with python >= 3.2
sed -i -e "/get_config_var('SOABI')/d" \
cmake/Modules/FindPython3InterpWithDebug.cmake || die
python_src_prepare
}
src_configure() {
configuration() {
local mycmakeargs=(
$(cmake-utils_use_build test TESTS)
-DPYTHON_SUFFIX=-$(PYTHON)
-DPYTHON_EXECUTABLE=$(PYTHON -a)
)
if [[ $(python_get_version -l --major) == 3 ]]; then
mycmakeargs+=(
-DUSE_PYTHON3=ON
-DPYTHON3_INCLUDE_DIR="$(python_get_includedir)"
-DPYTHON3_LIBRARY="$(python_get_library)"
)
fi
CMAKE_USE_DIR="${BUILDDIR}" cmake-utils_src_configure
}
python_execute_function -s configuration
}
src_compile() {
compilation() {
CMAKE_USE_DIR="${BUILDDIR}" cmake-utils_src_make
}
python_execute_function -s compilation
}
src_test() {
testing() {
CMAKE_USE_DIR="${BUILDDIR}" cmake-utils_src_test
}
python_execute_function -s testing
}
src_install() {
installation() {
CMAKE_USE_DIR="${BUILDDIR}" cmake-utils_src_install
mv "${ED}"usr/$(get_libdir)/pkgconfig/${PN}{,-python${PYTHON_ABI}}.pc || die
}
python_execute_function -s installation
}