diff options
author | bedlam <bedlam> | 2023-05-26 10:17:33 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-27 08:08:51 +0700 |
commit | 6d40bb2c1ed0d99a9e5518f56d3f354573eea1d9 (patch) | |
tree | 0cee72581ba31990abb4a6e788a91d539dde024f /graphics/dvisvgm | |
parent | 468fd00a0d940cac204e14ca872917484eff12f9 (diff) |
graphics/dvisvgm: Removed. Included in texlive.
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/dvisvgm')
-rw-r--r-- | graphics/dvisvgm/README | 35 | ||||
-rw-r--r-- | graphics/dvisvgm/c-std.h.diff | 14 | ||||
-rw-r--r-- | graphics/dvisvgm/dvisvgm.SlackBuild | 127 | ||||
-rw-r--r-- | graphics/dvisvgm/dvisvgm.info | 10 | ||||
-rw-r--r-- | graphics/dvisvgm/slack-desc | 19 |
5 files changed, 0 insertions, 205 deletions
diff --git a/graphics/dvisvgm/README b/graphics/dvisvgm/README deleted file mode 100644 index 148ce481e5c34..0000000000000 --- a/graphics/dvisvgm/README +++ /dev/null @@ -1,35 +0,0 @@ -dvisvgm is a fast DVI (and EPS) to SVG converter - -The command-line utility dvisvgm is a tool for TeX/LaTeX users. It -converts DVI and EPS files to the XML-based scalable vector graphics -format SVG. The latest releases support standard DVI files (format 2) -as well as DVI output created by pTeX in vertical mode (format 3), and -XeTeX (format 5 and 6, also known as XDV). - -dvisvgm version 1.6 is present in texlive-2014052. This separate -package presents an updated version 1.11 of dvisvgm offering various -bugfixes and the following main features: - -* Complete font support including virtual fonts, evaluation of font - encodings, CMap files, sub-font definitions and font maps. -* Glyph outlines of all required fonts are embedded into the generated - SVG files. -* Glyph outlines of fonts that are not available in a vector format are - generated on-the-fly by vectorizing METAFONT's bitmap output. -* dvisvgm allows to replace font definitions by paths so that - applications without SVG font support are enabled to render dvisvgm's - output properly. -* Computes tight bounding boxes for the generated graphics, but - supports common paper formats and arbitrary user-defined sizes - as well. -* Option --eps allows to convert EPS files to SVG. -* Intersections of clipping paths can be computed directly instead of - delegating this task to the SVG renderer. This increases the - compatibility of the generated SVG files. -* Approximates PostScript color gradient fills not directly supported - by SVG 1.1. -* Optionally creates compressed SVGZ files. -* Provides options for applying page transformations, like translation, - rotation, scaling, and skewing. -* Evaluates color, emTeX, tpic, hyperref/HyperTeX, PDF mapfile, and - PostScript specials. diff --git a/graphics/dvisvgm/c-std.h.diff b/graphics/dvisvgm/c-std.h.diff deleted file mode 100644 index 7f8d4035232f4..0000000000000 --- a/graphics/dvisvgm/c-std.h.diff +++ /dev/null @@ -1,14 +0,0 @@ ---- c-std.h 2010-05-17 22:01:37.000000000 +0200 -+++ c-std.h.new 2015-11-19 10:18:18.000000000 +0100 -@@ -93,9 +93,9 @@ - #else - #ifndef WIN32 - /* `popen' and `pclose' are part of POSIX.2, not POSIX.1. So -- STDC_HEADERS isn't enough. */ -+ STDC_HEADERS isn't enough. - extern FILE *popen (); --extern int pclose (); -+extern int pclose (); */ - #endif /* not WIN32 */ - #endif /* not VMS */ - diff --git a/graphics/dvisvgm/dvisvgm.SlackBuild b/graphics/dvisvgm/dvisvgm.SlackBuild deleted file mode 100644 index c46593fa1d005..0000000000000 --- a/graphics/dvisvgm/dvisvgm.SlackBuild +++ /dev/null @@ -1,127 +0,0 @@ -#!/bin/bash -# Slackware build script for dvisvgm -# SlackBuild Version: 151119 -# Copyright 2015 Igor ( igor29768 AT gmail.com ) -# Based on the SlackBuild script by Rudson Alves (rudsonalves@yahoo.com.br) -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=dvisvgm -VERSION=${VERSION:-1.12} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -# Libkpathsea check... -# If Slackware tetex is installed -if [ -d /usr/share/texmf/include/kpathsea ] && [ ! -e /usr/include/kpathsea ]; then - cp -r /usr/share/texmf/include/kpathsea/ $TMP/$PRGNAM-$VERSION - cd kpathsea - patch -i $CWD/c-std.h.diff - cd .. - export CPPFLAGS+="$SLKCFLAGS -I$TMP/$PRGNAM-$VERSION" -fi - -if [ ! -e /usr/lib${LIBDIRSUFFIX}/libkpathsea.la ] && [ -e /usr/share/texmf/lib/libkpathsea.la ]; then - LIBS+=" -l/usr/share/texmf/lib/" - export LDFLAGS+=" -L/usr/share/texmf/lib/" -fi - -echo "CPPFLAGS=$CPPFLAGS LIBS=$LIBS LDFLAGS=$LDFLAGS" - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING INSTALL LGPL-2.1.txt NEWS README $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/graphics/dvisvgm/dvisvgm.info b/graphics/dvisvgm/dvisvgm.info deleted file mode 100644 index 7d343a50bedb4..0000000000000 --- a/graphics/dvisvgm/dvisvgm.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="dvisvgm" -VERSION="1.12" -HOMEPAGE="http://dvisvgm.bplaced.net" -DOWNLOAD="https://github.com/mgieseki/dvisvgm/releases/download/1.12/dvisvgm-1.12.tar.gz" -MD5SUM="a6b3870156cdbdb1eadc543a3f7d5b8d" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="potrace" -MAINTAINER="Igor" -EMAIL="igor29768@gmail.com" diff --git a/graphics/dvisvgm/slack-desc b/graphics/dvisvgm/slack-desc deleted file mode 100644 index 96cddb16548e6..0000000000000 --- a/graphics/dvisvgm/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -dvisvgm: dvisvgm (converts DVI and EPS files to SVG -Scalable Vector Graphics) -dvisvgm: -dvisvgm: dvisvgm a tool for TeX/LaTeX users to converts DVI and -dvisvgm: EPS files to the XML-based scalable vector graphics format SVG -dvisvgm: version 1.1. -dvisvgm: It currently supports standard DVI files (format 2) as well as -dvisvgm: DVI output created by pTeX in vertical mode (format 3), and -dvisvgm: XeTeX (format 5 and 6, also known as XDV). -dvisvgm: Option --eps allows to convert EPS files to SVG. -dvisvgm: -dvisvgm: http://dvisvgm.bplaced.net |