summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author K.D.Hedger2012-02-22 14:16:46 +0100
committer Erik Hanson2012-03-29 17:17:25 +0200
commitef7143283d0a7bd8c42099cdf1d3e745fe3b7433 (patch)
tree265b569a755b0ac45ba819eecd5fdcef020760a0
parent1a8c442955917ceff3a5a22b27ed80f5f6dc8589 (diff)
downloadslackbuilds-ef7143283d0a7bd8c42099cdf1d3e745fe3b7433.tar.gz
graphics/fbpic: Added (display an image on the framebuffer)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
-rw-r--r--graphics/fbpic/README22
-rw-r--r--graphics/fbpic/doinst.sh10
-rw-r--r--graphics/fbpic/fbpic.SlackBuild66
-rw-r--r--graphics/fbpic/fbpic.info10
-rw-r--r--graphics/fbpic/slack-desc19
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: