From 28fc54be93d6afa697c1264620ccfe54d9ce9d68 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 29 Mar 2017 22:42:09 +0100 Subject: misc/fbcat: Added (take screenshots of the framebuffer console). Signed-off-by: David Spencer --- misc/fbcat/README | 10 ++++++ misc/fbcat/fbcat.SlackBuild | 75 +++++++++++++++++++++++++++++++++++++++++++++ misc/fbcat/fbcat.info | 10 ++++++ misc/fbcat/slack-desc | 19 ++++++++++++ 4 files changed, 114 insertions(+) create mode 100644 misc/fbcat/README create mode 100644 misc/fbcat/fbcat.SlackBuild create mode 100644 misc/fbcat/fbcat.info create mode 100644 misc/fbcat/slack-desc (limited to 'misc') diff --git a/misc/fbcat/README b/misc/fbcat/README new file mode 100644 index 0000000000..926e05e60e --- /dev/null +++ b/misc/fbcat/README @@ -0,0 +1,10 @@ +fbcat (take screenshots of the framebuffer console) + +fbcat takes a screenshot using the framebuffer device and stores it in a +PPM file. Also provided is a fbgrab command, which takes PNG screenshots +and supports several useful options (such as changing consoles). + +The following visuals are supported: TRUECOLOR, DIRECTCOLOR, PSEUDOCOLOR, +STATIC_PSEUDOCOLOR, MONO01, MONO10. + +On the SlackBuild author's system, fbcat runs about 3x as fast as fbdump. diff --git a/misc/fbcat/fbcat.SlackBuild b/misc/fbcat/fbcat.SlackBuild new file mode 100644 index 0000000000..cfe83e6b3f --- /dev/null +++ b/misc/fbcat/fbcat.SlackBuild @@ -0,0 +1,75 @@ +#!/bin/sh + +# Slackware build script for fbcat + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +PRGNAM=fbcat +VERSION=${VERSION:-0.4.4} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -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 +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +sed -i "s,-g -O2,$SLKCFLAGS," Makefile +make +make -C doc + +# fbgrab is a shell script, don't try to strip it +mkdir -p $PKG/usr/bin $PKG/usr/man/man1 +install -s -m0755 $PRGNAM $PKG/usr/bin +install -m0755 fbgrab $PKG/usr/bin +gzip -9c < doc/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz +gzip -9c < doc/fbgrab.1 > $PKG/usr/man/man1/fbgrab.1.gz + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING doc/changelog doc/tested.txt $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/misc/fbcat/fbcat.info b/misc/fbcat/fbcat.info new file mode 100644 index 0000000000..ce3d559300 --- /dev/null +++ b/misc/fbcat/fbcat.info @@ -0,0 +1,10 @@ +PRGNAM="fbcat" +VERSION="0.4.4" +HOMEPAGE="http://jwilk.net/software/fbcat" +DOWNLOAD="https://github.com/jwilk/fbcat/releases/download/0.4.4/fbcat-0.4.4.tar.gz" +MD5SUM="8be223b178f53d36a3dfa65fde25a6b0" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" diff --git a/misc/fbcat/slack-desc b/misc/fbcat/slack-desc new file mode 100644 index 0000000000..ddcfc8770d --- /dev/null +++ b/misc/fbcat/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +fbcat: fbcat (take screenshots of the framebuffer console) +fbcat: +fbcat: fbcat takes a screenshot using the framebuffer device and stores +fbcat: in a PPM file. Also provided is a fbgrab command, which takes PNG +fbcat: screenshots and supports several useful options (such as changing +fbcat: consoles). +fbcat: +fbcat: +fbcat: +fbcat: +fbcat: -- cgit v1.2.3