You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. include $(INCLUDE_DIR)/kernel.mk
  9. PKG_NAME:=bridge-utils
  10. PKG_VERSION:=1.6
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  13. PKG_SOURCE_URL:=@KERNEL/linux/utils/net/$(PKG_NAME)
  14. PKG_HASH:=cc67efb5d5fb8928a6569b3fade2b4042ec17da04678dab127d96b46489e26c8
  15. PKG_MAINTAINER:=Nikolay Martynov <mar.kolya@gmail.com>
  16. PKG_LICENSE:=GPL-2.0+
  17. PKG_LICENSE_FILES:=COPYING
  18. PKG_FIXUP:=autoreconf
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/bridge
  21. SECTION:=net
  22. CATEGORY:=Base system
  23. TITLE:=Ethernet bridging configuration utility
  24. URL:=http://www.linuxfromscratch.org/blfs/view/svn/basicnet/bridge-utils.html
  25. endef
  26. define Package/bridge/description
  27. Manage ethernet bridging: a way to connect networks together to
  28. form a larger network.
  29. endef
  30. TARGET_CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
  31. CONFIGURE_ARGS += \
  32. --with-linux-headers="$(LINUX_DIR)" \
  33. define Package/bridge/install
  34. $(INSTALL_DIR) $(1)/usr/sbin
  35. $(INSTALL_BIN) $(PKG_BUILD_DIR)/brctl/brctl $(1)/usr/sbin
  36. endef
  37. define Package/bridge/prerm
  38. #!/bin/sh
  39. $${IPKG_INSTROOT}/bin/busybox brctl -h 2>&1 | grep -q BusyBox && \
  40. ln -sf ../../bin/busybox $${IPKG_INSTROOT}/usr/sbin/brctl
  41. exit 0
  42. endef
  43. $(eval $(call BuildPackage,bridge))