From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nils Gillmann Subject: [PATCH 4] gnunet-gtk-svn (was Re: [PATCH] gnunet.scm -> various changes (description update, adds gnunet-svn, gnunet-gtk-svn, gnurl)) Date: Mon, 28 Mar 2016 18:17:05 +0200 Message-ID: <87io06r30e.fsf@grrlz.net> References: <874mcd2cl2.fsf@grrlz.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akZr1-00069B-Rs for guix-devel@gnu.org; Mon, 28 Mar 2016 12:17:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1akZqy-0007Ys-L1 for guix-devel@gnu.org; Mon, 28 Mar 2016 12:17:23 -0400 Received: from plane.gmane.org ([80.91.229.3]:46458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akZqy-0007YI-ES for guix-devel@gnu.org; Mon, 28 Mar 2016 12:17:20 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1akZqx-0001gk-0q for guix-devel@gnu.org; Mon, 28 Mar 2016 18:17:19 +0200 Received: from xd9bb9273.dyn.telefonica.de ([217.187.146.115]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 28 Mar 2016 18:17:19 +0200 Received: from niasterisk by xd9bb9273.dyn.telefonica.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 28 Mar 2016 18:17:19 +0200 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-gnunet-gtk-svn.patch >From 4633dc3484390fa6e399084336e73879066b1760 Mon Sep 17 00:00:00 2001 From: Nils Gillmann Date: Mon, 28 Mar 2016 18:10:12 +0200 Subject: [PATCH] gnu: Add gnunet-gtk-svn. * gnu/packages/gnunet.scm (gnunet-gtk-svn): New variable. Coauthored by Jookia. --- gnu/packages/gnunet.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index fe6ca14..fa55179 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -419,3 +419,49 @@ development purposes and keeping up with latest changes, the SVN version might be preferable until a new version is released.") (license license:gpl3+) (home-page "https://gnunet.org/"))) + +;; current WM related bug being traced: +;; #22985: using gnune-gtk with ratpoison (gnunet-fs in -gtk +;; nonfunctional) -> needs participation and input) +(define-public gnunet-gtk-svn + (package + (inherit gnunet-svn) + (name "gnunet-gtk-svn") + (version (package-version gnunet-svn)) + (source + (origin + (method svn-fetch) + (uri (svn-reference + (url "https://gnunet.org/svn/gnunet-gtk/") + (revision 36926))) + (file-name (string-append name "-" version "-checkout")) + (sha256 (base32 + "0kbxgfv08kh69vcrkvm23d2vggyww48h9cvgw4gdfs3i146zkfqb")))) + (arguments + `(#:configure-flags + (list "--without-libunique" + "--with-qrencode" + (string-append "--with-gnunet=" + (assoc-ref %build-inputs "gnunet-svn"))) + #:phases (modify-phases %standard-phases + (add-before 'configure 'bootstrap + (lambda _ + (zero? (system* "autoreconf" "-vfi"))))))) + (inputs + `(("gnunet-svn" ,gnunet-svn) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gnutls" ,gnutls) + ("libgcrypt" ,libgcrypt) + ("gtk+" ,gtk+) + ("libextractor" ,libextractor) + ("glade3" ,glade3) + ("qrencode" ,qrencode))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("libglade" ,libglade) + ("autoconf" ,autoconf) + ("gettext" ,gnu-gettext) + ("automake" ,automake) + ("libtool" ,libtool))) + (synopsis "Graphical front-end tools for GNUnet") + (home-page "https://gnunet.org"))) -- 2.7.3 --=-=-= Content-Type: text/plain -- ng personal contact: http://krosos.sdf.org EDN: https://wiki.c3d2.de/EDN --=-=-=--