blob: 4babc7607e2600dc5d4c77860830af26facb9ec8 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.0.6.ebuild,v 1.1 2011/09/06 12:42:16 scarabeus Exp $
EAPI=3
PYTHON_DEPEND="2:2.5"
inherit python versionator cmake-utils
MY_PV=$(replace_version_separator '_' '~')
MY_P=${PN}-${MY_PV}
DESCRIPTION="A tool for creating Python bindings for C++ libraries"
HOMEPAGE="http://www.pyside.org/"
SRC_URI="http://www.pyside.org/files/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug test"
DEPEND=">=dev-python/apiextractor-0.10.6
>=dev-python/generatorrunner-0.6.12
>=x11-libs/qt-core-4.7.0"
RDEPEND="${DEPEND}
!dev-python/boostpythongenerator"
PATCHES=( "${FILESDIR}/${P}-fix-pkgconfig.patch" )
DOCS=( ChangeLog )
S=${WORKDIR}/${MY_P}
pkg_setup() {
python_set_active_version 2
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_build test TESTS)
)
cmake-utils_src_configure
}
|