From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45708) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iu0oe-0007FX-Tw for guix-patches@gnu.org; Tue, 21 Jan 2020 16:12:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iu0oc-00056N-AG for guix-patches@gnu.org; Tue, 21 Jan 2020 16:12:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42596) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iu0oc-00056H-7R for guix-patches@gnu.org; Tue, 21 Jan 2020 16:12:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iu0oc-0002UK-27 for guix-patches@gnu.org; Tue, 21 Jan 2020 16:12:02 -0500 Subject: [bug#39228] [PATCH] gnu: Add libvnc. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45595) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iu0nj-0007CW-0p for guix-patches@gnu.org; Tue, 21 Jan 2020 16:11:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iu0nf-0004gG-5y for guix-patches@gnu.org; Tue, 21 Jan 2020 16:11:06 -0500 Received: from mail-out.m-online.net ([212.18.0.10]:44829) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iu0ne-0004fB-Pp for guix-patches@gnu.org; Tue, 21 Jan 2020 16:11:03 -0500 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 482Lmh2Httz1rVvq for ; Tue, 21 Jan 2020 22:11:00 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 482Lmh1Tg1z1qwXm for ; Tue, 21 Jan 2020 22:11:00 +0100 (CET) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id P3m8W0PwQ5Uz for ; Tue, 21 Jan 2020 22:10:58 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-188-174-57-35.dynamic.mnet-online.de [188.174.57.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Tue, 21 Jan 2020 22:10:58 +0100 (CET) Received: from thisbe.fritz.box (unknown [192.168.110.24]) by hermia.goebel-consult.de (Postfix) with ESMTP id F1D626007C for ; Tue, 21 Jan 2020 22:10:59 +0100 (CET) From: Hartmut Goebel Date: Tue, 21 Jan 2020 22:10:56 +0100 Message-Id: <20200121211056.7192-1-h.goebel@crazy-compilers.com> 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: 39228@debbugs.gnu.org * gnu/packages/libvnc.scm: New file. * gnu/lokal.mk: Add it. --- gnu/local.mk | 1 + gnu/packages/libvnc.scm | 63 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 gnu/packages/libvnc.scm diff --git a/gnu/local.mk b/gnu/local.mk index 286bcb67dd..edc3dda97e 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -311,6 +311,7 @@ GNU_SYSTEM_MODULES =3D \ %D%/packages/libunistring.scm \ %D%/packages/libusb.scm \ %D%/packages/libunwind.scm \ + %D%/packages/libvnc.scm \ %D%/packages/lighting.scm \ %D%/packages/linux.scm \ %D%/packages/lirc.scm \ diff --git a/gnu/packages/libvnc.scm b/gnu/packages/libvnc.scm new file mode 100644 index 0000000000..74a62c2483 --- /dev/null +++ b/gnu/packages/libvnc.scm @@ -0,0 +1,63 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2017, 2020 Hartmut Goebel +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (a= t +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages libvnc) + #:use-module (guix build-system cmake) + #:use-module (guix git-download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (gnu packages) + #:use-module (gnu packages compression) + #:use-module (gnu packages gnupg) + #:use-module (gnu packages image) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages sdl) + #:use-module (gnu packages tls)) + +(define-public libvnc + (package + (name "libvnc") + (version "0.9.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/LibVNC/libvncserver.git") + (commit (string-append "LibVNCServer-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1226hb179l914919f5nm2mlf8rhaarqbf48aa649p4rwmghyx9vm"))= )) + (build-system cmake-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("gnutls" ,gnutls) + ("libgcrypt" ,libgcrypt) + ("libjpeg" ,libjpeg) + ("libpng" ,libpng) + ("lzo" ,lzo) + ("sdl2" ,sdl2))) + (home-page "https://libvnc.github.io/") + (synopsis "Cross-platform C libraries for implementing VNC server or +client") + (description "This package provides @code{LibVNCServer} and +@code{LibVNCClient}. These are cross-platform C libraries that allow yo= u to +easily implement VNC server or client functionality in your program.") + (license ;; GPL for programs, FDL for documentation + (list license:gpl2+ license:fdl1.2+)))) --=20 2.21.1