blob: 77f7b91512e63608fa8fefe9cb7b09d47f111490 (
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
46
47
48
49
50
51
52
53
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-demo/qt-demo-4.4.2.ebuild,v 1.5 2009/02/18 20:18:03 jer Exp $
EAPI="1"
inherit qt4-build
DESCRIPTION="Demonstration module of the Qt toolkit."
HOMEPAGE="http://www.trolltech.com/"
LICENSE="|| ( GPL-3 GPL-2 )"
SLOT="4"
KEYWORDS="amd64 hppa ~ppc ppc64 x86"
IUSE=""
DEPEND="
~x11-libs/qt-assistant-${PV}:${SLOT}
~x11-libs/qt-core-${PV}:${SLOT}
~x11-libs/qt-dbus-${PV}:${SLOT}
~x11-libs/qt-gui-${PV}:${SLOT}
~x11-libs/qt-opengl-${PV}:${SLOT}
~x11-libs/qt-phonon-${PV}:${SLOT}
~x11-libs/qt-qt3support-${PV}:${SLOT}
~x11-libs/qt-script-${PV}:${SLOT}
~x11-libs/qt-sql-${PV}:${SLOT}
~x11-libs/qt-svg-${PV}:${SLOT}
~x11-libs/qt-test-${PV}:${SLOT}
~x11-libs/qt-webkit-${PV}:${SLOT}
~x11-libs/qt-xmlpatterns-${PV}:${SLOT}
!<=x11-libs/qt-4.4.0_alpha:${SLOT}
"
RDEPEND="${DEPEND}"
QT4_TARGET_DIRECTORIES="demos
examples"
QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
doc/src/images"
src_compile() {
# Doesn't find qt-gui and fails linking
sed -e '/QT_BUILD_TREE/ s:=:+=:' \
-i "${S}"/examples/tools/plugandpaint/plugandpaint.pro \
|| die "Fixing plugandpaint example failed."
qt4-build_src_compile
}
src_install() {
insinto ${QTDOCDIR}/src
doins -r "${S}"/doc/src/images || die "Installing images failed."
qt4-build_src_install
}
|