diff options
Diffstat (limited to 'source/n/netkit-bootparamd')
-rwxr-xr-x | source/n/netkit-bootparamd/netkit-bootparamd.SlackBuild | 63 | ||||
-rw-r--r-- | source/n/netkit-bootparamd/slack-desc | 19 |
2 files changed, 82 insertions, 0 deletions
diff --git a/source/n/netkit-bootparamd/netkit-bootparamd.SlackBuild b/source/n/netkit-bootparamd/netkit-bootparamd.SlackBuild new file mode 100755 index 00000000..2beca124 --- /dev/null +++ b/source/n/netkit-bootparamd/netkit-bootparamd.SlackBuild @@ -0,0 +1,63 @@ +#!/bin/sh + +# Copyright 2007-2009 Patrick J. Volkerding, Sebeka, MN, USA +# 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. + + +VERSION=0.17 +ARCH=${ARCH:-x86_64} +BUILD=${BUILD:-2} + +CWD=$(pwd) +TMP=${TMP:-/tmp} +PKG=$TMP/package-netkit-bootparamd + +rm -rf $PKG +mkdir -p $TMP $PKG + +cd $TMP +rm -rf netkit-bootparamd-$VERSION +tar xzvf $CWD/netkit-bootparamd-$VERSION.tar.gz || exit 1 +cd netkit-bootparamd-$VERSION +chown -R root:root . +./configure --prefix=/usr +make || exit 1 +cd rpc.bootparamd +strip bootparamd callbootd +mkdir -p $PKG/usr/{bin,sbin} +cat bootparamd > $PKG/usr/sbin/rpc.bootparamd +chmod 755 $PKG/usr/sbin/rpc.bootparamd +cat callbootd > $PKG/usr/bin/callbootd +chmod 755 $PKG/usr/bin/callbootd +mkdir -p $PKG/usr/man/man8 +gzip -9c bootparamd.8 > $PKG/usr/man/man8/rpc.bootparamd.8.gz +mkdir -p $PKG/usr/doc/netkit-bootparamd-$VERSION +cp -a README $PKG/usr/doc/netkit-bootparamd-$VERSION +chown root:root $PKG/usr/doc/netkit-bootparamd-$VERSION/* +chmod 644 $PKG/usr/doc/netkit-bootparamd-$VERSION/* + +# Finish up the package: +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +# Build the package: +cd $PKG +makepkg -l y -c n $TMP/netkit-bootparamd-$VERSION-$ARCH-$BUILD.txz + diff --git a/source/n/netkit-bootparamd/slack-desc b/source/n/netkit-bootparamd/slack-desc new file mode 100644 index 00000000..985aab13 --- /dev/null +++ b/source/n/netkit-bootparamd/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------------------------------------------------------| +netkit-bootparamd: netkit-bootparamd (boot parameter server) +netkit-bootparamd: +netkit-bootparamd: This package provides rpc.bootparamd and callbootd, programs used to +netkit-bootparamd: provide information to diskless clients so they can boot. It is +netkit-bootparamd: used primarily to allow a Linux server to boot a Sun machine using +netkit-bootparamd: SunOS bootparam. +netkit-bootparamd: +netkit-bootparamd: netkit-bootparamd was written by Klas Heggemann. +netkit-bootparamd: +netkit-bootparamd: +netkit-bootparamd: |