[packages] freeradius2: update to version 2.1.8
[openwrt/svn-archive/archive.git] / net / unbound / Makefile
1 #
2 # Copyright (C) 2010 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:=unbound
11 PKG_VERSION:=1.4.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.unbound.net/downloads
16 PKG_MD5SUM:=2dffdd42f94b8238447a41835439d129
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20 PKG_LIBTOOL_PATHS:= ./libtool ./ldns-src/libtool
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/unbound
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=A validating, recursive, and caching DNS resolver
28 URL:=http://www.unbound.net/
29 DEPENDS:=+libopenssl
30 endef
31
32 CONFIGURE_ARGS += \
33 --with-ssl="$(STAGING_DIR)/usr" \
34 --without-pthreads \
35
36 define Package/unbound/conffiles
37 /etc/unbound/unbound.conf
38 endef
39
40 define Package/unbound/install
41 $(INSTALL_DIR) $(1)/usr/lib
42 $(CP) \
43 $(PKG_INSTALL_DIR)/usr/lib/libunbound.so.* \
44 $(1)/usr/lib/
45 $(INSTALL_DIR) $(1)/usr/sbin
46 $(CP) \
47 $(PKG_INSTALL_DIR)/usr/sbin/unbound \
48 $(PKG_INSTALL_DIR)/usr/sbin/unbound-checkconf \
49 $(PKG_INSTALL_DIR)/usr/sbin/unbound-control \
50 $(PKG_INSTALL_DIR)/usr/sbin/unbound-host \
51 $(1)/usr/sbin/
52 $(INSTALL_DIR) $(1)/etc/unbound
53 $(INSTALL_CONF) ./files/unbound.conf $(1)/etc/unbound/
54 $(INSTALL_CONF) ./files/dlv.isc.org.key $(1)/etc/unbound/
55 $(INSTALL_CONF) ./files/anchors.mf $(1)/etc/unbound/
56 $(INSTALL_DIR) $(1)/etc/init.d
57 $(INSTALL_BIN) ./files/unbound.init $(1)/etc/init.d/unbound
58 endef
59
60 $(eval $(call BuildPackage,unbound))
61