From: Tim Yardley Date: Tue, 31 Jul 2007 22:48:14 +0000 (+0000) Subject: l7 protocols package X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=de6f367836c94b02772367a26acbcabe7a237147;hp=fed7b6858316f6d199808d3754fe096842384e89 l7 protocols package SVN-Revision: 8291 --- diff --git a/net/l7-protocols/Makefile b/net/l7-protocols/Makefile new file mode 100644 index 0000000000..6366a35a00 --- /dev/null +++ b/net/l7-protocols/Makefile @@ -0,0 +1,44 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=l7-protocols +PKG_VERSION:=2007-07-27 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/l7-filter +PKG_MD5SUM:=d007dd322e174a5c0ec722061ba8a57b +PKG_CAT:=zcat + +include $(INCLUDE_DIR)/package.mk + +define Package/l7-protocols + SECTION:=net + CATEGORY:=Network + TITLE:=Protocols for layer7 filtering + DESCRIPTION:=\ + l7-filter classifies packets based on patterns in application \\\ + layer data. This allows correct classification of P2P traffic that \\\ + uses unpredictable ports as well as standard protocols running on \\\ + non-standard ports. + URL:=http://l7-filter.sourceforge.net/ +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/l7-protocols/install + $(INSTALL_DIR) $(1)/etc/l7-protocols + $(CP) $(PKG_BUILD_DIR)/example_traffic \ + $(PKG_BUILD_DIR)/extra \ + $(PKG_BUILD_DIR)/file_types \ + $(PKG_BUILD_DIR)/groups.sh \ + $(PKG_BUILD_DIR)/malware \ + $(PKG_BUILD_DIR)/protocols \ + $(PKG_BUILD_DIR)/testing \ + $(1)/etc/l7-protocols +endef + +$(eval $(call BuildPackage,l7-protocols))