From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 22/26] gnu: kde-frameworks: Add modemmanager-qt. Date: Mon, 8 Aug 2016 13:54:20 +0200 Message-ID: <20160808115424.13372-23-david@craven.ch> References: <20160808115424.13372-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWj9P-00015D-6k for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWj9O-0002zU-6y for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:23 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:46800) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWj9M-0002ii-Vo for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:22 -0400 In-Reply-To: <20160808115424.13372-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: David Craven * gnu/packages/kde-frameworks.scm (modemmanager-qt): New variable. Co-authored-by: Hartmut Goebel --- gnu/packages/kde-frameworks.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index b426e75..3fbc7bf 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -27,6 +27,7 @@ #:use-module (guix utils) #:use-module (gnu packages admin) #:use-module (gnu packages compression) + #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages pkg-config) @@ -816,6 +817,42 @@ lower level classes for interaction with the X Windowing System.") ;; the lgpl2.1. Some source files are under non-copyleft licenses. (license license:lgpl2.1+))) +(define-public modemmanager-qt + (package + (name "modemmanager-qt") + (version "5.24.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("dbus" ,dbus) + ("pkg-config" ,pkg-config))) + (inputs + `(("modem-manager", modem-manager) + ("qtbase" ,qtbase))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* _ + (setenv "DBUS_FATAL_WARNINGS" "0") + (zero? (system* "dbus-launch" "ctest" "."))))))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Qt wrapper for ModemManager DBus API") + (description "ModemManagerQt provides access to all ModemManager features +exposed on DBus. It allows you to manage modem devices and access to +information available for your modem devices, like signal, location and +messages.") + (license license:lgpl2.1+))) + (define-public oxygen-icons (package (name "oxygen-icons") -- 2.9.0