]> git.proxmox.com Git - mirror_frr.git/blob - README.NetBSD
Bugzilla #384.
[mirror_frr.git] / README.NetBSD
1 #!/bin/sh
2
3 $Id$
4
5 # This file is helpful for building quagga from cvs on NetBSD, and
6 # probably on any system using pkgsrc.
7 # One should have readline installed already (pkgsrc/devel/readline).
8
9 # Quagga is currently documented not to require GNU make, but sometimes
10 # BSD make fails. Enable this if statement as a workaround.
11 if false; then
12 MAKE=gmake
13 echo "WARNING: using gmake to work around nonportable makefiles"
14 fi
15
16 case $1 in
17
18 build)
19 ./bootstrap.sh
20 LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" CPPFLAGS="-I/usr/pkg/include" \
21 ./configure --prefix=/usr/quagga \
22 --sysconfdir=/etc/zebra --localstatedir=/var/run/zebra \
23 --enable-exampledir=/usr/quagga/share/examples/zebra \
24 --enable-pkgsrcrcdir=/usr/quagga/etc/rc.d \
25 --enable-opaque-lsa --enable-vtysh
26 make
27 ;;
28
29 install)
30 make install
31 ;;
32
33 clean)
34 make clean
35 ;;
36
37 *)
38 echo "Illegal command $1"
39 exit 1
40 ;;
41
42 esac