From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFKhe-0002ew-09 for guix-patches@gnu.org; Wed, 24 Oct 2018 11:04:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gFKhZ-0001gk-Dn for guix-patches@gnu.org; Wed, 24 Oct 2018 11:04:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36130) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gFKhV-0001fo-TE for guix-patches@gnu.org; Wed, 24 Oct 2018 11:04:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gFKhV-0003l1-Nt for guix-patches@gnu.org; Wed, 24 Oct 2018 11:04:01 -0400 Subject: [bug#33138] [PATCH] gnu: Add pdfpc. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56218) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFKgc-00026a-QJ for guix-patches@gnu.org; Wed, 24 Oct 2018 11:03:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gFKgY-00018y-C9 for guix-patches@gnu.org; Wed, 24 Oct 2018 11:03:06 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21133) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gFKgX-00017n-L7 for guix-patches@gnu.org; Wed, 24 Oct 2018 11:03:02 -0400 From: Ricardo Wurmus Message-ID: <20181024144733.8946-1-rekado@elephly.net> Date: Wed, 24 Oct 2018 16:47:33 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33138@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/pdf.scm (pdfpc): New variable. --- gnu/packages/pdf.scm | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 57a5e1c0e..e71f814b8 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013, 2015, 2016 Andreas Enge ;;; Copyright =C2=A9 2014 Mark H Weaver -;;; Copyright =C2=A9 2014, 2015, 2016 Ricardo Wurmus +;;; Copyright =C2=A9 2014, 2015, 2016, 2018 Ricardo Wurmus ;;; Copyright =C2=A9 2015 Paul van der Walt ;;; Copyright =C2=A9 2016 Roel Janssen ;;; Copyright =C2=A9 2016 Nils Gillmann @@ -34,6 +34,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) @@ -58,6 +59,7 @@ #:use-module (gnu packages glib) #:use-module (gnu packages gnome) #:use-module (gnu packages gnupg) + #:use-module (gnu packages gstreamer) #:use-module (gnu packages gtk) #:use-module (gnu packages image) #:use-module (gnu packages imagemagick) @@ -1008,3 +1010,41 @@ Support some GNU grep options as file name output, p= age number output, optional case insensitivity, count occurrences, color highlights and searc= h in multiple files.") (license license:gpl2+))) + +(define-public pdfpc + (package + (name "pdfpc") + (version "4.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pdfpc/pdfpc.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rmsrpf5vlqhnyyrhq8apndny88ld2qvfjx6258653pqbimv7mx5")))) + (build-system cmake-build-system) + (arguments '(#:tests? #f)) ; no test target + (inputs + `(("cairo" ,cairo) + ("gtk+" ,gtk+) + ("gstreamer" ,gstreamer) + ("gst-plugins-base" ,gst-plugins-base) + ("libgee" ,libgee) + ("poppler" ,poppler) + ("pango" ,pango) + ("vala" ,vala))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://pdfpc.github.io/") + (synopsis "Presenter console with multi-monitor support for PDF files"= ) + (description + "pdfpc is a presentation viewer application which uses multi-monitor +output to provide meta information to the speaker during the presentation.= It +is able to show a normal presentation window on one screen, while showing = a +more sophisticated overview on the other one providing information like a +picture of the next slide, as well as the left over time till the end of t= he +presentation. The input files processed by pdfpc are PDF documents.") + (license license:gpl2+))) --=20 2.19.0