diff options
author | Johannes Huber <johu@gentoo.org> | 2014-08-08 15:01:35 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2014-08-08 15:01:35 +0000 |
commit | 526dcfbfa5be47d8d60f46ba09fe01abbb7520ed (patch) | |
tree | ad4cc4197eb5679b8eada06a1c53f55748dffc0b /kde-misc | |
parent | Stable on alpha, bug 519014 (diff) | |
download | gentoo-2-526dcfbfa5be47d8d60f46ba09fe01abbb7520ed.tar.gz gentoo-2-526dcfbfa5be47d8d60f46ba09fe01abbb7520ed.tar.bz2 gentoo-2-526dcfbfa5be47d8d60f46ba09fe01abbb7520ed.zip |
Version bump.
(Portage version: 2.2.11-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF3CFD2BD)
Diffstat (limited to 'kde-misc')
-rw-r--r-- | kde-misc/plasma-nm/ChangeLog | 8 | ||||
-rw-r--r-- | kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch | 20 | ||||
-rw-r--r-- | kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild | 50 |
3 files changed, 77 insertions, 1 deletions
diff --git a/kde-misc/plasma-nm/ChangeLog b/kde-misc/plasma-nm/ChangeLog index ef36d4d155e0..07b1ed92dc74 100644 --- a/kde-misc/plasma-nm/ChangeLog +++ b/kde-misc/plasma-nm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-misc/plasma-nm # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/plasma-nm/ChangeLog,v 1.10 2014/04/13 08:36:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/plasma-nm/ChangeLog,v 1.11 2014/08/08 15:01:35 johu Exp $ + +*plasma-nm-0.9.3.4 (08 Aug 2014) + + 08 Aug 2014; Johannes Huber <johu@gentoo.org> + +files/plasma-nm-0.9.3.4-missing-include.patch, +plasma-nm-0.9.3.4.ebuild: + Version bump. 13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> plasma-nm-0.9.3.3.ebuild: Stable for x86, wrt bug #507526 diff --git a/kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch b/kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch new file mode 100644 index 000000000000..41f5783f90a6 --- /dev/null +++ b/kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch @@ -0,0 +1,20 @@ +commit 992a1826f870e8c095414351e2e9dcc044145786 +Author: Jan Grulich <jgrulich@redhat.com> +Date: Fri Aug 8 14:59:32 2014 +0200 + + Add missing include to fix build on some systems + + BUG:338124 + +diff --git a/vpn/openvpn/openvpn.h b/vpn/openvpn/openvpn.h +index 64c30e4..bc3f2fb 100644 +--- a/vpn/openvpn/openvpn.h ++++ b/vpn/openvpn/openvpn.h +@@ -26,6 +26,7 @@ + + #include "vpnuiplugin.h" + ++#include <QTextStream> + #include <QVariant> + + class OpenVpnUiPlugin : public VpnUiPlugin diff --git a/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild b/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild new file mode 100644 index 000000000000..f27774c0172d --- /dev/null +++ b/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild,v 1.1 2014/08/08 15:01:35 johu Exp $ + +EAPI=5 + +KDE_LINGUAS="ar bs ca ca@valencia cs da de el en_GB eo es et fa fi fr ga gl hr +hu is it ja km lt lv mai mr ms nb nds nl nn pa pl pt pt_BR ro ru sk sl sr +sr@ijekavian sr@ijekavianlatin sr@latin sv th tr ug uk zh_CN zh_TW" +DECLARATIVE_REQUIRED="always" +inherit kde4-base + +if [[ ${KDE_BUILD_TYPE} != live ]]; then + KEYWORDS="~amd64 ~x86" + SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" +else + KEYWORDS="" +fi + +DESCRIPTION="KDE Plasma applet for NetworkManager" +HOMEPAGE="https://projects.kde.org/projects/playground/network/plasma-nm" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="4" +IUSE="debug modemmanager openconnect" + +DEPEND=" + >=net-libs/libnm-qt-0.9.8.1[modemmanager?] + net-misc/mobile-broadband-provider-info + >=net-misc/networkmanager-0.9.8.0 + modemmanager? ( >=net-libs/libmm-qt-1.0.0 ) + openconnect? ( + net-misc/networkmanager-openconnect + net-misc/openconnect + ) +" +RDEPEND="${DEPEND} + !kde-misc/networkmanagement +" + +PATCHES=( "${FILESDIR}/${P}-missing-include.patch" ) + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use !modemmanager DISABLE_MODEMMANAGER_SUPPORT) + $(cmake-utils_use_find_package openconnect OpenConnect) + ) + + kde4-base_src_configure +} |