packages/xinetd: use new service functions
[openwrt/svn-archive/archive.git] / net / xinetd / Makefile
1 #
2 # Copyright (C) 2006-2011 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:=xinetd
11 PKG_VERSION:=2.3.14
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.xinetd.org/
16 PKG_MD5SUM:=567382d7972613090215c6c54f9b82d9
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/xinetd
21 SECTION:=net
22 CATEGORY:=Network
23 TITLE:=A powerful and secure super-server
24 URL:=http://www.xinetd.org/
25 endef
26
27 define Package/xinetd/description
28 xinetd has access control mechanisms, extensive logging capabilities,
29 the ability to make services available based on time, can place limits
30 on the number of servers that can be started, and has deployable
31 defence mechanisms to protect against port scanners, among other
32 things.
33 endef
34
35 define Package/xinetd/conffiles
36 /etc/xinetd.conf
37 endef
38
39 TARGET_CFLAGS += -DNO_RPC
40
41 define Build/Configure
42 $(call Build/Configure/Default, \
43 --without-libwrap \
44 --with-loadavg \
45 , \
46 ac_cv_header_rpc_pmap_clnt_h=no \
47 ac_cv_header_rpc_rpc_h=no \
48 ac_cv_header_rpc_rpcent_h=no \
49 )
50 endef
51
52 define Build/Compile
53 $(MAKE) -C $(PKG_BUILD_DIR) \
54 DESTDIR="$(PKG_INSTALL_DIR)" \
55 build install
56 endef
57
58 define Package/xinetd/install
59 $(INSTALL_DIR) $(1)/usr/sbin
60 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xinetd $(1)/usr/sbin/
61 $(INSTALL_DIR) $(1)/etc
62 $(INSTALL_DATA) ./files/xinetd.conf $(1)/etc/xinetd.conf
63 $(INSTALL_DIR) $(1)/etc/xinetd.d
64 $(INSTALL_DIR) $(1)/etc/init.d
65 $(INSTALL_BIN) ./files/xinetd.init $(1)/etc/init.d/xinetd
66 endef
67
68 $(eval $(call BuildPackage,xinetd))