diff options
author | Kyle Guinn <elyk03@gmail.com> | 2015-04-16 22:02:09 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-04-19 11:24:04 +0700 |
commit | 4f89a0933a7b037fade79011821ab33ea245de41 (patch) | |
tree | e1b02b181ac5ebb18828b7b6db9e4c6718eee518 /graphics | |
parent | 83068eb4910e19b5037ba85cc54c51fc61a75d0f (diff) |
graphics/potrace: Updated for version 1.12.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/potrace/README | 23 | ||||
-rw-r--r-- | graphics/potrace/potrace.SlackBuild | 44 | ||||
-rw-r--r-- | graphics/potrace/potrace.info | 6 |
3 files changed, 36 insertions, 37 deletions
diff --git a/graphics/potrace/README b/graphics/potrace/README index 4c3465422d58..6abad90620ae 100644 --- a/graphics/potrace/README +++ b/graphics/potrace/README @@ -1,15 +1,14 @@ -Potrace is a utility for tracing a bitmap, which means, transforming a -bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM, -PPM, or BMP format), and the default output is an encapsulated PostScript -file (EPS). A typical use is to create EPS files from scanned data, such as -company or university logos, handwritten notes, etc. The resulting image -is not "jaggy" like a bitmap, but smooth. It can then be rendered at any -resolution. +Potrace is a tool for tracing a bitmap, which means, transforming a bitmap +into a smooth, scalable image. The input is a bitmap (PBM, PGM, PPM, or BMP +format), and the default output is an encapsulated PostScript file (EPS). A +typical use is to create EPS files from scanned data, such as company or +university logos, handwritten notes, etc. The resulting image is not "jaggy" +like a bitmap, but smooth. It can then be rendered at any resolution. -Potrace can currently produce the following output formats: EPS, -PostScript, PDF, SVG (scalable vector graphics), Xfig, Gimppath, and PGM -(for easy antialiasing). +Potrace can currently produce the following output formats: EPS, PostScript, +PDF, SVG (scalable vector graphics), DXF, GeoJSON, PGM (for easy antialiasing +of pixel-based images), Gimppath, and XFig. Additional backends might be +added in the future. Mkbitmap is a program distributed with Potrace which can be used to pre- -process the input for better tracing behavior on greyscale and color -images. +process the input for better tracing behavior on greyscale and color images. diff --git a/graphics/potrace/potrace.SlackBuild b/graphics/potrace/potrace.SlackBuild index 9dcd4382cf10..cf9e38bc8095 100644 --- a/graphics/potrace/potrace.SlackBuild +++ b/graphics/potrace/potrace.SlackBuild @@ -2,36 +2,36 @@ # Slackware build script for potrace -# Copyright 2013 Kyle Guinn <elyk03@gmail.com>, USA +# Copyright 2013,2015 Kyle Guinn <elyk03@gmail.com>, USA # 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. +# 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. +# 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. PRGNAM=potrace -VERSION=${VERSION:-1.11} +VERSION=${VERSION:-1.12} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then - case "$( uname -m )" in + case "$(uname -m)" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; + *) ARCH=$(uname -m) ;; esac fi @@ -40,7 +40,7 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README*" +DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README" if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" @@ -65,11 +65,7 @@ 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 {} \; +chmod -R u+w,go-w,a+rX-st . # For metric units and papersizes, use the following flags to configure: # --enable-metric Use metric units (centimeters) as default @@ -85,14 +81,18 @@ CFLAGS="$SLKCFLAGS" \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --build=$ARCH-slackware-linux \ + --disable-dependency-tracking \ --enable-shared \ --disable-static \ --with-libpotrace make +make check make install-strip DESTDIR=$PKG -find $PKG/usr/man -type f -exec gzip -9 {} \; +find $PKG/usr/lib${LIBDIRSUFFIX} -name '*.la' -delete + +find $PKG/usr/man -type f -exec gzip -9 {} + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/graphics/potrace/potrace.info b/graphics/potrace/potrace.info index dfb7db033e5b..67da0371e327 100644 --- a/graphics/potrace/potrace.info +++ b/graphics/potrace/potrace.info @@ -1,8 +1,8 @@ PRGNAM="potrace" -VERSION="1.11" +VERSION="1.12" HOMEPAGE="http://potrace.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/project/potrace/potrace/1.11/potrace-1.11.tar.gz" -MD5SUM="1d76e350ff277959e1f6b580d818d48f" +DOWNLOAD="http://potrace.sourceforge.net/download/1.12/potrace-1.12.tar.gz" +MD5SUM="314850e30ae4319f0615efdae485abaa" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |