blob: e541ec1e16c236d2dbc5c43c5bd46e8ba6c8368d (
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
|
#!/bin/sh
$Id$
# This file is helpful for building quagga from cvs on NetBSD, and
# probably on any system using pkgsrc.
# One should have readline installed already (pkgsrc/devel/readline).
# Quagga is currently documented not to require GNU make, but the
# contents of solaris seem to require it.
if true; then
MAKE=gmake
echo "WARNING: using gmake to work around buggy solaris/Makefile.am"
fi
case $1 in
build)
./bootstrap.sh
LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
./configure --prefix=/usr/quagga \
--sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \
--enable-exampledir=/usr/quagga/share/examples/zebra \
--enable-pkgsrcrcdir=/usr/quagga/etc/rc.d \
--enable-opaque-lsa --enable-vtysh
make
;;
install)
make install
;;
clean)
make clean
esac
|