From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH] gnu: Add toxic (Need help with ncurses+libnotify not being found). Date: Sun, 21 Aug 2016 02:25:40 +0000 Message-ID: <871t1iuacb.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52899) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbISJ-00036H-5b for guix-devel@gnu.org; Sat, 20 Aug 2016 22:25:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bbISG-0001mR-Gb for guix-devel@gnu.org; Sat, 20 Aug 2016 22:25:46 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:60658 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbISG-0001mN-5c for guix-devel@gnu.org; Sat, 20 Aug 2016 22:25:44 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id e14c9097 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Sun, 21 Aug 2016 02:25:41 +0000 (UTC) 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 --=-=-= Content-Type: text/plain There are serious cosmetic improvements I need to to make on these patches, I am aware of this, but what I am asking help for is: I've tried for hours many ways to make toxic find "libnotify" and "ncursesw" ... It does not happen... setenv. substitute. ldflags. user_ldflags. cflags. user_cflags. nothing.. Can someone shed some light on this? --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-libtoxcore.patch Content-Transfer-Encoding: 8bit >From a5e87597d89988cd88bbac4de11a4cd6292f58ad Mon Sep 17 00:00:00 2001 From: ng0 Date: Sat, 20 Aug 2016 22:14:17 +0000 Subject: [PATCH 1/3] gnu: Add libtoxcore. * gnu/packages/messaging.scm (libtoxcore): New variable. --- gnu/packages/messaging.scm | 48 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index de9ac17..0c8bc3d 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2015 Ricardo Wurmus ;;; Copyright © 2015 Efraim Flashner +;;; Copyright © 2016 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -28,6 +29,7 @@ #:use-module (guix utils) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system python) @@ -35,6 +37,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages avahi) #:use-module (gnu packages check) + #:use-module (gnu packages crypto) #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages databases) #:use-module (gnu packages documentation) @@ -58,7 +61,9 @@ #:use-module (gnu packages admin) #:use-module (gnu packages linux) #:use-module (gnu packages tls) - #:use-module (gnu packages icu4c)) + #:use-module (gnu packages icu4c) + #:use-module (gnu packages video) + #:use-module (gnu packages xiph)) (define-public libotr (package @@ -492,4 +497,45 @@ transformation; audio and video conferences; file transfer; TLS, GPG and end-to-end encryption support; XML console.") (license gpl3+))) +(define-public libtoxcore + (let ((revision "1") + (commit "755f084e8720b349026c85afbad58954cb7ff1d4")) + (package + (name "libtoxcore") + (version (string-append "0.0.0" "-" + revision (string-take commit 8))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/irungentoo/toxcore.git") + (commit commit))) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "0ap1gvlyihnfivv235dbrgsxsiiz70bhlmlr5gn1027w3h5kqz8w")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ;; TODO: Add when test suite is capable of passing. + ;; ("check" ,check) + ("pkg-config" ,pkg-config))) + (inputs + `(("libsodium" ,libsodium) + ("opus" ,opus) + ("libvpx" ,libvpx))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'configure 'autoconf + (lambda _ + (zero? (system* "./autogen.sh"))))) + #:tests? #f)) ; FIXME: Tests require ip6-localhost in /etc/hosts + (synopsis "Library for the Tox encrypted messenger protocol") + (description + "C library implementation of the Tox encrypted messenger protocol.") + (license gpl3+) + (home-page "http://tox.chat")))) + ;;; messaging.scm ends here -- 2.9.3 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0002-gnu-Add-freealut.patch >From 97c2b1e9f6484c2ea5fefce5e651e592501b5d6d Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 21 Aug 2016 02:17:27 +0000 Subject: [PATCH 2/3] gnu: Add freealut. * gnu/packages/audio.scm (freealut): New variable. --- gnu/packages/audio.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index a214ef3..eb08e24 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1509,6 +1509,30 @@ buffers, and audio capture.") (home-page "http://kcat.strangesoft.net/openal.html") (license license:lgpl2.0+))) +(define-public freealut + (package + (name "freealut") + (version "1.1.0") + (source (origin + (method url-fetch) + ;; upstream url is dead + (uri (string-append + "http://pkgs.fedoraproject.org/repo/pkgs/" name "/" name "-" version + ".tar.gz" "/e089b28a0267faabdb6c079ee173664a/" name "-" version ".tar.gz")) + (sha256 + (base32 + "0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ; no check target + (inputs + `(("openal" ,openal))) + (synopsis "Free implementation of OpenAL's ALUT standard") + (description + "OpenAL Utility Toolkit") + (home-page "http://kcat.strangesoft.net/openal.html") + (license license:lgpl2.0))) + (define-public patchage (package (name "patchage") -- 2.9.3 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0003-gnu-Add-toxic.patch >From 60ef9e92a87af1a09d2cd54a2dae06904a4e211a Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 21 Aug 2016 02:18:02 +0000 Subject: [PATCH 3/3] gnu: Add toxic. * gnu/packages/messaging.scm (toxic): New variable. --- gnu/packages/messaging.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 0c8bc3d..266b5b7 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -34,10 +34,13 @@ #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system python) #:use-module (gnu packages) + #:use-module (gnu packages aidc) + #:use-module (gnu packages audio) #:use-module (gnu packages autotools) #:use-module (gnu packages avahi) #:use-module (gnu packages check) #:use-module (gnu packages crypto) + #:use-module (gnu packages curl) #:use-module (gnu packages cyrus-sasl) #:use-module (gnu packages databases) #:use-module (gnu packages documentation) @@ -63,7 +66,8 @@ #:use-module (gnu packages tls) #:use-module (gnu packages icu4c) #:use-module (gnu packages video) - #:use-module (gnu packages xiph)) + #:use-module (gnu packages xiph) + #:use-module (gnu packages textutils)) (define-public libotr (package @@ -538,4 +542,45 @@ end-to-end encryption support; XML console.") (license gpl3+) (home-page "http://tox.chat")))) +(define-public toxic + (package + (name "toxic") + (version "0.7.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/JFreegman/" + name "/archive/v" version ".tar.gz")) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "01khprl4rrlncnpq9xiq128c0r400snpvx9qjhrfw97xqdfsn7pi")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs + `(("libtoxcore" ,libtoxcore) + ("ncurses" ,ncurses) + ("curl" ,curl) + ("openal" ,openal) + ("freealut" ,freealut) + ("libnotify" ,libnotify) + ("asciidoc" ,asciidoc) + ("libx11" ,libx11) + ("libvpx" ,libvpx) + ("qrencode" ,qrencode) + ("libconfig" ,libconfig) + ("libsodium" ,libsodium))) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'configure)))) ; No configure script + (synopsis "Ncurses based Tox client") + (description + "Yay, new stuff..") + (license gpl3+) + (home-page "http://tox.chat"))) + ;;; messaging.scm ends here -- 2.9.3 --=-=-= Content-Type: text/plain -- ng0 For non-prism friendly talk find me on http://www.psyced.org --=-=-=--