blob: 561a04668149d28ffc0aea94d5d94bccfc2960a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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 <<EOF
# 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------------------------------------------------------|
dnsmasq: dnsmasq (small DNS and DHCP server)
dnsmasq:
dnsmasq: Dnsmasq is a lightweight, easy to configure DNS forwarder and DHCP
dnsmasq: server. It is designed to provide DNS (and optionally DHCP) to a
dnsmasq: small network, and can serve the names of local machines which are
dnsmasq: not in the global DNS.
dnsmasq:
dnsmasq: Dnsmasq was written by Simon Kelley.
dnsmasq:
dnsmasq:
dnsmasq:
EOF
install -m644 -g0 -o0 doinst.sh $PKG/install
install -m644 -g0 -o0 CHANGELOG FAQ *.html dnsmasq.conf.example \
dbus/DBus-interface $PKG/usr/doc/$NAME-$VERSION
gzip -9nf \
$PKG/usr/doc/$NAME-$VERSION/CHANGELOG \
$PKG/usr/doc/$NAME-$VERSION/FAQ \
$PKG/usr/doc/$NAME-$VERSION/setup.html \
$PKG/usr/doc/$NAME-$VERSION/dnsmasq.conf.example
install -m644 -g0 -o0 dnsmasq.conf.example $PKG/etc/conf.d/dnsmasq.conf.new
install -m644 -g0 -o0 rc.dnsmasq.new $PKG/etc/rc.d
chmod 444 $PKG/usr/man/man?/*.?
gzip -9nf $PKG/usr/man/man?/*.?
strip $PKG/usr/sbin/* || :
chown -R root.root $PKG
# Make package
cd $PKG
cat install/slack-desc | grep "$NAME:" > /tmp/$NAME-$VERSION-$ARCH-$BUILD.txt
makepkg -l y -c n /tmp/$NAME-$VERSION-$ARCH-$BUILD.tgz
|