mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: icecat: Build without debugging symbols; use some of the system libs.
* gnu/packages/gnuzilla.scm (icecat): Add 'native-inputs'. Add bzip2, libevent, libffi, and zlib as inputs. Add #:configure-flags. Change 'configure' phase to honor it.
This commit is contained in:
parent
2e5728318b
commit
1ae6df81db
1 changed files with 41 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -29,6 +30,11 @@ (define-module (gnu packages gnuzilla)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (gnu packages libevent)
|
||||||
|
#:use-module (gnu packages libjpeg)
|
||||||
|
#:use-module (gnu packages libpng)
|
||||||
|
#:use-module (gnu packages libffi)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
#:use-module (gnu packages yasm)
|
#:use-module (gnu packages yasm)
|
||||||
|
@ -48,25 +54,55 @@ (define-public icecat
|
||||||
(base32
|
(base32
|
||||||
"1vxzjwmhad6yxx4sk9zvapjgv5salcv10id061q0991ii3dycy9a"))))
|
"1vxzjwmhad6yxx4sk9zvapjgv5salcv10id061q0991ii3dycy9a"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("alsa-lib" ,alsa-lib)
|
`(("alsa-lib" ,alsa-lib)
|
||||||
|
("bzip2" ,bzip2)
|
||||||
("dbus" ,dbus)
|
("dbus" ,dbus)
|
||||||
("dbus-glib" ,dbus-glib)
|
("dbus-glib" ,dbus-glib)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("gstreamer" ,gstreamer-0.10)
|
("gstreamer" ,gstreamer-0.10)
|
||||||
("gst-plugins-base" ,gst-plugins-base-0.10)
|
("gst-plugins-base" ,gst-plugins-base-0.10)
|
||||||
("gtk+" ,gtk+-2)
|
("gtk+" ,gtk+-2)
|
||||||
|
("libevent" ,libevent)
|
||||||
|
;; ("libpng" ,libpng)
|
||||||
|
;; ("libjpeg" ,libjpeg)
|
||||||
("libxt" ,libxt)
|
("libxt" ,libxt)
|
||||||
|
("libffi" ,libffi)
|
||||||
("mesa" ,mesa)
|
("mesa" ,mesa)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)
|
|
||||||
("python" ,python-2) ; Python 3 not supported
|
("python" ,python-2) ; Python 3 not supported
|
||||||
("python2-pysqlite" ,python2-pysqlite)
|
("python2-pysqlite" ,python2-pysqlite)
|
||||||
("unzip" ,unzip)
|
("unzip" ,unzip)
|
||||||
("yasm" ,yasm)
|
("yasm" ,yasm)
|
||||||
("zip" ,zip)))
|
("zip" ,zip)
|
||||||
|
("zlib" ,zlib)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
|
|
||||||
|
#:configure-flags '(;; Building with debugging symbols takes ~5GiB, so
|
||||||
|
;; disable it.
|
||||||
|
"--disable-debug"
|
||||||
|
"--disable-debug-symbols"
|
||||||
|
|
||||||
|
"--disable-webrtc" ; webrtc fails to build
|
||||||
|
|
||||||
|
"--with-system-zlib"
|
||||||
|
"--with-system-bz2" ; FIXME: not used
|
||||||
|
"--with-system-libevent"
|
||||||
|
|
||||||
|
;; TODO: Currently fails with "--with-system-png
|
||||||
|
;; won't work because the system's libpng doesn't
|
||||||
|
;; have APNG support".
|
||||||
|
;; "--with-system-png"
|
||||||
|
|
||||||
|
;; TODO: Currently fails with "Insufficient JPEG
|
||||||
|
;; library version for --with-system-jpeg".
|
||||||
|
;; "--with-system-jpeg"
|
||||||
|
|
||||||
|
"--enable-system-ffi")
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
(alist-cons-before
|
(alist-cons-before
|
||||||
'patch-source-shebangs 'sanitise
|
'patch-source-shebangs 'sanitise
|
||||||
|
@ -84,9 +120,9 @@ (define-public icecat
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(setenv "SHELL" (which "bash"))
|
(setenv "SHELL" (which "bash"))
|
||||||
(setenv "CONFIG_SHELL" (which "bash"))
|
(setenv "CONFIG_SHELL" (which "bash"))
|
||||||
(zero? (system* "./configure"
|
(zero? (apply system* "./configure"
|
||||||
(string-append "--prefix=" out)
|
(string-append "--prefix=" out)
|
||||||
"--disable-webrtc")))) ; webrtc creates an error
|
configure-flags))))
|
||||||
%standard-phases))))
|
%standard-phases))))
|
||||||
(home-page "http://www.gnu.org/software/gnuzilla/")
|
(home-page "http://www.gnu.org/software/gnuzilla/")
|
||||||
(synopsis "Entirely free browser derived from Mozilla Firefox")
|
(synopsis "Entirely free browser derived from Mozilla Firefox")
|
||||||
|
|
Loading…
Reference in a new issue