unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob a3cdd05185bc703e1707dfd4559741bf851ed497 9529 bytes (raw)
name: gnu/packages/arcan.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
 
(define-module (gnu packages arcan)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system gnu)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix utils)

  #:use-module (gnu packages apr)
  #:use-module (gnu packages audio)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages fontutils)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages image)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages lua)
  #:use-module (gnu packages ocr)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages ruby)
  #:use-module (gnu packages sdl)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages video)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages xorg)
  #:use-module (srfi srfi-1))

(define-public arcan
  (package
    (name "arcan")
    (version "0.5.5.2")                 ;A few commits ahead, really. To fix some bugs.
    (source (origin
              (method git-fetch)
              (file-name (git-file-name name version))
              (uri (git-reference
                    (url "https://github.com/letoram/arcan.git")
                    (commit "b4dd1fbd1938492ff4b269189d3c8524be7450a9")))
              (sha256
               (base32
                "1pd0avlzc2rig1hd37zbhc7r2s6fjzdhshfg9l9cfzibl7caclyw"))))
    (build-system cmake-build-system)
    (arguments
     `(#:configure-flags '("-DVIDEO_PLATFORM=egl-dri" "-DBUILTIN_LUA=off"
                           "-DSTATIC_OPENAL=off""-DENABLE_LWA=on"
                           "-DSTATIC_SQLITE3=off" "-DSTATIC_FREETYPE=off"
                           "-DSHMIF_TUI_ACCEL=on")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'fix-cmake-paths
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "src/platform/cmake/modules/FindGBMKMS.cmake"
               (("/usr/local/include/libdrm")
                (string-append (assoc-ref inputs "libdrm")
                               "/include/libdrm")))
             (substitute* "src/platform/cmake/modules/FindAPR.cmake"
               (("/usr/local/apr/include/apr-1")
                (string-append (assoc-ref inputs "apr")
                               "/include/apr-1")))
             #t))
         (add-after 'unpack 'prepare-static-openal ; For building arcan_lwa
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((arcan-openal (assoc-ref inputs "arcan-openal")))
               (mkdir-p "external/openal")
               (symlink arcan-openal "external/git/openal"))
             #t))
         (add-after 'prepare-static-openal 'generate-man
           (lambda _
             (with-directory-excursion "doc"
               (invoke "ruby" "docgen.rb" "mangen"))
             #t))
         (add-before 'configure 'chdir
           (lambda _
             (chdir "src")
             #t))
         (add-after 'install 'wrap-program
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (wrap-program (string-append out "/bin/arcan")
                 `("ARCAN_RESOURCEPATH" ":" suffix
                   (,(string-append out "/share/arcan/resources")))
                 `("ARCAN_STATEBASEPATH" ":" =
                   ("$HOME/.arcan/resources/savestates"))
                 `("ARCAN_STATEPATH" ":" =
                   ("$HOME/.arcan/resources/savestates"))
                 `("ARCAN_BINPATH" ":" =
                   (,(string-append out "/bin/arcan_frameserver")))
                 `("ARCAN_SCRIPTPATH" ":" suffix
                   (,(string-append out "/share/arcan/scripts")))))
             #t)))
       #:tests? #f))
    (native-search-paths
     (list (search-path-specification
            (variable "ARCAN_APPLBASEPATH")
            (separator #f)
            (files '("share/arcan/appl")))))
    (inputs
     `(("apr" ,apr)
       ("ffmpeg" ,ffmpeg)
       ("freetype" ,freetype)
       ("glib" ,glib)
       ("glu" ,glu)
       ("harfbuzz" ,harfbuzz)
       ("libdrm" ,libdrm)
       ("libusb" ,libusb)
       ("libxkbcommon" ,libxkbcommon)
       ("lua" ,luajit)
       ("lzip" ,lzip)
       ("openal" ,openal)
       ("pcre" ,pcre)
       ("sqlite" ,sqlite)
       ("tesseract-ocr" ,tesseract-ocr)
       ("leptonica" ,leptonica)
       ("vlc" ,vlc)
       ("arcan-openal" ,(origin
                          (method git-fetch)
                          (uri (git-reference
                                (url "https://github.com/letoram/openal.git")
                                (commit "1c7302c580964fee9ee9e1d89ff56d24f934bdef")))
                          (sha256
                           (base32
                            "0dcxcnqjkyyqdr2yk84mprvkncy5g172kfs6vc4zrkklsbkr8yi2"))))))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("ruby" ,ruby)))                 ; For documentation and testing
    (home-page "https://arcan-fe.com")
    (synopsis "Combined display server, multimedia framework and game engine (egl-dri)")
    (description "Arcan is a powerful development framework for creating virtually
anything from user interfaces for specialized embedded applications
all the way to full-blown desktop environments")
    (license (list license:gpl2+
                   license:lgpl2.0
                   license:bsd-3))))

(define-public arcan-sdl
  (package
    (inherit arcan)
    (name "arcan-sdl")
    (inputs
     `(("sdl" ,sdl)
       ,@(fold alist-delete (package-inputs arcan)
               '("libdrm"))))
    (arguments
     `(,@(ensure-keyword-arguments
          (package-arguments arcan)
          '(#:configure-flags
            '("-DVIDEO_PLATFORM=sdl" "-DBUILTIN_LUA=off"
              "-DSTATIC_OPENAL=off" "-DDISABLE_JIT=off"
              "-DENABLE_LWA=on" "-DSTATIC_SQLITE3=off"
              "-DSTATIC_FREETYPE=off" "-DSHMIF_TUI_ACCEL=on")))))
    (synopsis "Combined display server, multimedia framework and game engine (sdl)")))


(define-public xarcan
  (package
    (name "xarcan")
    (version "0.5.4")
    (source
     (origin
       (method git-fetch)
       (file-name (git-file-name name version))
       (uri (git-reference
             (url "https://github.com/letoram/xarcan.git")
             (commit "8e6ee029388326cfe5cddeffe482eb3702e9b7f3")))
       (sha256
        (base32 "0zng7cs6733mnf0p6g5wv02981f2sf567n56csax6cmzb8fpamym"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       `("--enable-kdrive" "--enable-xarcan"
         "--disable-xorg" "--disable-xwayland"
         "--disable-xnest" "--disable-xvfb"
         "--enable-glamor" "--enable-glx"
         "--disable-int10-module" "--enable-ipv6"
         "--enable-record" "--without-systemd-daemon"
         "--enable-xcsecurity" "--disable-static"
         ,(string-append "--with-xkb-path="
                         (assoc-ref %build-inputs "xkeyboard-config")
                         "/share/X11/xkb")
         ,(string-append "--with-xkb-bin-directory="
                         (assoc-ref %build-inputs "xkbcomp")
                         "/bin")
         ,(string-append "--with-xkb-output="
                         "/tmp"))       ; FIXME: Copied from xorg
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'noconfigure
           (lambda _
             (setenv "NOCONFIGURE" "true")
             #t)))))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("autoconf" ,autoconf)
       ("automake" ,automake)
       ("libtool" ,libtool)
       ("util-macros" ,util-macros)))
    (inputs
     `(("arcan" ,arcan)
       ("font-util" ,font-util)
       ("libdrm" ,libdrm)
       ("libepoxy" ,libepoxy)
       ("libkbfile" ,libxkbfile)
       ("libressl" ,libressl)
       ("libx11" ,libx11)
       ("libxfont2" ,libxfont2)
       ("mesa" ,mesa)
       ("pixman" ,pixman)
       ("xkeyboard-config" ,xkeyboard-config)
       ("xkbcomp" ,xkbcomp)
       ("xorgproto" ,xorgproto)
       ("xtrans" ,xtrans)))
    (home-page "https://arcan-fe.com")
    (synopsis "Patched Xserver that bridges connections to Arcan")
    (description "Patched Xserver that bridges connections to Arcan")
    (license license:expat)))

(define-public arcan-wayland
  (package
    (inherit arcan)
    (name "arcan-wayland")
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (inputs
     `(("arcan" ,arcan)
       ("libseccomp" ,libseccomp)
       ("libxkbcommon" ,libxkbcommon)
       ("mesa" ,mesa)
       ("wayland" ,wayland)
       ("wayland-protocols" ,wayland-protocols)))
    (arguments
     `(#:tests? #f
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'chdir
           (lambda _
             (chdir "src/tools/waybridge")
             #t))
         (add-after 'unpack 'fix-cmake-find-shmif
           (lambda* (#:key inputs #:allow-other-keys)
             (substitute* "src/platform/cmake/modules/Findarcan_shmif.cmake"
               (("/usr/local") (string-append (assoc-ref inputs "arcan") "")))
             #t)))))
    (synopsis "Wayland protocol service for Arcan")
    (description "Wayland protocol service for Arcan")
    (license license:bsd-3)))

debug log:

solving a3cdd0518 ...
found a3cdd0518 in https://yhetil.org/guix-patches/cuctvhyqkja.fsf@lprndn.info/
found f31fa635c in https://yhetil.org/guix-patches/cucy37aqkjs.fsf@lprndn.info/
found 2765d805f in https://yhetil.org/guix-patches/cuc36pirz5f.fsf@lprndn.info/
found 910464dec in https://yhetil.org/guix-patches/cuca7jqrzba.fsf@lprndn.info/

applying [1/4] https://yhetil.org/guix-patches/cuca7jqrzba.fsf@lprndn.info/
diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm
new file mode 100644
index 000000000..910464dec


applying [2/4] https://yhetil.org/guix-patches/cuc36pirz5f.fsf@lprndn.info/
diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm
index 910464dec..2765d805f 100644


applying [3/4] https://yhetil.org/guix-patches/cucy37aqkjs.fsf@lprndn.info/
diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm
index 2765d805f..f31fa635c 100644


applying [4/4] https://yhetil.org/guix-patches/cuctvhyqkja.fsf@lprndn.info/
diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm
index f31fa635c..a3cdd0518 100644

Checking patch gnu/packages/arcan.scm...
Applied patch gnu/packages/arcan.scm cleanly.
Checking patch gnu/packages/arcan.scm...
Applied patch gnu/packages/arcan.scm cleanly.
Checking patch gnu/packages/arcan.scm...
Applied patch gnu/packages/arcan.scm cleanly.
Checking patch gnu/packages/arcan.scm...
Applied patch gnu/packages/arcan.scm cleanly.

index at:
100644 a3cdd05185bc703e1707dfd4559741bf851ed497	gnu/packages/arcan.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).