unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 9b9376ee3945056e4ac1eef712e66e52b41bc158 4312 bytes (raw)
name: gnu/packages/unicon.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2023 Peter Kourzanov <peter.kourzanov@gmail.com>
;;;
;;; 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 (at
;;; 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 <http://www.gnu.org/licenses/>.

(define-module (gnu packages unicon)
#:use-module (guix gexp)
#:use-module (guix git)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix git-authenticate)
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages base)
#:use-module (gnu packages bash)
#:use-module (gnu packages autotools)
#:use-module (gnu packages databases)
#:use-module (gnu packages xiph)
#:use-module (gnu packages audio)
#:use-module (gnu packages xorg)
#:use-module (gnu packages gl)
#:use-module (gnu packages tls)
#:use-module (gnu packages image)
#:use-module (gnu packages video)
#:use-module (gnu packages sdl)
#:use-module (gnu packages dbm)
#:use-module (gnu packages fontutils)
#:use-module ((guix licenses) #:prefix lic:)
)

(define-public unicon
  (package
    (name "unicon")
    (version "master")
    (source (git-checkout
              (url "https://git.code.sf.net/p/unicon/unicon")
              (branch version)))
    (build-system gnu-build-system)
    (arguments
     (list #:tests? #f
           #:phases #~(modify-phases %standard-phases
               (add-after 'unpack 'patches
                 (lambda* (#:key inputs #:allow-other-keys)
		             (let ((patch (assoc-ref inputs "patch")))
                    (invoke "patch" "-p1" "--force" "-i" patch)
                   )))
               (add-before 'configure 'adjust-includes
                 (lambda* (#:key inputs #:allow-other-keys)
                  (let* ((inc1 (assoc-ref inputs "freetype"))
                         (inc2 (assoc-ref inputs "libsmpeg"))
                         (inc3 (assoc-ref inputs "sdl"))
                         (e1 (getenv "C_INCLUDE_PATH"))
                         (e2 (getenv "CPLUS_INCLUDE_PATH")) 
                         )
                  (setenv "C_INCLUDE_PATH"
                    (string-append inc1 "/include/freetype2:"
                                   inc2 "/include/smpeg:"
                                   inc3 "/include/SDL"
                      (if e1 (string-append ":" e1)  "")))
                  (setenv "CPLUS_INCLUDE_PATH"
                    (string-append inc1 "/include/freetype2:" 
                                   inc2 "/include/smpeg:"
                                   inc3 "/include/SDL"
                      (if e2 (string-append ":" e2) "")))
                  )))
              (replace 'build
                (lambda* (#:key outputs inputs build-targets #:allow-other-keys)
                  (invoke "make" "-s")
                ))
        )))
    (native-inputs `(("bash" ,bash) 
                     ("which" ,which) 
                     ("libtool" ,libtool) 
                     ("autoconf" ,autoconf) 
                     ("automake" ,automake) 
                     ("patch" ,(search-patch "unicon.patch"))))
    (inputs (list gdbm))
    (propagated-inputs (list unixodbc libvorbis libogg freealut openal libxft mesa libx11 openssl libjpeg-turbo libpng libxfont freeglut ftgl freetype sdl libsmpeg))
    (native-search-paths
     (list (search-path-specification
            (variable "C_INCLUDE_PATH")
            (files '("include/freetype2" "include/libsmpeg" "include/SDL")))))
    (synopsis "an Extended Dialect of Icon")
    (description "Unicon is a very high level, goal-directed, object-oriented, general purpose applications language.")
    (home-page "http://unicon.org/")
    (license lic:gpl2)))

debug log:

solving 9b9376ee39 ...
found 9b9376ee39 in https://yhetil.org/guix-devel/CAJ-oi0vAQ0uVPN28SWrLy14cCjjSOAWsqF3CpXvaNjNUvJQ_cQ@mail.gmail.com/

applying [1/1] https://yhetil.org/guix-devel/CAJ-oi0vAQ0uVPN28SWrLy14cCjjSOAWsqF3CpXvaNjNUvJQ_cQ@mail.gmail.com/
diff --git a/gnu/packages/unicon.scm b/gnu/packages/unicon.scm
new file mode 100644
index 0000000000..9b9376ee39

1:74: trailing whitespace.
                         (e2 (getenv "CPLUS_INCLUDE_PATH")) 
1:82: trailing whitespace.
                    (string-append inc1 "/include/freetype2:" 
1:92: trailing whitespace.
    (native-inputs `(("bash" ,bash) 
1:93: trailing whitespace.
                     ("which" ,which) 
1:94: trailing whitespace.
                     ("libtool" ,libtool) 
Checking patch gnu/packages/unicon.scm...
Applied patch gnu/packages/unicon.scm cleanly.
warning: squelched 2 whitespace errors
warning: 7 lines add whitespace errors.

index at:
100644 9b9376ee3945056e4ac1eef712e66e52b41bc158	gnu/packages/unicon.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).