From d150a5f3e462fa7fe194a805a4aa0076f4d03ab9 Mon Sep 17 00:00:00 2001 From: Deposite Pirate Date: Sun, 16 Sep 2018 18:48:36 +0200 Subject: Add ports. --- .../dnsmasq/dnsmasq-2.49-heimdal.patch.bz2 | Bin 0 -> 692 bytes .../dnsmasq/dnsmasq-2.49-mandir.patch.bz2 | Bin 0 -> 251 bytes .../dnsmasq/dnsmasq-2.49-paths.patch.bz2 | Bin 0 -> 686 bytes .../dnsmasq/dnsmasq-2.50-manpage.patch.xz | Bin 0 -> 472 bytes network_daemons/dnsmasq/dnsmasq.SlackBuild | 88 +++++++++++++++++++++ 5 files changed, 88 insertions(+) create mode 100644 network_daemons/dnsmasq/dnsmasq-2.49-heimdal.patch.bz2 create mode 100644 network_daemons/dnsmasq/dnsmasq-2.49-mandir.patch.bz2 create mode 100644 network_daemons/dnsmasq/dnsmasq-2.49-paths.patch.bz2 create mode 100644 network_daemons/dnsmasq/dnsmasq-2.50-manpage.patch.xz create mode 100755 network_daemons/dnsmasq/dnsmasq.SlackBuild (limited to 'network_daemons/dnsmasq') diff --git a/network_daemons/dnsmasq/dnsmasq-2.49-heimdal.patch.bz2 b/network_daemons/dnsmasq/dnsmasq-2.49-heimdal.patch.bz2 new file mode 100644 index 0000000..df8c10d Binary files /dev/null and b/network_daemons/dnsmasq/dnsmasq-2.49-heimdal.patch.bz2 differ diff --git a/network_daemons/dnsmasq/dnsmasq-2.49-mandir.patch.bz2 b/network_daemons/dnsmasq/dnsmasq-2.49-mandir.patch.bz2 new file mode 100644 index 0000000..83d479f Binary files /dev/null and b/network_daemons/dnsmasq/dnsmasq-2.49-mandir.patch.bz2 differ diff --git a/network_daemons/dnsmasq/dnsmasq-2.49-paths.patch.bz2 b/network_daemons/dnsmasq/dnsmasq-2.49-paths.patch.bz2 new file mode 100644 index 0000000..cd4807e Binary files /dev/null and b/network_daemons/dnsmasq/dnsmasq-2.49-paths.patch.bz2 differ diff --git a/network_daemons/dnsmasq/dnsmasq-2.50-manpage.patch.xz b/network_daemons/dnsmasq/dnsmasq-2.50-manpage.patch.xz new file mode 100644 index 0000000..3ba7172 Binary files /dev/null and b/network_daemons/dnsmasq/dnsmasq-2.50-manpage.patch.xz differ diff --git a/network_daemons/dnsmasq/dnsmasq.SlackBuild b/network_daemons/dnsmasq/dnsmasq.SlackBuild new file mode 100755 index 0000000..561a046 --- /dev/null +++ b/network_daemons/dnsmasq/dnsmasq.SlackBuild @@ -0,0 +1,88 @@ +#!/bin/sh + +CWD=`pwd` +NAME=dnsmasq +VERSION=2.49 +ARCH=i586 +BUILD=1 +PKGNAME=$NAME +PKGVER=$VERSION +BASEDIR=$PKGNAME-$PKGVER +ARCHIVE=$BASEDIR.tar.gz +REPOSITORY=http://thekelleys.org.uk/dnsmasq +FLAGS="-O2 -march=pentium -mtune=pentium -fno-strength-reduce \ + -fomit-frame-pointer -ffast-math" +PKG=/tmp/package-$NAME + +rm -rf $PKG +mkdir -p $PKG + +# Obtain sources +if [ ! -e $ARCHIVE ]; then + if `wget "$REPOSITORY/$ARCHIVE"`; then + true + else + exit 1 + fi +fi + +# Compile +cd /tmp +tar zxvf $CWD/$ARCHIVE +cd $BASEDIR +bzcat $CWD/$NAME-$VERSION-heimdal.patch.bz2 | patch -p1 -s +bzcat $CWD/$NAME-$VERSION-mandir.patch.bz2 | patch -p1 -s +bzcat $CWD/$NAME-$VERSION-paths.patch.bz2 | patch -p1 -s +make CFLAGS="$FLAGS" PREFIX=/usr + +# Install +make install DESTDIR=$PKG PREFIX=/usr +mkdir -p $PKG/install $PKG/usr/doc/$NAME-$VERSION $PKG/var/lib/dnsmasq \ + $PKG/etc/{rc.d,conf.d,dnsmasq.d} +cat > $PKG/install/slack-desc < /tmp/$NAME-$VERSION-$ARCH-$BUILD.txt +makepkg -l y -c n /tmp/$NAME-$VERSION-$ARCH-$BUILD.tgz -- cgit v1.2.3-70-g09d2