diff options
author | Niels Horn <niels.horn@gmail.com> | 2011-10-09 11:54:03 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-10-11 21:20:30 -0500 |
commit | b3de66000fd0804c344047cd1a97bec87a647cb2 (patch) | |
tree | e2f360bfc8b9bb064d00f3e4273722c03b89a996 /multimedia/minidlna | |
parent | 414c1df02f42ae6faf281f62cc7982427f8d14d7 (diff) | |
download | slackbuilds-b3de66000fd0804c344047cd1a97bec87a647cb2.tar.gz |
multimedia/minidlna: Added (mini DLNA server)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'multimedia/minidlna')
-rw-r--r-- | multimedia/minidlna/README | 4 | ||||
-rw-r--r-- | multimedia/minidlna/doinst.sh | 14 | ||||
-rw-r--r-- | multimedia/minidlna/minidlna.SlackBuild | 101 | ||||
-rw-r--r-- | multimedia/minidlna/minidlna.info | 10 | ||||
-rw-r--r-- | multimedia/minidlna/slack-desc | 19 |
5 files changed, 148 insertions, 0 deletions
diff --git a/multimedia/minidlna/README b/multimedia/minidlna/README new file mode 100644 index 0000000000..5f62e7830f --- /dev/null +++ b/multimedia/minidlna/README @@ -0,0 +1,4 @@ +MiniDLNA (aka ReadyDLNA) is server software with the aim of being fully +compliant with DLNA/UPnP-AV clients. + +This requires ffmpeg. diff --git a/multimedia/minidlna/doinst.sh b/multimedia/minidlna/doinst.sh new file mode 100644 index 0000000000..7626d3a507 --- /dev/null +++ b/multimedia/minidlna/doinst.sh @@ -0,0 +1,14 @@ +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/minidlna.conf.new diff --git a/multimedia/minidlna/minidlna.SlackBuild b/multimedia/minidlna/minidlna.SlackBuild new file mode 100644 index 0000000000..6a3bca7e11 --- /dev/null +++ b/multimedia/minidlna/minidlna.SlackBuild @@ -0,0 +1,101 @@ +#!/bin/sh + +# Slackware build script for minidlna +# a mini dlna server + +# Copyright 2011 Niels Horn, Rio de Janeiro, RJ, Brazil +# 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. + +# revision date 2011/08/18 + +PRGNAM=minidlna +VERSION=${VERSION:-1.0.21} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/${PRGNAM}_${VERSION}_src.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Let Makefile accept out CFLAGS +sed \ + -e "/^CFLAGS/s/=/+=/" \ + -i Makefile + +CFLAGS="$SLKCFLAGS" \ + make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Rename configuration file to .new +mv $PKG/etc/$PRGNAM.conf $PKG/etc/$PRGNAM.conf.new + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + INSTALL LICENCE* NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.${PKGTYPE:-tgz} diff --git a/multimedia/minidlna/minidlna.info b/multimedia/minidlna/minidlna.info new file mode 100644 index 0000000000..88103921a5 --- /dev/null +++ b/multimedia/minidlna/minidlna.info @@ -0,0 +1,10 @@ +PRGNAM="minidlna" +VERSION="1.0.21" +HOMEPAGE="http://minidlna.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/minidlna/minidlna_1.0.21_src.tar.gz" +MD5SUM="a53e0008ad225843a1782e4af6e5bf0b" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Niels Horn" +EMAIL="niels.horn@gmail.com" +APPROVED="Erik Hanson" diff --git a/multimedia/minidlna/slack-desc b/multimedia/minidlna/slack-desc new file mode 100644 index 0000000000..c091d28b10 --- /dev/null +++ b/multimedia/minidlna/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------------------------------------------------------| +minidlna: minidlna (mini DLNA server) +minidlna: +minidlna: MiniDLNA (aka ReadyDLNA) is server software with the aim of being +minidlna: fully compliant with DLNA/UPnP-AV clients. +minidlna: +minidlna: Homepage: http://minidlna.sourceforge.net/ +minidlna: +minidlna: +minidlna: +minidlna: +minidlna: |