aboutsummaryrefslogtreecommitdiff
blob: 09e94d18d630881fec7bd076b948549517321dba (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
45
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"
inherit qt4-build-edge

DESCRIPTION="The Declarative module for the Qt toolkit"
SLOT="4"
KEYWORDS=""
IUSE="private-headers"

DEPEND="~x11-libs/qt-core-${PV}[stable-branch=]
	~x11-libs/qt-gui-${PV}[stable-branch=]
	~x11-libs/qt-multimedia-${PV}[stable-branch=]
	~x11-libs/qt-script-${PV}[stable-branch=]
	~x11-libs/qt-sql-${PV}[stable-branch=]
	~x11-libs/qt-svg-${PV}[stable-branch=]	
	~x11-libs/qt-webkit-${PV}[stable-branch=]
	~x11-libs/qt-xmlpatterns-${PV}[stable-branch=]"

RDEPEND="${DEPEND}"

QCONFIG_ADD="declarative"

QT4_TARGET_DIRECTORIES="
	src/declarative
	tools/qml"
QT4_EXTRACT_DIRECTORIES="
	include/
	src/
	tools/"

src_configure() {
	myconf="${myconf} -declarative"
	qt4-build-edge_src_configure
}

src_install() {
	qt4-build-edge_src_install
	if use private-headers; then
		insinto ${QTHEADERDIR}/QtDeclarative/private
		find "${S}"/src/declarative/ -type f -name "*_p.h" -exec doins {} \;
	fi
}