| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/generatorrunner-0.6.16.ebuild,v 1.4 2012/04/22 12:15:57 maekke Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit cmake-utils
|
| 8 |
|
| 9 |
DESCRIPTION="A tool to control bindings generation"
|
| 10 |
HOMEPAGE="http://www.pyside.org/"
|
| 11 |
SRC_URI="http://www.pyside.org/files/${P}.tar.bz2"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="amd64 x86"
|
| 16 |
IUSE="debug test"
|
| 17 |
|
| 18 |
QT_PV="4.7.0:4"
|
| 19 |
|
| 20 |
RDEPEND="
|
| 21 |
>=dev-python/apiextractor-0.10.10
|
| 22 |
>=x11-libs/qt-core-${QT_PV}
|
| 23 |
"
|
| 24 |
DEPEND="${RDEPEND}
|
| 25 |
test? ( >=x11-libs/qt-test-${QT_PV} )
|
| 26 |
"
|
| 27 |
|
| 28 |
DOCS=( AUTHORS ChangeLog )
|
| 29 |
|
| 30 |
src_configure() {
|
| 31 |
local mycmakeargs=(
|
| 32 |
$(cmake-utils_use_build test TESTS)
|
| 33 |
)
|
| 34 |
cmake-utils_src_configure
|
| 35 |
}
|