[arch-commits] Commit in texlive-bin/repos (8 files)

2017-10-05 Thread Evangelos Foutras
Date: Friday, October 6, 2017 @ 00:43:58
  Author: foutrelis
Revision: 306879

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 306878, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/luatex-gcc7.patch
(from rev 306878, texlive-bin/trunk/luatex-gcc7.patch)
  texlive-bin/repos/staging-i686/texlive-poppler-0.59.patch
(from rev 306878, texlive-bin/trunk/texlive-poppler-0.59.patch)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 306878, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/luatex-gcc7.patch
(from rev 306878, texlive-bin/trunk/luatex-gcc7.patch)
  texlive-bin/repos/staging-x86_64/texlive-poppler-0.59.patch
(from rev 306878, texlive-bin/trunk/texlive-poppler-0.59.patch)

---+
 staging-i686/PKGBUILD |  381 +
 staging-i686/luatex-gcc7.patch|   32 
 staging-i686/texlive-poppler-0.59.patch   | 1142 
 staging-x86_64/PKGBUILD   |  381 +
 staging-x86_64/luatex-gcc7.patch  |   32 
 staging-x86_64/texlive-poppler-0.59.patch | 1142 
 6 files changed, 3110 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 306878, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-10-06 00:43:58 UTC (rev 306879)
@@ -0,0 +1,381 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2017.44590
+pkgrel=7
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=("http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+"luatex-gcc7.patch"
+"texlive-poppler-0.59.patch")
+sha256sums=('4645b4d55fc500ba9be7156a6a330afb44fbf7fda40dfd73fe9cb16d207f2038'
+'ee97f3e07e235dee4ad6d0c3e85c2260914c965e94d5ffbf481fa506df5f01ec'
+'76bc0528da33b1f980f85464c95d00736d9997ba7f8d11475c88f03e099e91b0')
+
+prepare() {
+cd "$srcdir/source"
+
+# t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+sed -i s/SELFAUTOPARENT/TEXMFROOT/ texk/tex4htk/t4ht.c
+
+## prevent compiling Xdvi with libXp
+sed -i~ 's|-lXp ||' texk/xdvik/configure
+
+# Luatex crashes when compiled with GCC7.1
+patch -Np0 -i "${srcdir}/luatex-gcc7.patch"
+
+# Poppler 0.58 introduces API changes by hiding internal object
+# management.
+patch -Np1 -i "${srcdir}/texlive-poppler-0.59.patch"
+}
+
+build() {
+   cd "$srcdir"
+
+   #
+   ### configure
+   cd source
+   mkdir -p Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy-rules --disable-xindy-docs
+   #
+   ### make
+   echo "---"
+   echo "--> Building the whole beast ..."
+   echo "---"
+   make
+}
+
+package_libsynctex() {
+pkgdesc='Library for synchronization between TeX files and resulting file'
+

[arch-commits] Commit in texlive-bin/repos (8 files)

2017-10-04 Thread Evangelos Foutras
Date: Wednesday, October 4, 2017 @ 19:46:13
  Author: foutrelis
Revision: 306736

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 306735, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/luatex-gcc7.patch
(from rev 306735, texlive-bin/trunk/luatex-gcc7.patch)
  texlive-bin/repos/staging-i686/texlive-poppler-0.59.patch
(from rev 306735, texlive-bin/trunk/texlive-poppler-0.59.patch)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 306735, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/luatex-gcc7.patch
(from rev 306735, texlive-bin/trunk/luatex-gcc7.patch)
  texlive-bin/repos/staging-x86_64/texlive-poppler-0.59.patch
(from rev 306735, texlive-bin/trunk/texlive-poppler-0.59.patch)

---+
 staging-i686/PKGBUILD |  381 +
 staging-i686/luatex-gcc7.patch|   32 
 staging-i686/texlive-poppler-0.59.patch   | 1142 
 staging-x86_64/PKGBUILD   |  381 +
 staging-x86_64/luatex-gcc7.patch  |   32 
 staging-x86_64/texlive-poppler-0.59.patch | 1142 
 6 files changed, 3110 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 306735, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-10-04 19:46:13 UTC (rev 306736)
@@ -0,0 +1,381 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2017.44590
+pkgrel=6
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=("http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+"luatex-gcc7.patch"
+"texlive-poppler-0.59.patch")
+sha256sums=('4645b4d55fc500ba9be7156a6a330afb44fbf7fda40dfd73fe9cb16d207f2038'
+'ee97f3e07e235dee4ad6d0c3e85c2260914c965e94d5ffbf481fa506df5f01ec'
+'76bc0528da33b1f980f85464c95d00736d9997ba7f8d11475c88f03e099e91b0')
+
+prepare() {
+cd "$srcdir/source"
+
+# t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+sed -i s/SELFAUTOPARENT/TEXMFROOT/ texk/tex4htk/t4ht.c
+
+## prevent compiling Xdvi with libXp
+sed -i~ 's|-lXp ||' texk/xdvik/configure
+
+# Luatex crashes when compiled with GCC7.1
+patch -Np0 -i "${srcdir}/luatex-gcc7.patch"
+
+# Poppler 0.58 introduces API changes by hiding internal object
+# management.
+patch -Np1 -i "${srcdir}/texlive-poppler-0.59.patch"
+}
+
+build() {
+   cd "$srcdir"
+
+   #
+   ### configure
+   cd source
+   mkdir -p Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy-rules --disable-xindy-docs
+   #
+   ### make
+   echo "---"
+   echo "--> Building the whole beast ..."
+   echo "---"
+   make
+}
+
+package_libsynctex() {
+pkgdesc='Library for synchronization between TeX files and resulting file'
+

[arch-commits] Commit in texlive-bin/repos (8 files)

2017-09-19 Thread Rémy Oudompheng
Date: Tuesday, September 19, 2017 @ 19:11:33
  Author: remy
Revision: 305862

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 305861, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/luatex-gcc7.patch
(from rev 305861, texlive-bin/trunk/luatex-gcc7.patch)
  texlive-bin/repos/staging-i686/texlive-poppler-0.59.patch
(from rev 305861, texlive-bin/trunk/texlive-poppler-0.59.patch)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 305861, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/luatex-gcc7.patch
(from rev 305861, texlive-bin/trunk/luatex-gcc7.patch)
  texlive-bin/repos/staging-x86_64/texlive-poppler-0.59.patch
(from rev 305861, texlive-bin/trunk/texlive-poppler-0.59.patch)

---+
 staging-i686/PKGBUILD |  381 +
 staging-i686/luatex-gcc7.patch|   32 
 staging-i686/texlive-poppler-0.59.patch   | 1132 
 staging-x86_64/PKGBUILD   |  381 +
 staging-x86_64/luatex-gcc7.patch  |   32 
 staging-x86_64/texlive-poppler-0.59.patch | 1132 
 6 files changed, 3090 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 305861, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-09-19 19:11:33 UTC (rev 305862)
@@ -0,0 +1,381 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2017.44590
+pkgrel=3
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=("http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+"luatex-gcc7.patch"
+"texlive-poppler-0.59.patch")
+sha256sums=('4645b4d55fc500ba9be7156a6a330afb44fbf7fda40dfd73fe9cb16d207f2038'
+'ee97f3e07e235dee4ad6d0c3e85c2260914c965e94d5ffbf481fa506df5f01ec'
+'8ff387b417b4da920d6ffc3f3d89e52796334693cb88b97bf1770931bf2791e5')
+
+prepare() {
+cd "$srcdir/source"
+
+# t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+sed -i s/SELFAUTOPARENT/TEXMFROOT/ texk/tex4htk/t4ht.c
+
+## prevent compiling Xdvi with libXp
+sed -i~ 's|-lXp ||' texk/xdvik/configure
+
+# Luatex crashes when compiled with GCC7.1
+patch -Np0 -i "${srcdir}/luatex-gcc7.patch"
+
+# Poppler 0.58 introduces API changes by hiding internal object
+# management.
+patch -Np1 -i "${srcdir}/texlive-poppler-0.59.patch"
+}
+
+build() {
+   cd "$srcdir"
+
+   #
+   ### configure
+   cd source
+   mkdir -p Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy-rules --disable-xindy-docs
+   #
+   ### make
+   echo "---"
+   echo "--> Building the whole beast ..."
+   echo "---"
+   make
+}
+
+package_libsynctex() {
+pkgdesc='Library for synchronization between TeX files and resulting file'
+depends=('glibc' 

[arch-commits] Commit in texlive-bin/repos (8 files)

2016-07-31 Thread Andreas Radke
Date: Sunday, July 31, 2016 @ 10:17:19
  Author: andyrtr
Revision: 272759

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 272758, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 272758, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 272758, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 272758, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 272758, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 272758, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  349 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   31 ++
 staging-x86_64/PKGBUILD |  349 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   31 ++
 6 files changed, 784 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 272758, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-31 10:17:19 UTC (rev 272759)
@@ -0,0 +1,349 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2016.41290
+pkgrel=3
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '7303361f2d441eb5c962a996fd77e8fa')
+
+build() {
+   cd "$srcdir"
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy-rules --disable-xindy-docs
+   #
+   ### make
+   echo "---"
+   echo "--> Building the whole beast ..."
+   echo "---"
+   make
+}
+
+package_libsynctex() {
+   pkgdesc='Library for synchronization between TeX files and resulting file'
+   depends=('glibc' 'zlib')
+
+   install -d "$pkgdir"/usr/lib
+
+   for lib in "$srcdir"/source/Work/texk/web2c/.libs/libsynctex.so*; do
+  cp -P $lib "$pkgdir"/usr/lib/
+   done
+}
+
+package_texlive-bin() {
+   pkgdesc="TeX Live binaries"
+   depends=('cairo' 'pixman' 'graphite' 

[arch-commits] Commit in texlive-bin/repos (8 files)

2016-06-19 Thread Rémy Oudompheng
Date: Sunday, June 19, 2016 @ 22:38:35
  Author: remy
Revision: 270251

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 270250, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 270250, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 270250, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 270250, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 270250, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 270250, texlive-bin/trunk/texlive.install)

-+
 testing-i686/PKGBUILD   |  372 ++
 testing-i686/fix-fontforge-encoding.patch   |   12 
 testing-i686/texlive.install|   31 ++
 testing-x86_64/PKGBUILD |  372 ++
 testing-x86_64/fix-fontforge-encoding.patch |   12 
 testing-x86_64/texlive.install  |   31 ++
 6 files changed, 830 insertions(+)

Copied: texlive-bin/repos/testing-i686/PKGBUILD (from rev 270250, 
texlive-bin/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-19 22:38:35 UTC (rev 270251)
@@ -0,0 +1,372 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2016.41290
+pkgrel=1
+_biber_ver=2.5 # for biblatex 3.4 only.
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/current/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/current/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '7303361f2d441eb5c962a996fd77e8fa'
+ '688235040e2cab1020b7e75a03845a1c'
+ 'fa5e8acd474b4972f876de8f5655115f')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2016-04-02 Thread Evangelos Foutras
Date: Saturday, April 2, 2016 @ 23:29:46
  Author: foutrelis
Revision: 263785

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 263784, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 263784, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 263784, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 263784, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 263784, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 263784, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  356 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  356 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 834 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 263784, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-04-02 21:29:46 UTC (rev 263785)
@@ -0,0 +1,356 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=('texlive-bin' 'libsynctex')
+pkgver=2015.37497
+pkgrel=11
+_biber_ver=2.2 # for biblatex 3.0 only.
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
+ 'perl' 'clisp' 'ffcall')
+url='http://tug.org/texlive/'
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '85e762642861eb6a75798cebe5d839f3'
+ '27931a5e7b3dae0ea4d3794c97c31bf3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-12-18 Thread Bartłomiej Piotrowski
Date: Friday, December 18, 2015 @ 23:43:11
  Author: bpiotrowski
Revision: 256767

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 256766, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 256766, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 256766, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 256766, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 256766, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 256766, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  337 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  337 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 796 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 256766, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-18 22:43:11 UTC (rev 256767)
@@ -0,0 +1,337 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2015.37497
+pkgrel=9
+_biber_ver=2.2 # for biblatex 3.0 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '85e762642861eb6a75798cebe5d839f3'
+ '27931a5e7b3dae0ea4d3794c97c31bf3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 10:19:00
  Author: foutrelis
Revision: 252679

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 252678, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 252678, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 252678, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 252678, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 252678, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 252678, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  337 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  337 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 796 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 252678, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 09:19:00 UTC (rev 252679)
@@ -0,0 +1,337 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2015.37497
+pkgrel=6
+_biber_ver=2.2 # for biblatex 3.0 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '85e762642861eb6a75798cebe5d839f3'
+ '27931a5e7b3dae0ea4d3794c97c31bf3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+   

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-11-01 Thread Evangelos Foutras
Date: Sunday, November 1, 2015 @ 12:17:50
  Author: foutrelis
Revision: 249927

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 249926, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 249926, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 249926, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 249926, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 249926, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 249926, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  337 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  337 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 796 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 249926, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-11-01 11:17:50 UTC (rev 249927)
@@ -0,0 +1,337 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2015.37497
+pkgrel=4
+_biber_ver=2.1 # for biblatex 3.0 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '498539381540347b246bb047c4303bf5'
+ '01cfa6f94549479101b46412fbbabbe8')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+   

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-09-28 Thread Evangelos Foutras
Date: Monday, September 28, 2015 @ 23:14:10
  Author: foutrelis
Revision: 247852

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 247851, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 247851, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 247851, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 247851, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 247851, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 247851, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  337 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  337 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 796 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 247851, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-28 21:14:10 UTC (rev 247852)
@@ -0,0 +1,337 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2015.37497
+pkgrel=3
+_biber_ver=2.1 # for biblatex 3.0 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '498539381540347b246bb047c4303bf5'
+ '01cfa6f94549479101b46412fbbabbe8')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-09-09 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 05:54:27
  Author: foutrelis
Revision: 245663

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 245662, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 245662, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 245662, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 245662, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 245662, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 245662, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  337 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  337 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 796 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 245662, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-10 03:54:27 UTC (rev 245663)
@@ -0,0 +1,337 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2015.37497
+pkgrel=2
+_biber_ver=2.1 # for biblatex 3.0 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '498539381540347b246bb047c4303bf5'
+ '01cfa6f94549479101b46412fbbabbe8')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-09-01 Thread Rémy Oudompheng
Date: Tuesday, September 1, 2015 @ 12:39:33
  Author: remy
Revision: 245171

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 245170, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 245170, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 245170, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 245170, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 245170, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 245170, texlive-bin/trunk/texlive.install)

-+
 testing-i686/PKGBUILD   |  337 ++
 testing-i686/fix-fontforge-encoding.patch   |   12 
 testing-i686/texlive.install|   49 +++
 testing-x86_64/PKGBUILD |  337 ++
 testing-x86_64/fix-fontforge-encoding.patch |   12 
 testing-x86_64/texlive.install  |   49 +++
 6 files changed, 796 insertions(+)

Copied: texlive-bin/repos/testing-i686/PKGBUILD (from rev 245170, 
texlive-bin/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-01 10:39:33 UTC (rev 245171)
@@ -0,0 +1,337 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2015.37497
+pkgrel=1
+_biber_ver=2.1 # for biblatex 3.0 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '20be644511704910151560a4d99f6995'
+ '498539381540347b246bb047c4303bf5'
+ '01cfa6f94549479101b46412fbbabbe8')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-system-gmp \
+ --with-system-mpfr \
+ --with-system-potrace \
+ --with-system-libpaper \
+ --with-freetype2-libdir=/usr/lib \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-05-25 Thread Felix Yan
Date: Tuesday, May 26, 2015 @ 07:45:40
  Author: fyan
Revision: 239758

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 239757, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 239757, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 239757, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 239757, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 239757, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 239757, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 239757, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-05-26 05:45:40 UTC (rev 239758)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=8
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex 

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-04-04 Thread Evangelos Foutras
Date: Sunday, April 5, 2015 @ 03:33:58
  Author: foutrelis
Revision: 235476

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 235475, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 235475, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 235475, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 235475, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 235475, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 235475, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 235475, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-05 01:33:58 UTC (rev 235476)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=7
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-03-01 Thread Andreas Radke
Date: Sunday, March 1, 2015 @ 18:44:50
  Author: andyrtr
Revision: 232389

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 232388, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 232388, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 232388, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 232388, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 232388, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 232388, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 232388, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-03-01 17:44:50 UTC (rev 232389)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=6
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2015-01-31 Thread Andreas Radke
Date: Saturday, January 31, 2015 @ 16:43:25
  Author: andyrtr
Revision: 230327

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 230326, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 230326, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 230326, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 230326, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 230326, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 230326, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 230326, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-01-31 15:43:25 UTC (rev 230327)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=5
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 07:41:00
  Author: foutrelis
Revision: 227814

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 227813, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 227813, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 227813, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 227813, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 227813, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 227813, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 227813, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-20 06:41:00 UTC (rev 227814)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=4
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:44:45
  Author: bpiotrowski
Revision: 225762

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 225761, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 225761, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 225761, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 225761, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 225761, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 225761, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 225761, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-08 17:44:45 UTC (rev 225762)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=3
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2014-10-17 Thread Evangelos Foutras
Date: Friday, October 17, 2014 @ 20:42:03
  Author: foutrelis
Revision: 224695

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 224694, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 224694, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 224694, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 224694, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 224694, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 224694, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 224694, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-10-17 18:42:03 UTC (rev 224695)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=2
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2014-08-13 Thread Rémy Oudompheng
Date: Thursday, August 14, 2014 @ 01:38:12
  Author: remy
Revision: 219724

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 219723, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 219723, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 219723, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 219723, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 219723, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 219723, texlive-bin/trunk/texlive.install)

-+
 testing-i686/PKGBUILD   |  329 ++
 testing-i686/fix-fontforge-encoding.patch   |   12 
 testing-i686/texlive.install|   49 +++
 testing-x86_64/PKGBUILD |  329 ++
 testing-x86_64/fix-fontforge-encoding.patch |   12 
 testing-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/testing-i686/PKGBUILD (from rev 219723, 
texlive-bin/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-13 23:38:12 UTC (rev 219724)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=1
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2014-04-08 Thread Felix Yan
Date: Tuesday, April 8, 2014 @ 09:52:01
  Author: fyan
Revision: 209907

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 209906, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 209906, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 209906, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 209906, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 209906, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 209906, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  312 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 +
 staging-i686/texlive.install|   50 
 staging-x86_64/PKGBUILD |  312 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 +
 staging-x86_64/texlive.install  |   50 
 6 files changed, 748 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 209906, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-08 07:52:01 UTC (rev 209907)
@@ -0,0 +1,312 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2013.30973
+pkgrel=9
+_biber_ver=1.8 # for biblatex 2.8 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.24.4'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '0a8ffd5c0002a080a4202057b1f106c6'
+ '64715ade77a7d659fd43be8773ebfdb9'
+ '1011bee56611d55a1818a8698afdc6ed')
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2013-11-29 Thread Andreas Radke
Date: Friday, November 29, 2013 @ 22:11:21
  Author: andyrtr
Revision: 200614

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 200613, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 200613, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 200613, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 200613, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 200613, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 200613, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  312 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 +
 staging-i686/texlive.install|   50 
 staging-x86_64/PKGBUILD |  312 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 +
 staging-x86_64/texlive.install  |   50 
 6 files changed, 748 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 200613, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-11-29 21:11:21 UTC (rev 200614)
@@ -0,0 +1,312 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2013.30973
+pkgrel=7
+_biber_ver=1.7 # for biblatex 2.7 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.24.4'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '0a8ffd5c0002a080a4202057b1f106c6'
+ 'e9764676c37b820caaba5d3270567e18'
+ '92cd2a292a27c40ea09f77d135d850ad')
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ 

[arch-commits] Commit in texlive-bin/repos (8 files)

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 15:32:18
  Author: andyrtr
Revision: 196426

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 196425, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 196425, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 196425, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 196425, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 196425, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 196425, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  310 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 +
 staging-i686/texlive.install|   50 
 staging-x86_64/PKGBUILD |  310 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 +
 staging-x86_64/texlive.install  |   50 
 6 files changed, 744 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 196425, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-10-13 13:32:18 UTC (rev 196426)
@@ -0,0 +1,310 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2013.30973
+pkgrel=5
+_biber_ver=1.7 # for biblatex 2.7 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.24.0'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!libtool' '!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '0a8ffd5c0002a080a4202057b1f106c6'
+ 'e9764676c37b820caaba5d3270567e18'
+ '92cd2a292a27c40ea09f77d135d850ad')
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy 

[arch-commits] Commit in texlive-bin/repos (8 files)

2013-08-03 Thread Rémy Oudompheng
Date: Saturday, August 3, 2013 @ 22:46:26
  Author: remy
Revision: 192006

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 192005, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 192005, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 192005, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 192005, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 192005, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 192005, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  298 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 +
 staging-i686/texlive.install|   50 
 staging-x86_64/PKGBUILD |  298 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 +
 staging-x86_64/texlive.install  |   50 
 6 files changed, 720 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 192005, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-03 20:46:26 UTC (rev 192006)
@@ -0,0 +1,298 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2013.30973
+pkgrel=3
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.24.0'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!libtool' '!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '0a8ffd5c0002a080a4202057b1f106c6')
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy-rules --disable-xindy-docs
+   #
+   ### make
+   echo ---
+   echo -- Building the whole beast ...
+   echo ---
+   make
+}
+
+package() {
+   cd $srcdir
+
+   #
+   ### install
+   cd source
+   # fixes for xindy
+   find utils/xindy -name Makefile -exec sed -i -e s|^prefix =.\+$|prefix = 
$pkgdir/usr| -e s|^mandir =.\+$|mandir = 

[arch-commits] Commit in texlive-bin/repos (8 files)

2013-07-02 Thread Rémy Oudompheng
Date: Tuesday, July 2, 2013 @ 23:54:18
  Author: remy
Revision: 189305

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 189304, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 189304, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 189304, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 189304, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 189304, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 189304, texlive-bin/trunk/texlive.install)

-+
 testing-i686/PKGBUILD   |  298 ++
 testing-i686/fix-fontforge-encoding.patch   |   12 +
 testing-i686/texlive.install|   50 
 testing-x86_64/PKGBUILD |  298 ++
 testing-x86_64/fix-fontforge-encoding.patch |   12 +
 testing-x86_64/texlive.install  |   50 
 6 files changed, 720 insertions(+)

Copied: texlive-bin/repos/testing-i686/PKGBUILD (from rev 189304, 
texlive-bin/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-07-02 21:54:18 UTC (rev 189305)
@@ -0,0 +1,298 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2013.30973
+pkgrel=1
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.22.0'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!libtool' '!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '0a8ffd5c0002a080a4202057b1f106c6')
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy-rules --disable-xindy-docs
+   #
+   ### make
+   echo ---
+   echo -- Building the whole beast ...
+   echo ---
+   make
+}
+
+package() {
+   cd $srcdir
+
+   #
+   ### install
+   cd source
+   # fixes for xindy
+   find utils/xindy -name Makefile -exec sed -i -e s|^prefix =.\+$|prefix = 
$pkgdir/usr| -e s|^mandir =.\+$|mandir = 

[arch-commits] Commit in texlive-bin/repos (8 files)

2012-05-21 Thread Jan de Groot
Date: Monday, May 21, 2012 @ 12:28:04
  Author: jgc
Revision: 159333

db-move: moved texlive-bin from [staging] to [testing] (x86_64)

Added:
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/09-texlive-fonts.conf
(from rev 159319, texlive-bin/repos/staging-x86_64/09-texlive-fonts.conf)
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 159319, texlive-bin/repos/staging-x86_64/PKGBUILD)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 159319, 
texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/luatex-poppler-0.20.patch
(from rev 159319, 
texlive-bin/repos/staging-x86_64/luatex-poppler-0.20.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 159319, texlive-bin/repos/staging-x86_64/texlive.install)
  texlive-bin/repos/testing-x86_64/texmf.cnf
(from rev 159319, texlive-bin/repos/staging-x86_64/texmf.cnf)
Deleted:
  texlive-bin/repos/staging-x86_64/

--+
 09-texlive-fonts.conf|9 
 PKGBUILD |  350 +++
 fix-fontforge-encoding.patch |   12 
 luatex-poppler-0.20.patch|   77 
 texlive.install  |   37 ++
 texmf.cnf|  724 +
 6 files changed, 1209 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 159332:159333 to see the changes.


[arch-commits] Commit in texlive-bin/repos (8 files)

2012-05-21 Thread Jan de Groot
Date: Monday, May 21, 2012 @ 12:28:03
  Author: jgc
Revision: 159332

db-move: moved texlive-bin from [staging] to [testing] (i686)

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/09-texlive-fonts.conf
(from rev 159319, texlive-bin/repos/staging-i686/09-texlive-fonts.conf)
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 159319, texlive-bin/repos/staging-i686/PKGBUILD)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 159319, 
texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/luatex-poppler-0.20.patch
(from rev 159319, texlive-bin/repos/staging-i686/luatex-poppler-0.20.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 159319, texlive-bin/repos/staging-i686/texlive.install)
  texlive-bin/repos/testing-i686/texmf.cnf
(from rev 159319, texlive-bin/repos/staging-i686/texmf.cnf)
Deleted:
  texlive-bin/repos/staging-i686/

--+
 09-texlive-fonts.conf|9 
 PKGBUILD |  350 +++
 fix-fontforge-encoding.patch |   12 
 luatex-poppler-0.20.patch|   77 
 texlive.install  |   37 ++
 texmf.cnf|  724 +
 6 files changed, 1209 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 159331:159332 to see the changes.


[arch-commits] Commit in texlive-bin/repos (8 files)

2011-11-12 Thread andyrtr
Date: Saturday, November 12, 2011 @ 05:11:09
  Author: andyrtr
Revision: 142583

db-move: moved texlive-bin from [staging] to [testing] (i686)

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/09-texlive-fonts.conf
(from rev 142569, texlive-bin/repos/staging-i686/09-texlive-fonts.conf)
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 142569, texlive-bin/repos/staging-i686/PKGBUILD)
  texlive-bin/repos/testing-i686/archlinux-build.patch
(from rev 142569, texlive-bin/repos/staging-i686/archlinux-build.patch)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 142569, 
texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 142569, texlive-bin/repos/staging-i686/texlive.install)
  texlive-bin/repos/testing-i686/texmf.cnf
(from rev 142569, texlive-bin/repos/staging-i686/texmf.cnf)
Deleted:
  texlive-bin/repos/staging-i686/

--+
 09-texlive-fonts.conf|9 
 PKGBUILD |  338 
 archlinux-build.patch|   40 ++
 fix-fontforge-encoding.patch |   12 
 texlive.install  |   18 +
 texmf.cnf|  676 +
 6 files changed, 1093 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 142582:142583 to see the changes.


[arch-commits] Commit in texlive-bin/repos (8 files)

2011-11-12 Thread andyrtr
Date: Saturday, November 12, 2011 @ 05:11:10
  Author: andyrtr
Revision: 142584

db-move: moved texlive-bin from [staging] to [testing] (x86_64)

Added:
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/09-texlive-fonts.conf
(from rev 142569, texlive-bin/repos/staging-x86_64/09-texlive-fonts.conf)
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 142569, texlive-bin/repos/staging-x86_64/PKGBUILD)
  texlive-bin/repos/testing-x86_64/archlinux-build.patch
(from rev 142569, texlive-bin/repos/staging-x86_64/archlinux-build.patch)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 142569, 
texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 142569, texlive-bin/repos/staging-x86_64/texlive.install)
  texlive-bin/repos/testing-x86_64/texmf.cnf
(from rev 142569, texlive-bin/repos/staging-x86_64/texmf.cnf)
Deleted:
  texlive-bin/repos/staging-x86_64/

--+
 09-texlive-fonts.conf|9 
 PKGBUILD |  338 
 archlinux-build.patch|   40 ++
 fix-fontforge-encoding.patch |   12 
 texlive.install  |   18 +
 texmf.cnf|  676 +
 6 files changed, 1093 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 142583:142584 to see the changes.