Skip to content
Snippets Groups Projects
Commit 0256c746 authored by Andreas Enge's avatar Andreas Enge
Browse files

gnu: texlive: Update to 2015.

* gnu/packages/texlive.scm (texlive-extra-src, texlive-texmf-src,
  texlive-bin, texlive-texmf, texlive): Update to 2015.
  (texlive-bin): Add inputs gmp and mpfr. Add configure flags to use
  system gmp and mpfr.
  (texlive-texmf)[arguments]: Add tlpkg directory to PERL5LIB path during
  the 'texmf-config phase.
parent 48dbeef7
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,7 @@ (define-module (gnu packages texlive) ...@@ -34,6 +34,7 @@ (define-module (gnu packages texlive)
#:use-module (gnu packages icu4c) #:use-module (gnu packages icu4c)
#:use-module (gnu packages image) #:use-module (gnu packages image)
#:use-module (gnu packages lua) #:use-module (gnu packages lua)
#:use-module (gnu packages multiprecision)
#:use-module (gnu packages pdf) #:use-module (gnu packages pdf)
#:use-module (gnu packages perl) #:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config) #:use-module (gnu packages pkg-config)
...@@ -49,27 +50,27 @@ (define-module (gnu packages texlive) ...@@ -49,27 +50,27 @@ (define-module (gnu packages texlive)
(define texlive-extra-src (define texlive-extra-src
(origin (origin
(method url-fetch) (method url-fetch)
(uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-extra.tar.xz") (uri "ftp://tug.org/historic/systems/texlive/2015/texlive-20150523-extra.tar.xz")
(sha256 (base32 (sha256 (base32
"1zlnjysvxskcy05iva6jfklirwv12wqyn3ia119a7xnqlvhpqz33")))) "1dkhhacga8h1v2m9xv1w02glbdda2m8lfp1la1y1zb9yjj8jsa6i"))))
(define texlive-texmf-src (define texlive-texmf-src
(origin (origin
(method url-fetch) (method url-fetch)
(uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-texmf.tar.xz") (uri "ftp://tug.org/historic/systems/texlive/2015/texlive-20150523-texmf.tar.xz")
(sha256 (base32 (sha256 (base32
"0qsr55ms1278dhmgixs5qqwd4fxhh369ihkki6wgh8xaqm8p48p0")))) "1a3hpcg6x69ysqx432v6sk4alg0x34813cwk41frmvzprdajpyqy"))))
(define-public texlive-bin (define-public texlive-bin
(package (package
(name "texlive-bin") (name "texlive-bin")
(version "2014") (version "2015")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri "ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-source.tar.xz") (uri "ftp://tug.org/historic/systems/texlive/2015/texlive-20150521-source.tar.xz")
(sha256 (base32 (sha256 (base32
"1glmaw2jv42grbsn05kay825j66scimjqqc32776bb1356q4xfq8")))) "0sa6kmz4jwhv6lw702gxszhhjkvw071wba0ngk1c76g8vixwv6zd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("texlive-extra-src" ,texlive-extra-src) `(("texlive-extra-src" ,texlive-extra-src)
...@@ -78,6 +79,7 @@ (define-public texlive-bin ...@@ -78,6 +79,7 @@ (define-public texlive-bin
("fontforge" ,fontforge) ("fontforge" ,fontforge)
("freetype" ,freetype) ("freetype" ,freetype)
("gd" ,gd) ("gd" ,gd)
("gmp" ,gmp)
("ghostscript" ,ghostscript) ("ghostscript" ,ghostscript)
("graphite2" ,graphite2) ("graphite2" ,graphite2)
("harfbuzz" ,harfbuzz) ("harfbuzz" ,harfbuzz)
...@@ -86,6 +88,7 @@ (define-public texlive-bin ...@@ -86,6 +88,7 @@ (define-public texlive-bin
("libpng" ,libpng) ("libpng" ,libpng)
("libxaw" ,libxaw) ("libxaw" ,libxaw)
("libxt" ,libxt) ("libxt" ,libxt)
("mpfr" ,mpfr)
("perl" ,perl) ("perl" ,perl)
("pixman" ,pixman) ("pixman" ,pixman)
("poppler" ,poppler) ("poppler" ,poppler)
...@@ -105,12 +108,14 @@ (define-public texlive-bin ...@@ -105,12 +108,14 @@ (define-public texlive-bin
"--with-system-cairo" "--with-system-cairo"
"--with-system-freetype2" "--with-system-freetype2"
"--with-system-gd" "--with-system-gd"
"--with-system-gmp"
"--with-system-graphite2" "--with-system-graphite2"
"--with-system-harfbuzz" "--with-system-harfbuzz"
"--with-system-icu" "--with-system-icu"
"--with-system-libgs" "--with-system-libgs"
"--with-system-libpaper" "--with-system-libpaper"
"--with-system-libpng" "--with-system-libpng"
"--with-system-mpfr"
"--with-system-pixman" "--with-system-pixman"
"--with-system-poppler" "--with-system-poppler"
"--with-system-potrace" "--with-system-potrace"
...@@ -162,7 +167,7 @@ (define-public texlive-bin ...@@ -162,7 +167,7 @@ (define-public texlive-bin
(define-public texlive-texmf (define-public texlive-texmf
(package (package
(name "texlive-texmf") (name "texlive-texmf")
(version "2014") (version "2015")
(source texlive-texmf-src) (source texlive-texmf-src)
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
...@@ -189,12 +194,16 @@ (define-public texlive-texmf ...@@ -189,12 +194,16 @@ (define-public texlive-texmf
(let* ((share (string-append (assoc-ref outputs "out") "/share")) (let* ((share (string-append (assoc-ref outputs "out") "/share"))
(texmfroot (string-append share "/texmf-dist/web2c")) (texmfroot (string-append share "/texmf-dist/web2c"))
(texmfcnf (string-append texmfroot "/texmf.cnf")) (texmfcnf (string-append texmfroot "/texmf.cnf"))
(texbin (string-append (assoc-ref inputs "texlive-bin") (texlive-bin (assoc-ref inputs "texlive-bin"))
"/bin"))) (texbin (string-append texlive-bin "/bin"))
(tlpkg (string-append texlive-bin "/share/tlpkg")))
;; Register SHARE as TEXMFROOT in texmf.cnf. ;; Register SHARE as TEXMFROOT in texmf.cnf.
(substitute* texmfcnf (substitute* texmfcnf
(("TEXMFROOT = \\$SELFAUTOPARENT") (("TEXMFROOT = \\$SELFAUTOPARENT")
(string-append "TEXMFROOT = " share))) (string-append "TEXMFROOT = " share)))
;; Set path to TeXLive Perl modules
(setenv "PERL5LIB"
(string-append (getenv "PERL5LIB") ":" tlpkg))
;; Configure the texmf-dist tree; inspired from ;; Configure the texmf-dist tree; inspired from
;; http://slackbuilds.org/repository/13.37/office/texlive/ ;; http://slackbuilds.org/repository/13.37/office/texlive/
(setenv "PATH" (string-append (getenv "PATH") ":" texbin)) (setenv "PATH" (string-append (getenv "PATH") ":" texbin))
...@@ -218,7 +227,7 @@ (define-public texlive-texmf ...@@ -218,7 +227,7 @@ (define-public texlive-texmf
(define-public texlive (define-public texlive
(package (package
(name "texlive") (name "texlive")
(version "2014") (version "2015")
(source #f) (source #f)
(build-system trivial-build-system) (build-system trivial-build-system)
(inputs `(("bash" ,bash) ; for wrap-program (inputs `(("bash" ,bash) ; for wrap-program
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment