From 35705b5b459b7a02ff142cfc5711abba302b246c Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Thu, 31 Mar 2011 00:22:38 -0500 Subject: office/html2ps: Removed (build failure) Signed-off-by: Robby Workman --- office/html2ps/README | 5 -- office/html2ps/doinst.sh | 19 ------- office/html2ps/html2ps.SlackBuild | 105 -------------------------------------- office/html2ps/html2ps.info | 10 ---- office/html2ps/slack-desc | 19 ------- office/html2ps/xhtml2ps.desktop | 12 ----- office/html2ps/xhtml2ps.png | Bin 17143 -> 0 bytes 7 files changed, 170 deletions(-) delete mode 100644 office/html2ps/README delete mode 100644 office/html2ps/doinst.sh delete mode 100644 office/html2ps/html2ps.SlackBuild delete mode 100644 office/html2ps/html2ps.info delete mode 100644 office/html2ps/slack-desc delete mode 100644 office/html2ps/xhtml2ps.desktop delete mode 100644 office/html2ps/xhtml2ps.png (limited to 'office') diff --git a/office/html2ps/README b/office/html2ps/README deleted file mode 100644 index ce9d65f401..0000000000 --- a/office/html2ps/README +++ /dev/null @@ -1,5 +0,0 @@ -html2ps converts HTML pages to PostScript documents. The HTML code can be -retrieved from one or more URL:s or local files, specified as parameters on -the command line. If no parameter is given, html2ps reads from standard input. - -This package also includes xhtml2ps, a graphical front-end for html2ps. diff --git a/office/html2ps/doinst.sh b/office/html2ps/doinst.sh deleted file mode 100644 index b50d1fd817..0000000000 --- a/office/html2ps/doinst.sh +++ /dev/null @@ -1,19 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -config etc/html2ps/html2psrc.new - diff --git a/office/html2ps/html2ps.SlackBuild b/office/html2ps/html2ps.SlackBuild deleted file mode 100644 index fe11ff8d66..0000000000 --- a/office/html2ps/html2ps.SlackBuild +++ /dev/null @@ -1,105 +0,0 @@ -#!/bin/sh - -# Slackware build script for html2ps - -# Written by Dario Nicodemi dario.sbo@gmail.com - -PRGNAM=html2ps -VERSION=${VERSION:-1.0b7} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 # Exit on most errors - -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 . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Install to packaging directory -./install < $PKG/usr/share/applications/xhtml2ps.desktop -cat $CWD/xhtml2ps.png > $PKG/usr/share/pixmaps/xhtml2ps.png - -find $PKG/usr/man -type f -exec gzip -9 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/contrib/xhtml2ps -cp -a html2ps.ps COPYING README $PKG/usr/doc/$PRGNAM-$VERSION -cp -a contrib/xhtml2ps/LICENSE contrib/xhtml2ps/README \ - $PKG/usr/doc/$PRGNAM-$VERSION/contrib/xhtml2ps -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/office/html2ps/html2ps.info b/office/html2ps/html2ps.info deleted file mode 100644 index 17986c6770..0000000000 --- a/office/html2ps/html2ps.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="html2ps" -VERSION="1.0b6" -HOMEPAGE="http://user.it.uu.se/~jan/html2ps.html" -DOWNLOAD="http://user.it.uu.se/~jan/html2ps-1.0b7.tar.gz" -MD5SUM="073ab8a239c8d0e3547192ee9016db15" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Dario Nicodemi" -EMAIL="dario.sbo@gmail.com" -APPROVED="rworkman" diff --git a/office/html2ps/slack-desc b/office/html2ps/slack-desc deleted file mode 100644 index 1d7bcf8aea..0000000000 --- a/office/html2ps/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 ':'. - - |-----handy-ruler------------------------------------------------------| -html2ps: html2ps - HTML to Postscript converter -html2ps: -html2ps: html2ps converts HTML pages to PostScript documents. The HTML code -html2ps: can be retrieved from one or more URL:s or local files, specified as -html2ps: parameters on the command line. If no parameter is given, html2ps -html2ps: reads from standard input. -html2ps: You need Perl 5 in order to run html2ps. -html2ps: -html2ps: This package also includes xhtml2ps, a graphical front-end for -html2ps: html2ps written in Tcl/Tk. -html2ps: diff --git a/office/html2ps/xhtml2ps.desktop b/office/html2ps/xhtml2ps.desktop deleted file mode 100644 index 2dc89278d6..0000000000 --- a/office/html2ps/xhtml2ps.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Version=1.0 -Exec=xhtml2ps -TryExec=xhtml2ps -Icon=xhtml2ps -Terminal=false -Name=xhtml2ps -GenericName=HTML to PS Converter -Comment=HTML to PS Converter -Categories=Office; -Type=Application -StartupNotify=false diff --git a/office/html2ps/xhtml2ps.png b/office/html2ps/xhtml2ps.png deleted file mode 100644 index 433e65b1ad..0000000000 Binary files a/office/html2ps/xhtml2ps.png and /dev/null differ -- cgit v1.2.3