[package] update quagga-unstable to 0.99.12 (#4935)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15790 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3d5199ad88
commit
69e82b8c95
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2009 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
@ -8,9 +8,9 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=quagga-unstable
|
PKG_NAME:=quagga-unstable
|
||||||
PKG_VERSION:=0.99.11
|
PKG_VERSION:=0.99.12
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=2
|
||||||
PKG_MD5SUM:=903e40c744730ad4d62bee872eeb813b
|
PKG_MD5SUM:=d2bb513f4ac113dbb300c15a0bd0a241
|
||||||
|
|
||||||
PKG_SOURCE_URL:=http://www.quagga.net/download/ \
|
PKG_SOURCE_URL:=http://www.quagga.net/download/ \
|
||||||
http://www.de.quagga.net/download/ \
|
http://www.de.quagga.net/download/ \
|
||||||
@ -35,10 +35,9 @@ define Package/quagga-unstable
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable/description
|
define Package/quagga-unstable/description
|
||||||
A routing software package that provides TCP/IP based routing services
|
A routing software package that provides TCP/IP based routing services
|
||||||
with routing protocols support such as RIPv1, RIPv2, RIPng, OSPFv2,
|
with routing protocols support such as RIPv1, RIPv2, RIPng, OSPFv2,
|
||||||
OSPFv3, BGP-4, and BGP-4+
|
OSPFv3, BGP-4, and BGP-4+
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-libzebra
|
define Package/quagga-unstable-libzebra
|
||||||
@ -107,13 +106,13 @@ define Build/Configure
|
|||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
DESTDIR=$(PKG_INSTALL_DIR) \
|
DESTDIR=$(PKG_INSTALL_DIR) \
|
||||||
all install
|
all install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable/install
|
define Package/quagga-unstable/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zebra $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zebra $(1)/usr/sbin/
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/watchquagga $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/watchquagga $(1)/usr/sbin/
|
||||||
@ -128,10 +127,10 @@ endef
|
|||||||
|
|
||||||
define Package/quagga-unstable/postinst
|
define Package/quagga-unstable/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
name=quagga
|
name=quagga
|
||||||
id=51
|
id=51
|
||||||
|
|
||||||
# do not change below
|
# do not change below
|
||||||
# check if we are on real system
|
# check if we are on real system
|
||||||
if [ -z "$${IPKG_INSTROOT}" ]; then
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||||
@ -150,18 +149,18 @@ if [ -z "$${IPKG_INSTROOT}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
|
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
|
||||||
echo "adding group $$name to /etc/group"
|
echo "adding group $$name to /etc/group"
|
||||||
echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
|
echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
|
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
|
||||||
echo "adding user $$name to /etc/passwd"
|
echo "adding user $$name to /etc/passwd"
|
||||||
echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
|
echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
grep -q '^zebra[[:space:]]*2601/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
|
grep -q '^zebra[[:space:]]*2601/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
|
||||||
if [ $$? -ne 0 ]; then
|
if [ $$? -ne 0 ]; then
|
||||||
echo "zebrasrv 2600/tcp" >>$${IPKG_INSTROOT}/etc/services
|
echo "zebrasrv 2600/tcp" >>$${IPKG_INSTROOT}/etc/services
|
||||||
echo "zebra 2601/tcp" >>$${IPKG_INSTROOT}/etc/services
|
echo "zebra 2601/tcp" >>$${IPKG_INSTROOT}/etc/services
|
||||||
echo "ripd 2602/tcp" >>$${IPKG_INSTROOT}/etc/services
|
echo "ripd 2602/tcp" >>$${IPKG_INSTROOT}/etc/services
|
||||||
@ -174,7 +173,7 @@ echo "isisd 2608/tcp" >>$${IPKG_INSTROOT}/etc/services
|
|||||||
fi
|
fi
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-bgpd/install
|
define Package/quagga-unstable-bgpd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/bgpd $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/bgpd $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
@ -184,27 +183,27 @@ define Package/quagga-unstable-isisd/install
|
|||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/isisd $(1)/usr/sbin
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/isisd $(1)/usr/sbin
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-ospfd/install
|
define Package/quagga-unstable-ospfd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospfd $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospfd $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-ospf6d/install
|
define Package/quagga-unstable-ospf6d/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospf6d $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospf6d $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-ripd/install
|
define Package/quagga-unstable-ripd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripd $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripd $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-ripngd/install
|
define Package/quagga-unstable-ripngd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripngd $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripngd $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quagga-unstable-vtysh/install
|
define Package/quagga-unstable-vtysh/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vtysh $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vtysh $(1)/usr/bin/
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user