diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/cdemu-daemon/README.SLACKWARE | 17 | ||||
-rw-r--r-- | system/cdemu-daemon/cdemu-daemon.SlackBuild | 11 | ||||
-rw-r--r-- | system/cdemu-daemon/cdemu-daemon.info | 10 |
3 files changed, 19 insertions, 19 deletions
diff --git a/system/cdemu-daemon/README.SLACKWARE b/system/cdemu-daemon/README.SLACKWARE index 53a905c994..3569f6367c 100644 --- a/system/cdemu-daemon/README.SLACKWARE +++ b/system/cdemu-daemon/README.SLACKWARE @@ -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 diff --git a/system/cdemu-daemon/cdemu-daemon.SlackBuild b/system/cdemu-daemon/cdemu-daemon.SlackBuild index c8e171b736..5d1c484584 100644 --- a/system/cdemu-daemon/cdemu-daemon.SlackBuild +++ b/system/cdemu-daemon/cdemu-daemon.SlackBuild @@ -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" diff --git a/system/cdemu-daemon/cdemu-daemon.info b/system/cdemu-daemon/cdemu-daemon.info index 0477427585..0f8c572451 100644 --- a/system/cdemu-daemon/cdemu-daemon.info +++ b/system/cdemu-daemon/cdemu-daemon.info @@ -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" |