Merge pull request #2887 from dibdot/adblock
[feed/packages.git] / net / unbound / Makefile
1 #
2 # Copyright (C) 2010-2016 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.5.9
12 PKG_RELEASE:=3
13
14 PKG_LICENSE:=BSD-3-Clause
15 PKG_LICENSE_FILES:=LICENSE
16 PKG_MAINTAINER:=Michael Hanselmann <public@hansmi.ch>
17
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
19 PKG_SOURCE_URL:=http://www.unbound.net/downloads
20 PKG_MD5SUM:=0cefa62c1690b4db18583db84bff00e3
21
22 PKG_BUILD_DEPENDS:=libexpat
23 PKG_BUILD_PARALLEL:=1
24 PKG_FIXUP:=autoreconf
25 PKG_INSTALL:=1
26
27 include $(INCLUDE_DIR)/package.mk
28
29 define Package/unbound/Default
30 TITLE:=A validating, recursive & caching DNS resolver
31 URL:=http://www.unbound.net/
32 DEPENDS:=+libopenssl
33 endef
34
35 define Package/unbound
36 $(call Package/unbound/Default)
37 SECTION:=net
38 CATEGORY:=Network
39 SUBMENU:=IP Addresses and Names
40 TITLE+= (daemon)
41 DEPENDS+= +libunbound
42 USERID:=unbound:unbound
43 endef
44
45 define Package/unbound/description
46 This package contains the Unbound daemon.
47 endef
48
49 define Package/unbound-anchor
50 $(call Package/unbound/Default)
51 SECTION:=net
52 CATEGORY:=Network
53 SUBMENU:=IP Addresses and Names
54 TITLE+= (anchor utility)
55 DEPENDS+= +unbound +libexpat
56 endef
57
58 define Package/unbound-anchor/description
59 This package contains the Unbound anchor utility.
60 endef
61
62 define Package/unbound-control
63 $(call Package/unbound/Default)
64 SECTION:=net
65 CATEGORY:=Network
66 SUBMENU:=IP Addresses and Names
67 TITLE+= (control utility)
68 DEPENDS+= +unbound
69 endef
70
71 define Package/unbound-control/description
72 This package contains the Unbound control utility.
73 endef
74
75 define Package/unbound-control-setup
76 $(call Package/unbound/Default)
77 SECTION:=net
78 CATEGORY:=Network
79 SUBMENU:=IP Addresses and Names
80 TITLE+= (control setup utility)
81 DEPENDS+= +unbound-control +openssl-util
82 endef
83
84 define Package/unbound-control-setup/description
85 This package contains the Unbound control setup utility.
86 endef
87
88 define Package/unbound-host
89 $(call Package/unbound/Default)
90 SECTION:=net
91 CATEGORY:=Network
92 SUBMENU:=IP Addresses and Names
93 TITLE+= (DNS lookup utility)
94 DEPENDS+= +libunbound
95 endef
96
97 define Package/unbound-host/description
98 This package contains the Unbound DNS lookup utility.
99 endef
100
101 define Package/libunbound
102 $(call Package/unbound/Default)
103 SECTION:=libs
104 CATEGORY:=Libraries
105 TITLE+= (library)
106 endef
107
108 define Package/libunbound/description
109 This package contains the Unbound shared library.
110 endef
111
112 CONFIGURE_ARGS += \
113 --disable-gost \
114 --enable-allsymbols \
115 --with-libexpat="$(STAGING_DIR)/usr" \
116 --with-ssl="$(STAGING_DIR)/usr" \
117 --with-pidfile=/var/run/unbound.pid \
118 --with-user=unbound \
119 --without-pthreads
120
121 define Package/unbound/conffiles
122 /etc/unbound/unbound.conf
123 endef
124
125 define Build/InstallDev
126 $(INSTALL_DIR) $(1)/usr/include
127 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/unbound.h $(1)/usr/include/
128 $(INSTALL_DIR) $(1)/usr/lib
129 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libunbound.{so*,a,la} $(1)/usr/lib/
130 endef
131
132 define Package/unbound/install
133 $(INSTALL_DIR) $(1)/usr/sbin
134 $(INSTALL_BIN) \
135 $(PKG_INSTALL_DIR)/usr/sbin/unbound \
136 $(PKG_INSTALL_DIR)/usr/sbin/unbound-checkconf \
137 $(1)/usr/sbin/
138 $(INSTALL_DIR) $(1)/etc/unbound
139 $(INSTALL_CONF) \
140 $(PKG_INSTALL_DIR)/etc/unbound/unbound.conf \
141 $(1)/etc/unbound/
142 $(INSTALL_CONF) ./files/root.key $(1)/etc/unbound/
143 $(INSTALL_DIR) $(1)/etc/init.d
144 $(INSTALL_BIN) ./files/unbound.init $(1)/etc/init.d/unbound
145 endef
146
147 define Package/unbound-anchor/install
148 $(INSTALL_DIR) $(1)/usr/sbin
149 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/unbound-anchor $(1)/usr/sbin/
150 endef
151
152 define Package/unbound-control/install
153 $(INSTALL_DIR) $(1)/usr/sbin
154 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/unbound-control $(1)/usr/sbin/
155 endef
156
157 define Package/unbound-control-setup/install
158 $(INSTALL_DIR) $(1)/usr/sbin
159 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/unbound-control-setup $(1)/usr/sbin/
160 endef
161
162 define Package/unbound-host/install
163 $(INSTALL_DIR) $(1)/usr/sbin
164 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/unbound-host $(1)/usr/sbin/
165 endef
166
167 define Package/libunbound/install
168 $(INSTALL_DIR) $(1)/usr/lib
169 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libunbound.so.* $(1)/usr/lib/
170 endef
171
172 $(eval $(call BuildPackage,unbound))
173 $(eval $(call BuildPackage,unbound-anchor))
174 $(eval $(call BuildPackage,unbound-control))
175 $(eval $(call BuildPackage,unbound-control-setup))
176 $(eval $(call BuildPackage,unbound-host))
177 $(eval $(call BuildPackage,libunbound))