mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/dosemu: Added to 12.0 repository
This commit is contained in:
parent
e46a810f99
commit
afd43d4f79
5 changed files with 161 additions and 0 deletions
12
system/dosemu/README
Normal file
12
system/dosemu/README
Normal file
|
@ -0,0 +1,12 @@
|
|||
dosemu is a DOS EMUlator
|
||||
|
||||
DOSEMU is a user-level program which uses certain special features
|
||||
of the Linux kernel and the 80386 processor to run MS-DOS/FreeDOS
|
||||
in what we in the biz call a 'DOS box'
|
||||
|
||||
This SlackBuild script needs two downloads: the dosemu source file, and
|
||||
the dosemu-freedos-1.0-bin.tgz file, both available from the DOSEMU homepage.
|
||||
|
||||
This script does not build support for X by default - to enable X,
|
||||
run the script as follows:
|
||||
WITH_X=yes ./dosemu.SlackBuild
|
17
system/dosemu/doinst.sh
Normal file
17
system/dosemu/doinst.sh
Normal file
|
@ -0,0 +1,17 @@
|
|||
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/dosemu.conf.new
|
||||
config etc/global.conf.new
|
||||
config etc/dosemu.users.new
|
||||
|
105
system/dosemu/dosemu.SlackBuild
Normal file
105
system/dosemu/dosemu.SlackBuild
Normal file
|
@ -0,0 +1,105 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for dosemu
|
||||
|
||||
# Copyright 2007 Martin Lefebvre <dadexter@sekurity.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Safety and debugging first
|
||||
set -e
|
||||
|
||||
PRGNAM=dosemu
|
||||
VERSION=1.4.0
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# This script builds dosemu without X support by default.
|
||||
# To enable X, run the build script as: WITH_X=yes ./dosemu.SlackBuild
|
||||
WITH_X=${WITH_X:-no}
|
||||
|
||||
if [ ! -e $CWD/dosemu-freedos-1.0-bin.tgz ]; then
|
||||
echo "Please download dosemu-freedos-1.0-bin.tgz first from"
|
||||
echo "http://downloads.sourceforge.net/dosemu/dosemu-freedos-1.0-bin.tgz"
|
||||
echo "and place it in the same directory as the dosemu source."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
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 -xvf $CWD/$PRGNAM-$VERSION.tgz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+w,go+r-w .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--with-x="$WITH_X" \
|
||||
--with-svgalib \
|
||||
--with-fdtarball=$CWD/dosemu-freedos-1.0-bin.tgz
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
if [ -d $PKG/usr/man ]; then
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/doc
|
||||
mv $PKG/usr/share/doc/dosemu $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
rmdir $PKG/usr/share/doc
|
||||
|
||||
( cd $PKG/etc
|
||||
mv dosemu.conf dosemu.conf.new
|
||||
mv dosemu.users dosemu.users.new
|
||||
mv global.conf global.conf.new
|
||||
)
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
system/dosemu/dosemu.info
Normal file
8
system/dosemu/dosemu.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="dosemu"
|
||||
VERSION="1.4.0"
|
||||
HOMEPAGE="http://www.dosemu.org"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/dosemu/dosemu-1.4.0.tgz"
|
||||
MD5SUM="0bba530637266f99d404ba15e3f118d4"
|
||||
MAINTAINER="Martin Lefebvre"
|
||||
EMAIL="dadexter@sekurity.com"
|
||||
APPROVED="rworkman"
|
19
system/dosemu/slack-desc
Normal file
19
system/dosemu/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------------------------------------------------------|
|
||||
dosemu: dosemu (a DOS EMUlator)
|
||||
dosemu:
|
||||
dosemu: DOSEMU is a user-level program which uses certain
|
||||
dosemu: special features of the Linux kernel and the
|
||||
dosemu: 80386 processor to run MS-DOS/FreeDOS in what we
|
||||
dosemu: call a 'DOS box'
|
||||
dosemu:
|
||||
dosemu:
|
||||
dosemu:
|
||||
dosemu:
|
||||
dosemu:
|
Loading…
Reference in a new issue