diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/fbpic/README | 22 | ||||
-rw-r--r-- | graphics/fbpic/doinst.sh | 10 | ||||
-rw-r--r-- | graphics/fbpic/fbpic.SlackBuild | 66 | ||||
-rw-r--r-- | graphics/fbpic/fbpic.info | 10 | ||||
-rw-r--r-- | graphics/fbpic/slack-desc | 19 |
5 files changed, 127 insertions, 0 deletions
diff --git a/graphics/fbpic/README b/graphics/fbpic/README new file mode 100644 index 0000000000..7faa417cc8 --- /dev/null +++ b/graphics/fbpic/README @@ -0,0 +1,22 @@ +FBpic is a simple command to view ppm files on the linux frame buffer. +There are no command line switches, the ppm file is just read in from +stdin. You must have your framebuffer set up to display graphics. + + +EXAMPLES: + +To display the image /fancyboot/images/main.ppm on the console: + + cat '/fancyboot/images/main.ppm'|fbpic + +To scale and display a jpg on the console via Imagemagik: + + convert /fancyboot/images/ntpd.png -scale 1024x768! ppm:-|fbpic + +Simple one line slideshow: + + setterm -cursor off;find /path/to/pics/*.jpg|while read; \ + do convert -scale 1024x768! ppm:-|fbpic;sleep 2;done;setterm -cursor on + +Change "scale" to your frame buffer resolution, change /path/to/pics/ +to point to a folder of jpgs and sleep for the delay. diff --git a/graphics/fbpic/doinst.sh b/graphics/fbpic/doinst.sh new file mode 100644 index 0000000000..1f8ff67ded --- /dev/null +++ b/graphics/fbpic/doinst.sh @@ -0,0 +1,10 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + diff --git a/graphics/fbpic/fbpic.SlackBuild b/graphics/fbpic/fbpic.SlackBuild new file mode 100644 index 0000000000..edfd20008b --- /dev/null +++ b/graphics/fbpic/fbpic.SlackBuild @@ -0,0 +1,66 @@ +#!/bin/sh + +# Slackware build script for fbpic + +# Written by K.D.Hedger kdhedger@yahoo.co.uk + +PRGNAM=fbpic +VERSION=0.0.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="-O3 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tgz +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 {} \; + +CXXFLAGS="$SLKCFLAGS" \ +make +make install PREFIX=/usr DESTDIR=$PKG + +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 +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/graphics/fbpic/fbpic.info b/graphics/fbpic/fbpic.info new file mode 100644 index 0000000000..7b88139f8d --- /dev/null +++ b/graphics/fbpic/fbpic.info @@ -0,0 +1,10 @@ +PRGNAM="fbpic" +VERSION="0.0.2" +HOMEPAGE="http://keithhedger.freetzi.com/" +DOWNLOAD="http://keithhedger.freetzi.com/zips/fbpic-0.0.2.tgz" +MD5SUM="e3df7650fefb8c5d347a96565a69e527" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="K.D.Hedger" +EMAIL="kdhedger@yahoo.co.uk" +APPROVED="Niels Horn" diff --git a/graphics/fbpic/slack-desc b/graphics/fbpic/slack-desc new file mode 100644 index 0000000000..acdde3c53d --- /dev/null +++ b/graphics/fbpic/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +fbpic: fbpic (display an image on the framebuffer) +fbpic: +fbpic: A simple command line app to display an image on the framebuffer. +fbpic: +fbpic: Homepage: http://keithhedger.freetzi.com/ +fbpic: +fbpic: +fbpic: +fbpic: +fbpic: +fbpic: |