From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 01/13] gnu: kde-frameworks: Add phonon. Date: Sat, 13 Aug 2016 14:19:19 +0200 Message-ID: <20160813121931.20071-2-david@craven.ch> References: <20160813121931.20071-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51382) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYXvN-0001R9-48 for guix-devel@gnu.org; Sat, 13 Aug 2016 08:20:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bYXvG-0006Rr-Ee for guix-devel@gnu.org; Sat, 13 Aug 2016 08:20:24 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:54661) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYXvF-0006QR-67 for guix-devel@gnu.org; Sat, 13 Aug 2016 08:20:18 -0400 In-Reply-To: <20160813121931.20071-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 | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index a679c64..875d94a 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -77,6 +77,34 @@ modules provided by CMake to find common software. In addition, it provides common build settings used in software produced by the KDE community.") (license license:bsd-3))) +(define-public phonon + (package + (name "phonon") + (version "4.9.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/phonon" + "/" version "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("qtbase" ,qtbase))) + (arguments + `(#:configure-flags + '("-DCMAKE_CXX_FLAGS=-fPIC" + "-DPHONON_BUILD_PHONON4QT5=ON"))) + (home-page "https://phonon.kde.org") + (synopsis "KDE's multimedia library") + (description "KDE's multimedia library.") + (license license:lgpl2.1+))) + + ;; Tier 1 ;; ;; Tier 1 frameworks depend only on Qt (and possibly a small number of other -- 2.9.0