6366a35a00bb01e340d9ec6c795c371819dcc0ae
[openwrt/svn-archive/archive.git] / net / l7-protocols / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=l7-protocols
4 PKG_VERSION:=2007-07-27
5 PKG_RELEASE:=1
6
7 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
8 PKG_SOURCE_URL:=@SF/l7-filter
9 PKG_MD5SUM:=d007dd322e174a5c0ec722061ba8a57b
10 PKG_CAT:=zcat
11
12 include $(INCLUDE_DIR)/package.mk
13
14 define Package/l7-protocols
15 SECTION:=net
16 CATEGORY:=Network
17 TITLE:=Protocols for layer7 filtering
18 DESCRIPTION:=\
19 l7-filter classifies packets based on patterns in application \\\
20 layer data. This allows correct classification of P2P traffic that \\\
21 uses unpredictable ports as well as standard protocols running on \\\
22 non-standard ports.
23 URL:=http://l7-filter.sourceforge.net/
24 endef
25
26 define Build/Configure
27 endef
28
29 define Build/Compile
30 endef
31
32 define Package/l7-protocols/install
33 $(INSTALL_DIR) $(1)/etc/l7-protocols
34 $(CP) $(PKG_BUILD_DIR)/example_traffic \
35 $(PKG_BUILD_DIR)/extra \
36 $(PKG_BUILD_DIR)/file_types \
37 $(PKG_BUILD_DIR)/groups.sh \
38 $(PKG_BUILD_DIR)/malware \
39 $(PKG_BUILD_DIR)/protocols \
40 $(PKG_BUILD_DIR)/testing \
41 $(1)/etc/l7-protocols
42 endef
43
44 $(eval $(call BuildPackage,l7-protocols))