diff options
author | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
---|---|---|
committer | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
commit | d150a5f3e462fa7fe194a805a4aa0076f4d03ab9 (patch) | |
tree | ce5e44d69c5f3175bfdbd1e3717b52c5dcca5638 /base/framebuffer/framebuffer.build | |
parent | f29d3519ce073ec30f99754d93304324f7f26d65 (diff) |
Add ports.
Diffstat (limited to 'base/framebuffer/framebuffer.build')
-rwxr-xr-x | base/framebuffer/framebuffer.build | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/base/framebuffer/framebuffer.build b/base/framebuffer/framebuffer.build new file mode 100755 index 0000000..c3c8ce6 --- /dev/null +++ b/base/framebuffer/framebuffer.build @@ -0,0 +1,98 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=framebuffer +VERSION=$(date +%Y%m%d) +BUILD=1 + +# Description + +cat > ${PKG}/install/slack-desc <<EOF +# 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 ':'. + +$(padd)|-----handy-ruler------------------------------------------------------| +${NAME}: framebuffer +${NAME}: +${NAME}: The Linux framebuffer makes it possible to use the console in +${NAME}: graphics mode which allows among other things to have large +${NAME}: consoles. This package includes the following framebuffer utilities: +${NAME}: +${NAME}: * fbset (view and change framebuffer settings) +${NAME}: * fbi (display images) +${NAME}: * fbcat (dump the console screen to a file) +${NAME}: +${NAME}: +EOF + +cat > ${PKG}/install/doinst.sh <<EOF +#!/bin/sh + +config() { + NEW="\$1" + OLD="\$(dirname \$NEW)/\$(basename \$NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r \$OLD ]; then + mv \$NEW \$OLD + elif [ "\$(cat \$OLD | md5sum)" = "\$(cat \$NEW | md5sum)" ]; then + # toss the redundant copy + rm \$NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/fb.modes.new +EOF + +# Sources + +SRCNAME[0]=fbset +SRCVERS[0]=2.1 +SRCPACK[0]=http://users.telenet.be/geertu/Linux/fbdev/${SRCNAME[0]}-${SRCVERS[0]}.tar.gz +SRCCOPY[0]="GPL2" + +build0() +{ +make ${JOBS} CFLAGS="${FLAGS}" +make install DESTDIR="${PKG}" PREFIX="${SYS_DIR[usr]}" MANDIR="${SYS_DIR[man]}" +doc etc/fb.modes.{Falcon,NTSC,PAL,ATI} +install.dir ${PKG}${SYS_DIR[etc]} +install.cfg etc/fb.modes.ATI ${PKG}${SYS_DIR[etc]}/fb.modes.new +} + +SRCNAME[1]=fbida +SRCVERS[1]=2.09 +SRCPACK[1]=http://dl.bytesex.org/releases/fbida/${SRCNAME[1]}-${SRCVERS[1]}.tar.gz +SRCCOPY[1]="GPL2" + +build1() +{ +make ${JOBS} verbose=yes OPTS="${FLAGS}" +make install DESTDIR="${PKG}" prefix="${SYS_DIR[usr]}" +changelog Changes +rm -f \ + ${PKG}${SYS_DIR[bin]}/{fbgs,exiftran} \ + ${PKG}${SYS_DIR[man]}/man1/{fbgs,exiftran}.1 +} + +SRCNAME[2]=fbcat +SRCVERS[2]=0.3 +SRCPACK[2]=http://fbcat.googlecode.com/files/${SRCNAME[2]}-${SRCVERS[2]}.tar.gz +SRCCOPY[2]="GPL2" + +build2() +{ +make ${JOBS} CFLAGS="${FLAGS}" +changelog doc/changelog +install.dir ${PKG}${SYS_DIR[bin]} +install.bin fb{cat,grab} ${PKG}${SYS_DIR[bin]} +install.dir ${PKG}${SYS_DIR[man]}/man1 +install.man doc/fb{cat,grab}.1 ${PKG}${SYS_DIR[man]}/man1 +} |