mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
graphics/fbpic: Added (display an image on the framebuffer)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
1a8c442955
commit
ef7143283d
5 changed files with 127 additions and 0 deletions
22
graphics/fbpic/README
Normal file
22
graphics/fbpic/README
Normal file
|
@ -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.
|
10
graphics/fbpic/doinst.sh
Normal file
10
graphics/fbpic/doinst.sh
Normal file
|
@ -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
|
||||
|
66
graphics/fbpic/fbpic.SlackBuild
Normal file
66
graphics/fbpic/fbpic.SlackBuild
Normal file
|
@ -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}
|
10
graphics/fbpic/fbpic.info
Normal file
10
graphics/fbpic/fbpic.info
Normal file
|
@ -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"
|
19
graphics/fbpic/slack-desc
Normal file
19
graphics/fbpic/slack-desc
Normal file
|
@ -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:
|
Loading…
Reference in a new issue