mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-03 23:47:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			926 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			926 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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 sometimes
 | 
						|
# BSD make fails.  Enable this if statement as a workaround.
 | 
						|
if false; then
 | 
						|
    MAKE=gmake
 | 
						|
    echo "WARNING: using gmake to work around nonportable makefiles"
 | 
						|
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
 | 
						|
	;;
 | 
						|
 | 
						|
    *)
 | 
						|
	echo "Illegal command $1"
 | 
						|
	exit 1
 | 
						|
	;;
 | 
						|
 | 
						|
esac
 |