remove PKG_CAT from packages
[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
11 include $(INCLUDE_DIR)/package.mk
12
13 define Package/l7-protocols
14 SECTION:=net
15 CATEGORY:=Network
16 TITLE:=Protocols for layer7 filtering
17 URL:=http://l7-filter.sourceforge.net/
18 endef
19
20 define Package/l7-protocols/description
21 l7-filter classifies packets based on patterns in application
22 layer data. This allows correct classification of P2P traffic that
23 uses unpredictable ports as well as standard protocols running on
24 non-standard ports.
25 endef
26
27 define Build/Configure
28 endef
29
30 define Build/Compile
31 endef
32
33 define Package/l7-protocols/install
34 $(INSTALL_DIR) $(1)/etc/l7-protocols
35 $(CP) $(PKG_BUILD_DIR)/example_traffic \
36 $(PKG_BUILD_DIR)/extra \
37 $(PKG_BUILD_DIR)/file_types \
38 $(PKG_BUILD_DIR)/groups.sh \
39 $(PKG_BUILD_DIR)/malware \
40 $(PKG_BUILD_DIR)/protocols \
41 $(PKG_BUILD_DIR)/testing \
42 $(1)/etc/l7-protocols
43 endef
44
45 $(eval $(call BuildPackage,l7-protocols))