From afd43d4f79054b4f2be691f970bb7e3ae59713c5 Mon Sep 17 00:00:00 2001 From: Martin Lefebvre Date: Tue, 11 May 2010 20:01:57 +0200 Subject: system/dosemu: Added to 12.0 repository --- system/dosemu/README | 12 +++++ system/dosemu/doinst.sh | 17 +++++++ system/dosemu/dosemu.SlackBuild | 105 ++++++++++++++++++++++++++++++++++++++++ system/dosemu/dosemu.info | 8 +++ system/dosemu/slack-desc | 19 ++++++++ 5 files changed, 161 insertions(+) create mode 100644 system/dosemu/README create mode 100644 system/dosemu/doinst.sh create mode 100644 system/dosemu/dosemu.SlackBuild create mode 100644 system/dosemu/dosemu.info create mode 100644 system/dosemu/slack-desc diff --git a/system/dosemu/README b/system/dosemu/README new file mode 100644 index 0000000000..9a518dda1a --- /dev/null +++ b/system/dosemu/README @@ -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 diff --git a/system/dosemu/doinst.sh b/system/dosemu/doinst.sh new file mode 100644 index 0000000000..a525f4b87c --- /dev/null +++ b/system/dosemu/doinst.sh @@ -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 + diff --git a/system/dosemu/dosemu.SlackBuild b/system/dosemu/dosemu.SlackBuild new file mode 100644 index 0000000000..c098cde472 --- /dev/null +++ b/system/dosemu/dosemu.SlackBuild @@ -0,0 +1,105 @@ +#!/bin/sh + +# Slackware build script for dosemu + +# Copyright 2007 Martin Lefebvre +# 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 diff --git a/system/dosemu/dosemu.info b/system/dosemu/dosemu.info new file mode 100644 index 0000000000..68cb728fe2 --- /dev/null +++ b/system/dosemu/dosemu.info @@ -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" diff --git a/system/dosemu/slack-desc b/system/dosemu/slack-desc new file mode 100644 index 0000000000..d048f617ab --- /dev/null +++ b/system/dosemu/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 ':'. + + |-----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: -- cgit v1.2.3-65-gdbad