From eb9b95069dd7df896268fd0d50a746cef6137285 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Thu, 14 Nov 2013 19:27:29 +0100 Subject: system/epson-inkjet-printer-stylus-tx550w-series: Removed. (dead links) Signed-off-by: Matteo Bernardini --- .../README | 16 --- ...-inkjet-printer-stylus-tx550w-series.SlackBuild | 112 --------------------- .../epson-inkjet-printer-stylus-tx550w-series.info | 14 --- .../slack-desc | 19 ---- 4 files changed, 161 deletions(-) delete mode 100644 system/epson-inkjet-printer-stylus-tx550w-series/README delete mode 100644 system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.SlackBuild delete mode 100644 system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.info delete mode 100644 system/epson-inkjet-printer-stylus-tx550w-series/slack-desc (limited to 'system') diff --git a/system/epson-inkjet-printer-stylus-tx550w-series/README b/system/epson-inkjet-printer-stylus-tx550w-series/README deleted file mode 100644 index dd371bdc6a..0000000000 --- a/system/epson-inkjet-printer-stylus-tx550w-series/README +++ /dev/null @@ -1,16 +0,0 @@ -Epson Inkjet Printer Driver - Epson Stylus TX550W Series - -This software is a filter program used with Common UNIX Printing -System (CUPS) from the Linux. This can supply the high quality print -with Seiko Epson Color Ink Jet Printers. - -This printer driver is supporting the following printers. - -Epson Stylus TX550W -Epson Stylus SX510W -Epson Stylus SX515W -Epson Stylus NX510 -Epson Stylus NX515 - -For detail list of supported printer, please refer to below site: -http://avasys.jp/english/linux_e/ diff --git a/system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.SlackBuild b/system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.SlackBuild deleted file mode 100644 index d94f8c87ee..0000000000 --- a/system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.SlackBuild +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh - -# Slackware build script for epson-inkjet-printer-stylus-tx550w-series - -# Written by Mark Grocock - -PRGNAM=epson-inkjet-printer-stylus-tx550w-series -VERSION=${VERSION:-1.0.0} -EXTRAVERSION=${EXTRAVERSION:-1lsb3.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) 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 - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -mkdir $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -rpm2cpio $CWD/$PRGNAM-$VERSION-$EXTRAVERSION.src.rpm | cpio -idmv -tar xvf epson-inkjet-printer-filter-$VERSION.tar.gz -tar xvf $PRGNAM-$VERSION.tar.gz -rpm2cpio $CWD/$PRGNAM-$VERSION-$EXTRAVERSION.$ARCH.rpm | cpio -idmv -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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -cd epson-inkjet-printer-filter-$VERSION - -autoreconf -fi -chmod a+x configure - -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 - -sed -i "s|/usr/resource|/usr/share/$PRGNAM/resource|" config.h - -make - -mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/cups/filter -cp -a src/epson_inkjet_printer_filter $PKG/usr/lib${LIBDIRSUFFIX}/cups/filter - -cd ../$PRGNAM-$VERSION - -find ppds -name '*.ppd' | while read ppd; do - sed -i -e "s|/opt/$PRGNAM/cups/lib/filter|/usr/lib${LIBDIRSUFFIX}/cups/filter|" \ - -e "s|/opt/$PRGNAM/watermark|/usr/share/$PRGNAM/watermark|" "$ppd" - gzip -9 "$ppd" -done - -mkdir -p $PKG/usr/share/cups/model/Epson -cp -a ppds/*.ppd.gz $PKG/usr/share/cups/model/Epson - -mkdir -p $PKG/usr/share/$PRGNAM -cp -a resource watermark $PKG/usr/share/$PRGNAM - -install -m 755 ../opt/$PRGNAM/lib${LIBDIRSUFFIX}/*.so.* $PKG/usr/lib${LIBDIRSUFFIX} - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING COPYING.EPSON Manual.txt README \ - ../epson-inkjet-printer-filter-$VERSION/COPYING.LIB \ - $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:-tgz} diff --git a/system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.info b/system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.info deleted file mode 100644 index d0031da39b..0000000000 --- a/system/epson-inkjet-printer-stylus-tx550w-series/epson-inkjet-printer-stylus-tx550w-series.info +++ /dev/null @@ -1,14 +0,0 @@ -PRGNAM="epson-inkjet-printer-stylus-tx550w-series" -VERSION="1.0.0" -HOMEPAGE="http://avasys.jp/english/linux_e/" -DOWNLOAD="\ - http://linux.avasys.jp/drivers/lsb/epson-inkjet/stable/SRPMS/epson-inkjet-printer-stylus-tx550w-series-1.0.0-1lsb3.2.src.rpm \ - http://linux.avasys.jp/drivers/lsb/epson-inkjet/stable/RPMS/i486/epson-inkjet-printer-stylus-tx550w-series-1.0.0-1lsb3.2.i486.rpm" -MD5SUM="4d38415c92bc7d90efd27ac3632a3b8d d40ccfa38ae407a3274836617e098187" -DOWNLOAD_x86_64="\ - http://linux.avasys.jp/drivers/lsb/epson-inkjet/stable/SRPMS/epson-inkjet-printer-stylus-tx550w-series-1.0.0-1lsb3.2.src.rpm \ - http://linux.avasys.jp/drivers/lsb/epson-inkjet/stable/RPMS/x86_64/epson-inkjet-printer-stylus-tx550w-series-1.0.0-1lsb3.2.x86_64.rpm" -MD5SUM_x86_64="4d38415c92bc7d90efd27ac3632a3b8d c3fd26b20e285431ed252c58744b9aa0" -REQUIRES="" -MAINTAINER="Mark Grocock" -EMAIL="mark@grocock.me.uk" diff --git a/system/epson-inkjet-printer-stylus-tx550w-series/slack-desc b/system/epson-inkjet-printer-stylus-tx550w-series/slack-desc deleted file mode 100644 index fdbe3b3e5b..0000000000 --- a/system/epson-inkjet-printer-stylus-tx550w-series/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------------------------------------------------------| -epson-inkjet-printer-stylus-tx550w-series: epson stylus-tx550w series (Epson Inkjet Printer Driver) -epson-inkjet-printer-stylus-tx550w-series: -epson-inkjet-printer-stylus-tx550w-series: This software is a filter program used with Common UNIX Printing -epson-inkjet-printer-stylus-tx550w-series: System (CUPS) from the Linux. This can supply the high quality print -epson-inkjet-printer-stylus-tx550w-series: with Seiko Epson Color Ink Jet Printers. -epson-inkjet-printer-stylus-tx550w-series: -epson-inkjet-printer-stylus-tx550w-series: For detail list of supported printer, please refer to below site: -epson-inkjet-printer-stylus-tx550w-series: -epson-inkjet-printer-stylus-tx550w-series: http://avasys.jp/english/linux_e/ -epson-inkjet-printer-stylus-tx550w-series: -epson-inkjet-printer-stylus-tx550w-series: -- cgit v1.2.3