[packages] polipo: solve a bunch of "sh: bad number" errors in init script, always...
[openwrt/svn-archive/archive.git] / net / portsentry / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=portsentry
11 PKG_VERSION:=1.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-1.2.tar.gz
15 PKG_SOURCE_URL:=@SF/sentrytools
16 PKG_MD5SUM:=3ebd3618ba9abfea2525e236bd44cebd
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)_beta
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/portsentry
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Portscan protection utility
26 URL:=http://sourceforge.net/projects/sentrytools
27 endef
28
29 define Package/portsentry/conffiles
30 /etc/portsentry.conf
31 endef
32
33 MAKE_FLAGS += \
34 linux \
35
36 define Package/portsentry/install
37 $(INSTALL_DIR) $(1)/etc/init.d
38 $(INSTALL_DATA) $(PKG_BUILD_DIR)/$(PKG_NAME).conf $(1)/etc/
39 $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/
40 $(INSTALL_DIR) $(1)/usr/bin
41 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
42 endef
43
44 $(eval $(call BuildPackage,portsentry))