diff options
author | 2014-01-10 04:22:20 +0000 | |
---|---|---|
committer | 2014-01-10 04:22:20 +0000 | |
commit | 803efb3b1f3061a26772f670a2e44a59efbf3f3f (patch) | |
tree | 82f2adcff5045d9821efd3318efe2cacf46c43ea /kde-base/smokeqt | |
parent | 0.7.5 bump (diff) | |
download | gentoo-2-803efb3b1f3061a26772f670a2e44a59efbf3f3f.tar.gz gentoo-2-803efb3b1f3061a26772f670a2e44a59efbf3f3f.tar.bz2 gentoo-2-803efb3b1f3061a26772f670a2e44a59efbf3f3f.zip |
Bump KDE SC 4.11.5
(Portage version: 2.2.8/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 42618354)
Diffstat (limited to 'kde-base/smokeqt')
-rw-r--r-- | kde-base/smokeqt/ChangeLog | 9 | ||||
-rw-r--r-- | kde-base/smokeqt/smokeqt-4.11.5.ebuild | 53 |
2 files changed, 60 insertions, 2 deletions
diff --git a/kde-base/smokeqt/ChangeLog b/kde-base/smokeqt/ChangeLog index c23f84d7bda9..8e71cba45a5e 100644 --- a/kde-base/smokeqt/ChangeLog +++ b/kde-base/smokeqt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/smokeqt -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/smokeqt/ChangeLog,v 1.104 2013/12/18 19:57:39 johu Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smokeqt/ChangeLog,v 1.105 2014/01/10 04:22:07 creffett Exp $ + +*smokeqt-4.11.5 (10 Jan 2014) + + 10 Jan 2014; Chris Reffett <creffett@gentoo.org> +smokeqt-4.11.5.ebuild: + Bump KDE SC 4.11.5 *smokeqt-4.12.0 (18 Dec 2013) diff --git a/kde-base/smokeqt/smokeqt-4.11.5.ebuild b/kde-base/smokeqt/smokeqt-4.11.5.ebuild new file mode 100644 index 000000000000..01dd5a711bac --- /dev/null +++ b/kde-base/smokeqt/smokeqt-4.11.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smokeqt/smokeqt-4.11.5.ebuild,v 1.1 2014/01/10 04:22:07 creffett Exp $ + +EAPI=5 + +DECLARATIVE_REQUIRED="optional" +MULTIMEDIA_REQUIRED="optional" +QTHELP_REQUIRED="optional" +OPENGL_REQUIRED="optional" +KDE_REQUIRED="never" + +inherit kde4-base + +DESCRIPTION="Scripting Meta Object Kompiler Engine - Qt bindings" +KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug +phonon qimageblitz qscintilla qwt webkit" +HOMEPAGE="http://techbase.kde.org/Development/Languages/Smoke" + +# Maybe make more of Qt optional? +DEPEND=" + $(add_kdebase_dep smokegen) + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + || ( ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) <dev-qt/qtgui-4.8.5:4 ) + dev-qt/qtscript:4 + dev-qt/qtsql:4 + dev-qt/qtsvg:4 + dev-qt/qttest:4 + phonon? ( >=media-libs/phonon-4.4.3 ) + qimageblitz? ( >=media-libs/qimageblitz-0.0.4 ) + qscintilla? ( x11-libs/qscintilla:= ) + qwt? ( x11-libs/qwt:5[svg] ) + webkit? ( dev-qt/qtwebkit:4 ) +" +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -DDISABLE_Qt3Support=ON + -DWITH_QT3_SUPPORT=OFF + $(cmake-utils_use_disable declarative QtDeclarative) + $(cmake-utils_use_disable multimedia QtMultimedia) + $(cmake-utils_use_disable opengl QtOpenGL) + $(cmake-utils_use_with phonon) + $(cmake-utils_use_with qimageblitz QImageBlitz) + $(cmake-utils_use_with qscintilla QScintilla) + $(cmake-utils_use_disable qthelp QtHelp) + $(cmake-utils_use_disable qwt Qwt5) + $(cmake-utils_use_disable webkit QtWebKit) + ) + kde4-base_src_configure +} |