graphics/vbetool: Initial import

This commit is contained in:
Alex Lysenka 2010-05-11 14:55:19 +02:00 committed by Michiel van Wessem
parent 85072a8182
commit 5b997fac93
4 changed files with 83 additions and 0 deletions

7
graphics/vbetool/README Normal file
View File

@ -0,0 +1,7 @@
vbetool uses lrmi in order to run code from the video BIOS. Currently,
it is able to alter DPMS states, save/restore video card state, and
attempt to initialize the video card from scratch. It exists primarily
in order to increase the chances of successfully recovering video state
after an ACPI S3 suspend.
Homepage: http://www.srcf.ucam.org/~mjg59/vbetool/

View File

@ -0,0 +1,11 @@
|-----handy-ruler------------------------------------------------------|
vbetool: vbetool (run real-mode video BIOS code to alter the hardware state)
vbetool:
vbetool: vbetool uses lrmi in order to run code from the video BIOS.
vbetool: Currently, it is able to alter DPMS states, save/restore video card
vbetool: state, and attempt to initialize the video card from scratch. It
vbetool: exists primarily in order to increase the chances of successfully
vbetool: recovering video state after an ACPI S3 suspend.
vbetool:
vbetool: Homepage: http://www.srcf.ucam.org/~mjg59/vbetool/
vbetool:

View File

@ -0,0 +1,57 @@
#!/bin/sh
# Build script for vbetool
# Written by Alex Lysenka <me@alkos333.net>
# Modified by the SlackBuilds.org project
set -e
PRGNAM=vbetool
VERSION=0.7
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/${PRGNAM}_${VERSION}-1.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAG="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--mandir=/usr/man
make || exit 1
make install-strip DESTDIR=$PKG || exit 1
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp COPYING LRMI $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
find $PKG/usr/doc -type f -exec chmod 644 {} \;
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.tgz

View File

@ -0,0 +1,8 @@
PRGNAM="vbetool"
VERSION="0.7"
HOMEPAGE="http://www.srcf.ucam.org/~mjg59/vbetool/"
DOWNLOAD="http://www.srcf.ucam.org/~mjg59/vbetool/vbetool_0.7-1.tar.gz"
MD5SUM="1756f2e71ceaef217220e8e482fce835"
MAINTAINER="Alex Lysenka"
EMAIL="me@alkos333.net"
APPROVED="BP{k}"