diff options
author | Ben de Groot <yngwin@gentoo.org> | 2012-09-14 07:37:42 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2012-09-14 07:37:42 +0000 |
commit | f6867dc7abba3b9906c89d5e004de95d3c7f9fec (patch) | |
tree | ea516fa45254cc029797b3befc4b47cc1de7148f /x11-libs/qt-dbus | |
parent | Version bump. Drop qatomic-x32 patch applied upstream. Drop qpa useflag. (diff) | |
download | historical-f6867dc7abba3b9906c89d5e004de95d3c7f9fec.tar.gz historical-f6867dc7abba3b9906c89d5e004de95d3c7f9fec.tar.bz2 historical-f6867dc7abba3b9906c89d5e004de95d3c7f9fec.zip |
Version bump. Drop qatomic-x32 patch applied upstream. Drop qpa useflag.
Package-Manager: portage-2.2.0_alpha128/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/qt-dbus')
-rw-r--r-- | x11-libs/qt-dbus/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/x11-libs/qt-dbus/ChangeLog b/x11-libs/qt-dbus/ChangeLog index 9fbff64b1f71..757377f68806 100644 --- a/x11-libs/qt-dbus/ChangeLog +++ b/x11-libs/qt-dbus/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-dbus # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/ChangeLog,v 1.126 2012/07/19 20:53:58 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/ChangeLog,v 1.127 2012/09/14 07:37:42 yngwin Exp $ + +*qt-dbus-4.8.3 (14 Sep 2012) + + 14 Sep 2012; Ben de Groot <yngwin@gentoo.org> +qt-dbus-4.8.3.ebuild: + Version bump. Drop qatomic-x32 patch applied upstream. Drop qpa useflag. 19 Jul 2012; Markus Meier <maekke@gentoo.org> qt-dbus-4.8.2.ebuild: arm stable, bug #424625 diff --git a/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild b/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild new file mode 100644 index 000000000000..2ed84b786bd6 --- /dev/null +++ b/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild,v 1.1 2012/09/14 07:37:42 yngwin Exp $ + +EAPI=4 + +inherit qt4-build + +DESCRIPTION="The DBus module for the Qt toolkit" +SLOT="4" +if [[ ${QT4_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +fi +IUSE="" + +DEPEND=" + >=sys-apps/dbus-1.2 + ~x11-libs/qt-core-${PV}[aqua=,c++0x=,debug=] +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-4.7-qdbusintegrator-no-const.patch" +) + +pkg_setup() { + QT4_TARGET_DIRECTORIES=" + src/dbus + tools/qdbus/qdbus + tools/qdbus/qdbusxml2cpp + tools/qdbus/qdbuscpp2xml" + + QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} + include/QtCore + include/QtDBus + include/QtXml + src/corelib + src/xml" + + QCONFIG_ADD="dbus dbus-linked" + QCONFIG_DEFINE="QT_DBUS" + + qt4-build_pkg_setup +} + +src_configure() { + myconf+=" -dbus-linked" + + qt4-build_src_configure +} |