system/cdemu-daemon: Updated for version 3.2.1 + new maintainer.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Isaac Yu 2018-08-12 21:14:15 +01:00 committed by Willy Sudiarto Raharjo
parent d17ce81bf4
commit ee9d871ab7
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 19 additions and 19 deletions

View file

@ -2,16 +2,15 @@ README.SLACKWARE
To start the cdemu-daemon at boot, add the following to /etc/rc.d/rc.local:
# Start cdemu-daemon.
if [ -x /etc/rc.d/rc.cdemud ]; then
/etc/rc.d/rc.cdemud start
fi
# Start cdemu-daemon.
if [ -x /etc/rc.d/rc.cdemud ]; then
/etc/rc.d/rc.cdemud start
fi
Add this to /etc/rc.d/rc.local_shutdown (if this file does not already
exist, create it and make it executable):
# Stop cdemu-daemon.
if [ -x /etc/rc.d/rc.cdemud ]; then
/etc/rc.d/rc.cdemud stop
fi
# Stop cdemu-daemon.
if [ -x /etc/rc.d/rc.cdemud ]; then
/etc/rc.d/rc.cdemud stop
fi

View file

@ -3,7 +3,8 @@
# Slackware build script for cdemu-daemon
#
# Copyright 2008 Niklas "Nille" Åkerström
# Copyright 2010-2013 Niels Horn, Rio de Janeiro, RJ, Brazil
# Copyright 2010-2013 Niels Horn, Rio de Janeiro, RJ, Brazil <niels.horn@gmail.com>
# Copyright 2018 Isaac Yu <isaacyu1@isaacyu1.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,13 +25,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=cdemu-daemon
VERSION=${VERSION:-3.1.0}
VERSION=${VERSION:-3.2.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -43,8 +44,8 @@ OUTPUT=${OUTPUT:-/tmp}
GROUP=${GROUP:-cdrom}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"

View file

@ -1,10 +1,10 @@
PRGNAM="cdemu-daemon"
VERSION="3.1.0"
VERSION="3.2.1"
HOMEPAGE="http://cdemu.sourceforge.net/about/daemon/"
DOWNLOAD="http://downloads.sourceforge.net/cdemu/cdemu-daemon-3.1.0.tar.bz2"
MD5SUM="e9f6c8b42e876a8566b0411056950ea6"
DOWNLOAD="http://downloads.sourceforge.net/cdemu/cdemu-daemon-3.2.1.tar.bz2"
MD5SUM="673bec5d723d4710fe8835109ec6be92"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="libmirage vhba-module"
MAINTAINER="Niels Horn"
EMAIL="niels.horn@gmail.com"
MAINTAINER="Isaac Yu"
EMAIL="isaacyu1@isaacyu1.com"