blob: 9f9f404c2bdbb1b498d7d36a6ab32687b52a33c5 (
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: /var/cvsroot/gentoo-x86/x11-libs/qt-declarative/qt-declarative-4.7.0.ebuild,v 1.1 2010/09/21 14:44:04 tampakrap Exp $
EAPI="2"
inherit qt4-build
DESCRIPTION="The Declarative module for the Qt toolkit"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="private-headers"
DEPEND="~x11-libs/qt-core-${PV}
~x11-libs/qt-gui-${PV}
~x11-libs/qt-multimedia-${PV}
~x11-libs/qt-opengl-${PV}
~x11-libs/qt-script-${PV}
~x11-libs/qt-sql-${PV}
~x11-libs/qt-svg-${PV}
~x11-libs/qt-webkit-${PV}
~x11-libs/qt-xmlpatterns-${PV}"
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_src_configure
}
src_install() {
qt4-build_src_install
if use private-headers; then
insinto ${QTHEADERDIR}/QtDeclarative/private
find "${S}"/src/declarative/ -type f -name "*_p.h" -exec doins {} \;
fi
}
|