diff options
author | Johannes Schoepfer <slackbuilds[at]schoepfer[dot]info> | 2016-07-25 07:56:03 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-07-30 08:28:43 +0700 |
commit | b5a897b038243772403dbcecd93a022181b64b29 (patch) | |
tree | 4af82264c216062952fed01ec78a3225adbbcf8e /office/texlive/texlive.SlackBuild | |
parent | f8e4d24eb4b74ad6125b0f292385e574ff9d9558 (diff) | |
download | slackbuilds-b5a897b038243772403dbcecd93a022181b64b29.tar.gz |
office/texlive: fixed segfault in upmendex ; tweaked prep stuff
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/texlive/texlive.SlackBuild')
-rw-r--r-- | office/texlive/texlive.SlackBuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/office/texlive/texlive.SlackBuild b/office/texlive/texlive.SlackBuild index b327faeaae..40b5e7c68f 100644 --- a/office/texlive/texlive.SlackBuild +++ b/office/texlive/texlive.SlackBuild @@ -4,7 +4,7 @@ # Copyright 2009 Patrick J. Volkerding, Sebeka, MN, USA # Copyright 2009-2014 Robby Workman, Northport, AL, USA -# Copyright 2016 Johannes Schoepfer, <slackbuilds[AT]schoepferi[DOT]info> +# Copyright 2016 Johannes Schoepfer, Herrenberg, BW, Germany # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -30,7 +30,7 @@ PRGNAM=texlive VERSION=20160523 TEXMF_VERS=20160622 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -75,6 +75,9 @@ export LD_LIBRARY_PATH="$PKG/usr/lib${LIBDIRSUFFIX}:$LD_LIBRARY_PATH" # set TEXMFROOT and TEXMFLOCAL sed -i "s|^TEXMFROOT.*|TEXMFROOT = \$SELFAUTODIR/share|;s|^TEXMFLOCAL.*|TEXMFLOCAL = \$TEXMFROOT/texmf-local|" texk/kpathsea/texmf.cnf +# Fix a segfault in upmendex, thanks to the lfs-folks. +patch -Np1 -i $CWD/patches/texlive-20160523b-source-upstream_fixes-1.patch + # --with-system-harfbuzz requires graphite2 (and harfbuzz linked to it) mkdir build ; cd build CFLAGS="$SLKCFLAGS" \ @@ -93,7 +96,6 @@ mkdir build ; cd build --disable-multiplatform \ --disable-debug \ --with-x \ - --enable-texdoctk \ --enable-xindy \ --disable-xindy-docs \ --disable-xindy-rules \ |