2006-06-27 03:35:46 +03:00
|
|
|
#
|
2012-02-14 21:07:09 +02:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 10:12:49 +02:00
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
2007-09-03 11:12:27 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2007-09-03 11:12:27 +03:00
|
|
|
PKG_NAME:=bridge-utils
|
2005-03-06 05:34:52 +02:00
|
|
|
PKG_RELEASE:=1
|
2008-08-24 05:40:20 +03:00
|
|
|
PKG_SOURCE_URL:=@SF/bridge
|
2012-02-14 21:07:09 +02:00
|
|
|
PKG_VERSION:=1.5
|
|
|
|
PKG_MD5SUM:=ec7b381160b340648dede58c31bb2238
|
2005-03-21 10:12:49 +02:00
|
|
|
|
2007-09-03 11:12:27 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-04-21 11:39:19 +03:00
|
|
|
define Package/bridge
|
2006-09-23 16:34:16 +03:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=Ethernet bridging configuration utility
|
|
|
|
URL:=http://bridge.sourceforge.net/
|
2006-04-21 11:39:19 +03:00
|
|
|
endef
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/bridge/description
|
|
|
|
Manage ethernet bridging: a way to connect networks together to
|
|
|
|
form a larger network.
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--with-linux-headers="$(LINUX_DIR)" \
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2008-09-25 13:47:39 +03:00
|
|
|
define Build/Prepare
|
|
|
|
$(call Build/Prepare/Default)
|
|
|
|
( cd $(PKG_BUILD_DIR) ; \
|
|
|
|
[ -f ./configure ] || { \
|
|
|
|
ln -sf configure.in configure.ac ; \
|
|
|
|
autoconf ; \
|
|
|
|
} \
|
2008-08-20 16:56:57 +03:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2006-05-11 19:00:43 +03:00
|
|
|
define Package/bridge/install
|
2006-11-23 02:29:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2012-02-14 21:07:09 +02:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/brctl/brctl $(1)/usr/sbin
|
2006-04-21 11:39:19 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,bridge))
|