diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:28:21 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:28:21 +0000 |
commit | 5bad328fd5ad95e13b00679950bad118286f48e3 (patch) | |
tree | 274be03e1c5a0d038c845945549d2471bd9b443d /x11-libs/qt-demo | |
parent | Remove stray comment, thanks to johu for noticing that. (diff) | |
download | historical-5bad328fd5ad95e13b00679950bad118286f48e3.tar.gz historical-5bad328fd5ad95e13b00679950bad118286f48e3.tar.bz2 historical-5bad328fd5ad95e13b00679950bad118286f48e3.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha107/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/qt-demo')
-rw-r--r-- | x11-libs/qt-demo/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-demo/qt-demo-4.8.2.ebuild | 114 |
2 files changed, 120 insertions, 1 deletions
diff --git a/x11-libs/qt-demo/ChangeLog b/x11-libs/qt-demo/ChangeLog index 0a59aebbf625..3b460ce2ec5b 100644 --- a/x11-libs/qt-demo/ChangeLog +++ b/x11-libs/qt-demo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-demo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-demo/ChangeLog,v 1.90 2012/05/20 13:06:29 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-demo/ChangeLog,v 1.91 2012/05/22 15:21:28 pesa Exp $ + +*qt-demo-4.8.2 (22 May 2012) + + 22 May 2012; Davide Pesavento <pesa@gentoo.org> +qt-demo-4.8.2.ebuild: + Version bump. 20 May 2012; Agostino Sarubbo <ago@gentoo.org> qt-demo-4.8.1-r1.ebuild: Stable for x86, wrt bug #414241 diff --git a/x11-libs/qt-demo/qt-demo-4.8.2.ebuild b/x11-libs/qt-demo/qt-demo-4.8.2.ebuild new file mode 100644 index 000000000000..72022dddf2e4 --- /dev/null +++ b/x11-libs/qt-demo/qt-demo-4.8.2.ebuild @@ -0,0 +1,114 @@ +# Copyright 1999-2012 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.8.2.ebuild,v 1.1 2012/05/22 15:21:28 pesa Exp $ + +EAPI=4 + +inherit qt4-build + +DESCRIPTION="Demonstration module and examples for the Qt toolkit" +SLOT="4" +if [[ ${QT4_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos" +fi +IUSE="dbus declarative kde multimedia opengl openvg qt3support webkit xmlpatterns" + +DEPEND=" + ~x11-libs/qt-assistant-${PV}:4[aqua=,c++0x=,debug=,qpa=] + ~x11-libs/qt-core-${PV}:4[aqua=,c++0x=,debug=,qpa=,qt3support?] + ~x11-libs/qt-gui-${PV}:4[aqua=,c++0x=,debug=,qpa=,qt3support?] + ~x11-libs/qt-script-${PV}:4[aqua=,c++0x=,debug=,qpa=] + ~x11-libs/qt-sql-${PV}:4[aqua=,c++0x=,debug=,qpa=,qt3support?] + ~x11-libs/qt-svg-${PV}:4[aqua=,c++0x=,debug=,qpa=] + ~x11-libs/qt-test-${PV}:4[aqua=,c++0x=,debug=,qpa=] + dbus? ( ~x11-libs/qt-dbus-${PV}:4[aqua=,c++0x=,debug=,qpa=] ) + declarative? ( ~x11-libs/qt-declarative-${PV}:4[aqua=,c++0x=,debug=,qpa=,webkit?] ) + kde? ( media-libs/phonon[aqua=] ) + !kde? ( || ( + ~x11-libs/qt-phonon-${PV}:4[aqua=,c++0x=,debug=,qpa=] + media-libs/phonon[aqua=] + ) ) + multimedia? ( ~x11-libs/qt-multimedia-${PV}:4[aqua=,c++0x=,debug=,qpa=] ) + opengl? ( ~x11-libs/qt-opengl-${PV}:4[aqua=,c++0x=,debug=,qpa=,qt3support?] ) + openvg? ( ~x11-libs/qt-openvg-${PV}:4[aqua=,c++0x=,debug=,qpa=,qt3support?] ) + qt3support? ( ~x11-libs/qt-qt3support-${PV}:4[aqua=,c++0x=,debug=,qpa=] ) + webkit? ( ~x11-libs/qt-webkit-${PV}:4[aqua=,c++0x=,debug=,qpa=] ) + xmlpatterns? ( ~x11-libs/qt-xmlpatterns-${PV}:4[aqua=,c++0x=,debug=,qpa=] ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-4.6-plugandpaint.patch" +) + +pkg_setup() { + QT4_TARGET_DIRECTORIES=" + demos + examples" + QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} + doc/src/images + src + include + tools" + + qt4-build_pkg_setup +} + +src_prepare() { + qt4-build_src_prepare + + # Array mapping USE flags to subdirs + local flags_subdirs_map=( + 'dbus' + 'declarative:declarative' + 'multimedia:spectrum' + 'opengl:boxes|glhypnotizer' + 'openvg' + 'webkit:browser' + 'xmlpatterns' + ) + + # Disable unwanted examples/demos + for flag in "${flags_subdirs_map[@]}"; do + if ! use ${flag%:*}; then + einfo "Disabling ${flag%:*} examples" + sed -i -e "/SUBDIRS += ${flag%:*}/d" \ + examples/examples.pro || die + + if [[ ${flag} == *:* ]]; then + einfo "Disabling ${flag%:*} demos" + sed -i -re "/SUBDIRS \+= demos_(${flag#*:})/d" \ + demos/demos.pro || die + fi + fi + done + + if ! use qt3support; then + einfo "Disabling qt3support examples" + sed -i -e '/QT_CONFIG, qt3support/d' \ + examples/graphicsview/graphicsview.pro || die + fi +} + +src_configure() { + myconf+=" + $(qt_use dbus) + $(qt_use declarative) + $(qt_use multimedia) + $(qt_use opengl) + $(qt_use openvg) + $(qt_use qt3support) + $(qt_use webkit) + $(qt_use xmlpatterns)" + + qt4-build_src_configure +} + +src_install() { + insinto "${QTDOCDIR#${EPREFIX}}"/src + doins -r doc/src/images + + qt4-build_src_install +} |