#!/bin/sh # Slackware build script for Webmin http://www.webmin.com # Copyright 2006-2007 David Somero (dsomero@hotmail.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. PRGNAM=webmin VERSION=1.350 ARCH=noarch BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=${TMP}/package-${PRGNAM} OUTPUT=${OUTPUT:-/tmp} rm -rf ${PKG} mkdir -p ${TMP} ${PKG} ${OUTPUT} cd ${TMP} rm -rf ${PRGNAM}-${VERSION} tar -xzvf ${CWD}/${PRGNAM}-${VERSION}.tar.gz cd ${PRGNAM}-${VERSION} chown -R root:root . chmod -R u+w,go+r-w,a-s . rm -f mount/freebsd-mounts* rm -f mount/openbsd-mounts* rm -f mount/macos-mounts* (find . -name '*.cgi' ; find . -name '*.pl') | perl perlpath.pl /usr/bin/perl - install -m0755 -d ${PKG}/usr/libexec/webmin install -m0755 -d ${PKG}/var install -m0755 -d ${PKG}/etc/rc.d/ install -m0755 -d ${PKG}/etc/webmin/ install -m0755 -d ${PKG}/var/log/webmin/ install -m0644 ${CWD}/rc.webmin ${PKG}/etc/rc.d/rc.webmin.new cp -rp * ${PKG}/usr/libexec/webmin echo slackware > ${PKG}/usr/libexec/webmin/install-type config_dir=${PKG}/etc/webmin var_dir=${PKG}/var/log/webmin perl=/usr/bin/perl autoos=1 port=10000 login=root crypt="XXX" host=$(hostname) ssl=0 atboot=0 nostart=1 nochown=1 autothird=1 nouninstall=1 noperlpath=1 export config_dir var_dir perl autoos port login crypt host ssl atboot \ nostart nochown autothird nouninstall noperlpath ${PKG}/usr/libexec/webmin/setup.sh 2>&1 # Fixup the config files to use their real locations sed -i -e 's:^pidfile=.*$:pidfile=/var/run/webmin.pid:' ${PKG}/etc/webmin/miniserv.conf find ${PKG}/etc/webmin -type f | xargs sed -i -e "s:${PKG}::g" mkdir -p $PKG/usr/doc/${PRGNAM}-${VERSION} cp -a LICENCE* README ${PKG}/usr/doc/${PRGNAM}-${VERSION} chmod 644 ${PKG}/usr/doc/${PRGNAM}-${VERSION}/* rm -rf ${PKG}/usr/libexec/webmin/acl/Authen-SolarisRBAC-0.1 rm -f ${PKG}/usr/libexec/webmin/acl/Authen-SolarisRBAC-0.1.tar.gz 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