From 38bd76f7cfdacc47782b5a9ffdfa00fe1e583927 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Thu, 19 Dec 2019 09:10:02 +0000 Subject: [PATCH] n/avahi: Added back avahi-0.7. --- n/avahi/avahi-0.7.tar.gz.sha256 | 1 + n/avahi/avahi.SlackBuild | 149 ++++++++++++++++++++++++++++++++ n/avahi/doinst.sh | 22 +++++ n/avahi/slack-desc | 12 +++ 4 files changed, 184 insertions(+) create mode 100644 n/avahi/avahi-0.7.tar.gz.sha256 create mode 100755 n/avahi/avahi.SlackBuild create mode 100644 n/avahi/doinst.sh create mode 100644 n/avahi/slack-desc diff --git a/n/avahi/avahi-0.7.tar.gz.sha256 b/n/avahi/avahi-0.7.tar.gz.sha256 new file mode 100644 index 00000000..bd48cc13 --- /dev/null +++ b/n/avahi/avahi-0.7.tar.gz.sha256 @@ -0,0 +1 @@ +57a99b5dfe7fdae794e3d1ee7a62973a368e91e414bd0dfa5d84434de5b14804 avahi-0.7.tar.gz diff --git a/n/avahi/avahi.SlackBuild b/n/avahi/avahi.SlackBuild new file mode 100755 index 00000000..75faef93 --- /dev/null +++ b/n/avahi/avahi.SlackBuild @@ -0,0 +1,149 @@ +#!/bin/bash +# Build script for Slackware +# Copyright (C) 2018 Damien Goutte-Gattat +# +# Redistribution and use of this script, with or without modifications, +# 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. +# +# Contact: Damien Goutte-Gattat +# +# Latest avahi sourcecode is available at: . +# +# WARNING: I have no intention of ever using that piece of crap. I am +# compiling it only to make LibreOffice (which for some insane +# reasons depends on it, WTF?) happy. +# +# Depends: l/libdaemon + +# Source package infos +NAMESRC=${NAMESRC:-avahi} +VERSION=${VERSION:-0.7} +ARCHIVE=${ARCHIVE:-$NAMESRC-$VERSION.tar.gz} +WGET=${WGET:-https://github.com/lathiat/avahi/releases/download/v$VERSION/$ARCHIVE} + +# Build infos +NAMEPKG=${NAMEPKG:-avahi} +BUILD=${BUILD:-1GGD} +ARCH=${ARCH:-$(uname -m | sed 's/^i.86$/i486/;s/^arm.*/arm/')} +JOBS=${JOBS:-1} +EXT=${EXT:-txz} + +# Directories +TMP=${TMP:-/tmp} +OUT=${OUT:-$TMP/build} +PKG=${PKG:-$OUT/$NAMEPKG} +CWD=$(pwd) + +set -e # Quit if a command returns non-zero + +# Sanity checks +if [ $UID -eq 0 ]; then + echo "You should NOT run this script as ROOT!" + exit 1 +fi +if [ ! -d $TMP ]; then + echo "$TMP does not exists or is not a directory!" + exit 1 +fi + +# Compilation flags +LIBDIRSUFFIX="" +case "$ARCH" in +i?86) + CPUOPT="-O2 -march=$ARCH -mtune=i686" + ;; +x86_64) + CPUOPT="-O2 -fPIC" + LIBDIRSUFFIX="64" + ;; +*) + CPUOPT="-O2" + ;; +esac + +# Get and verify the source archive +if [ ! -r $ARCHIVE ]; then + wget -c -O $ARCHIVE.part "$WGET" + mv $ARCHIVE.part $ARCHIVE +fi +sha256sum -c $ARCHIVE.sha256 +NAME=$(tar ft $ARCHIVE | head -n 1 | cut -d / -f 1) + +# Compile +cd $TMP +echo "Building $ARCHIVE..." +tar xf $CWD/$ARCHIVE +cd $NAME +CFLAGS=$CPUOPT \ +CXXFLAGS=$CPUOPT \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib$LIBDIRSUFFIX \ + --sysconfdir=/etc \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --docdir=/usr/doc/$NAME \ + --disable-static \ + --disable-qt3 \ + --disable-mono \ + --disable-dependency-tracking \ + --build=$ARCH-slackware-linux +make -j $JOBS +make install-strip DESTDIR=$PKG + +# Compress man and info pages +find $PKG/usr/man -type f -exec gzip -9 {} \; +for manpage in $(find $PKG/usr/man -type l); do + ln -s $(readlink $manpage).gz $manpage.gz + rm -f $manpage +done + +# Install the documentation +mkdir -p $PKG/usr/doc/$NAME +install -m 644 ChangeLog LICENSE README $PKG/usr/doc/$NAME + +# Protect configuration files +mv $PKG/etc/avahi/avahi-daemon.conf $PKG/etc/avahi/avahi-daemon.conf.new +mv $PKG/etc/avahi/hosts $PKG/etc/avahi/hosts.new + +# Disable starting scripts by default +chmod 644 $PKG/etc/rc.d/rc.avahi{daemon,dnsconfd} + +# Copy slack-desc and doinst.sh files +install -D -m 644 $CWD/slack-desc $PKG/install/slack-desc +install -m 755 $CWD/doinst.sh $PKG/install/doinst.sh + +# Add dependency infos +cat < $PKG/install/slack-required +libdaemon +EOF + +# Package the tree +cd $PKG +mkdir -p $OUT +PACKAGING=" +chown root:root . -R +/sbin/makepkg -l y -c n $OUT/$NAMEPKG-$VERSION-$ARCH-$BUILD.$EXT +rm -rf $PKG +rm -rf $TMP/$NAME +" +if type -p fakeroot ; then + echo "$PACKAGING" | fakeroot +else + su -c "$PACKAGING" +fi diff --git a/n/avahi/doinst.sh b/n/avahi/doinst.sh new file mode 100644 index 00000000..830cc23e --- /dev/null +++ b/n/avahi/doinst.sh @@ -0,0 +1,22 @@ +#!/bin/sh +config() +{ + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then + rm $NEW + fi +} + +config etc/avahi/avahi-daemon.conf.new +config etc/avahi/hosts.new + +if ! grep ^avahi /etc/group > /dev/null ; then + /usr/sbin/groupadd -g 214 avahi +fi + +if ! grep ^avahi /etc/passwd > /dev/null ; then + /usr/sbin/useradd -u 214 -c Avahi -d /dev/null -s /bin/false -g avahi avahi +fi diff --git a/n/avahi/slack-desc b/n/avahi/slack-desc new file mode 100644 index 00000000..3d8fa162 --- /dev/null +++ b/n/avahi/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler-----------------------------------------------------| +avahi: avahi (service discovery suite) +avahi: +avahi: Avahi is free, LGPL implementation of DNS Service Discovery (DNS-SD +avahi: RFC 6763) over Multicast DNS -mDNS RFC 6762), commonly known as and +avahi: compatible with Apple Bonjour primarily targeting Linux. +avahi: +avahi: +avahi: +avahi: +avahi: +avahi: