Date: Sunday, June 19, 2016 @ 22:31:01 Author: remy Revision: 270217 archrelease: copy trunk to testing-any
Added: texlive-pictures/repos/testing-any/ texlive-pictures/repos/testing-any/PKGBUILD (from rev 270216, texlive-pictures/trunk/PKGBUILD) texlive-pictures/repos/testing-any/texlive-pictures.maps (from rev 270216, texlive-pictures/trunk/texlive-pictures.maps) texlive-pictures/repos/testing-any/texlive.install (from rev 270216, texlive-pictures/trunk/texlive.install) -----------------------+ PKGBUILD | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ texlive-pictures.maps | 2 + texlive.install | 52 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 118 insertions(+) Copied: texlive-pictures/repos/testing-any/PKGBUILD (from rev 270216, texlive-pictures/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2016-06-19 22:31:01 UTC (rev 270217) @@ -0,0 +1,64 @@ +# $Id: PKGBUILD$ +# Maintainer: Rémy Oudompheng <r...@archlinux.org> + +pkgname=texlive-pictures +pkgver=2016.41299 +_revnr=${pkgver#2016.} +pkgrel=1 +pkgdesc="TeX Live - Packages for drawings graphics" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip" "$pkgname.maps") +options=('!emptydirs') +install=texlive.install +md5sums=('eb472d7206189f1318c1d2a0bd22f6f2' + '7d08cb8ade87687bd8676f8e8ba20697') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi + + _linked_scripts=" +cachepic/cachepic.tlu +epspdf/epspdftk.tcl +epspdf/epspdf.tlu +fig4latex/fig4latex +getmap/getmapdl.lua +mathspic/mathspic.pl +mkpic/mkpic +petri-nets/pn2pdf +" + install -m755 -d $pkgdir/usr/bin + for _script in ${_linked_scripts}; do + _scriptbase=$(basename $_script) + _scriptbase=${_scriptbase%.*} + ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase} + done +} Copied: texlive-pictures/repos/testing-any/texlive-pictures.maps (from rev 270216, texlive-pictures/trunk/texlive-pictures.maps) =================================================================== --- testing-any/texlive-pictures.maps (rev 0) +++ testing-any/texlive-pictures.maps 2016-06-19 22:31:01 UTC (rev 270217) @@ -0,0 +1,2 @@ +Map knitfont.map +MixedMap xypic.map Copied: texlive-pictures/repos/testing-any/texlive.install (from rev 270216, texlive-pictures/trunk/texlive.install) =================================================================== --- testing-any/texlive.install (rev 0) +++ testing-any/texlive.install 2016-06-19 22:31:01 UTC (rev 270217) @@ -0,0 +1,52 @@ +PKGNAME="texlive-pictures" +UPDMAP="etc/texmf/web2c/updmap.cfg" +UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg" +SYNCWITHTREES='' + +MAPFILE="var/lib/texmf/arch/installedpkgs/$PKGNAME.maps" + +post_install() { + TMPFILE=`mktemp` + echo ">>> texlive: saving updmap.cfg as $TMPFILE..." + cp "$UPDMAP" "$TMPFILE" + echo ">>> texlive: regenerating updmap.cfg (custom additions should go" + echo " into /etc/texmf/web2c/updmap-local.cfg" + cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP + cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP + [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP + echo ">>> texlive: updating the filename database..." + usr/bin/mktexlsr + echo ">>> texlive: updating the fontmap files with updmap..." + usr/bin/updmap-sys --quiet --nohash + echo " done." +} + +post_upgrade() { + TMPFILE=`mktemp` + echo ">>> texlive: saving updmap.cfg as $TMPFILE..." + cp "$UPDMAP" "$TMPFILE" + echo ">>> texlive: regenerating updmap.cfg (custom additions should go" + echo " into /etc/texmf/web2c/updmap-local.cfg" + cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP + cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP + [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP + echo ">>> texlive: updating the filename database..." + usr/bin/mktexlsr + echo ">>> texlive: updating the fontmap files with updmap..." + usr/bin/updmap-sys --quiet --nohash $SYNCWITHTREES + echo " done." +} + +pre_remove() { +for m in `cut -d' ' -f2 $MAPFILE`; do + sed -i "/\s$m/d" $UPDMAP ; +done +} + +post_remove() { + echo ">>> texlive: updating the filename database..." + usr/bin/mktexlsr + echo ">>> texlive: updating the fontmap files with updmap..." + usr/bin/updmap-sys --quiet --nohash + echo " done." +}