contrib/package: add Makefile entry for luci-app-ahcp
[project/luci.git] / contrib / package / luci / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_BRANCH:=trunk
4
5 ifeq ($(DUMP),)
6   USELOCAL:=$(shell grep luci ../../../.project 2>/dev/null >/dev/null && echo 1)
7 endif
8
9 PKG_NAME:=luci
10 PKG_RELEASE:=1
11
12 PKG_BUILD_PARALLEL:=0
13
14 ifeq ($(USELOCAL),1)
15   PKG_VERSION:=0.10+svn
16 else
17   PKG_SOURCE_URL:=http://svn.luci.subsignal.org/luci/$(PKG_BRANCH)
18   ifeq ($(DUMP),)
19     PKG_REV:=$(shell LC_ALL=C svn info $(CURDIR) | sed -ne's/^Revision: //p')
20     PKG_VERSION:=0.10+svn$(PKG_REV)
21   endif
22   PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
23   PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
24   PKG_SOURCE_PROTO:=svn
25   PKG_SOURCE_VERSION:=$(PKG_REV)
26 endif
27
28 PKG_BUILD_DEPENDS:=$(if $(STAGING_DIR_ROOT),lua/host)
29 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
30 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
31
32 LUA_TARGET:=source
33 LUCI_CFLAGS:=
34 LUCI_BUILD_PACKAGES:=
35 LUCI_SELECTED_MODULES:=
36
37 ifeq ($(BOARD),brcm-2.4)
38   MAKE_FLAGS += CRAP="1"
39 endif
40
41
42 ### Templates ###
43 define Package/luci/install/template
44         $(CP) -a $(PKG_BUILD_DIR)/$(2)/dist/* $(1)/ -R
45         $(CP) -a $(PKG_BUILD_DIR)/$(2)/ipkg/* $(1)/CONTROL/ 2>/dev/null || true
46 endef
47
48
49 ### Core package ###
50 define Package/luci-lib-core
51   SECTION:=luci
52   CATEGORY:=LuCI
53   TITLE:=LuCI - Lua Configuration Interface
54   URL:=http://luci.subsignal.org/
55   MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
56   SUBMENU:=Libraries
57   DEPENDS:=+lua +libuci-lua
58   TITLE:=LuCI core libraries
59 endef
60
61 define Package/luci-lib-core/install
62         $(call Package/luci/install/template,$(1),libs/core)
63         $(PKG_BUILD_DIR)/build/mkversion.sh $(1)/usr/lib/lua/luci/version.lua \
64                 "OpenWrt Firmware" \
65                 "$(OPENWRTVERSION)" \
66                 "$(PKG_BRANCH)" \
67                 "$(PKG_VERSION)"
68 endef
69
70 define Package/luci-lib-core/config
71        choice
72                prompt "Build Target"
73                default PACKAGE_luci-lib-core_source
74
75        config PACKAGE_luci-lib-core_compile
76                bool "Precompiled"
77
78        config PACKAGE_luci-lib-core_stripped
79                bool "Stripped"
80
81        config PACKAGE_luci-lib-core_srcdiet
82                bool "Compressed Source"
83
84        config PACKAGE_luci-lib-core_source
85                bool "Full Source"
86
87        endchoice
88 endef
89
90 ifneq ($(CONFIG_PACKAGE_luci-lib-core_compile),)
91   LUA_TARGET:=compile
92 endif
93
94 ifneq ($(CONFIG_PACKAGE_luci-lib-core_stripped),)
95   LUA_TARGET:=strip
96 endif
97
98 ifneq ($(CONFIG_PACKAGE_luci-lib-core_srcdiet),)
99   LUA_TARGET:=diet
100 endif
101
102 ifneq ($(CONFIG_PACKAGE_luci-lib-core),)
103   LUCI_SELECTED_MODULES+=libs/core
104 endif
105
106 LUCI_BUILD_PACKAGES += luci-lib-core
107
108
109 ### Libraries ###
110 define library
111   define Package/luci-lib-$(1)
112     SECTION:=luci
113     CATEGORY:=LuCI
114     TITLE:=LuCI - Lua Configuration Interface
115     URL:=http://luci.subsignal.org/
116     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
117     SUBMENU:=Libraries
118     TITLE:=$(if $(2),$(2),LuCI $(1) library)
119     $(if $(3),DEPENDS:=+luci-lib-core $(3))
120   endef
121
122   define Package/luci-lib-$(1)/install
123         $(call Package/luci/install/template,$$(1),libs/$(1))
124         $(call Package/luci-lib-$(1)/extra-install)
125   endef
126
127   ifneq ($(CONFIG_PACKAGE_luci-lib-$(1)),)
128     LUCI_SELECTED_MODULES+=libs/$(1)
129   endif
130
131   LUCI_BUILD_PACKAGES += luci-lib-$(1)
132 endef
133
134 define Package/luci-lib-web/conffiles
135 /etc/config/luci
136 endef
137
138 define Package/luci-lib-nixio/config
139         choice
140                 prompt "TLS Provider"
141                 default PACKAGE_luci-lib-nixio_notls
142
143                 config PACKAGE_luci-lib-nixio_notls
144                         bool "Disabled"
145
146                 config PACKAGE_luci-lib-nixio_axtls
147                         bool "Builtin (axTLS)"
148
149                 config PACKAGE_luci-lib-nixio_cyassl
150                         bool "CyaSSL"
151                         select PACKAGE_libcyassl
152
153                 config PACKAGE_luci-lib-nixio_openssl
154                         bool "OpenSSL"
155                         select PACKAGE_libopenssl
156         endchoice
157 endef
158
159
160 NIXIO_TLS:=
161
162 ifneq ($(CONFIG_PACKAGE_luci-lib-nixio_axtls),)
163   NIXIO_TLS:=axtls
164 endif
165
166 ifneq ($(CONFIG_PACKAGE_luci-lib-nixio_openssl),)
167   NIXIO_TLS:=openssl
168 endif
169
170 ifneq ($(CONFIG_PACKAGE_luci-lib-nixio_cyassl),)
171   NIXIO_TLS:=cyassl
172   LUCI_CFLAGS+=-I$(STAGING_DIR)/usr/include/cyassl
173 endif
174
175
176 $(eval $(call library,fastindex,Fastindex indexing module))
177 $(eval $(call library,httpclient,HTTP(S) client library,+luci-lib-web +luci-lib-nixio))
178 $(eval $(call library,ipkg,LuCI IPKG/OPKG call abstraction library))
179 $(eval $(call library,json,LuCI JSON library))
180 $(eval $(call library,lmo,LuCI LMO I18N library))
181 $(eval $(call library,lucid,LuCId Full-Stack Webserver,+luci-lib-nixio +luci-lib-web +luci-lib-px5g))
182 $(eval $(call library,lucid-http,LuCId HTTP Backend,+luci-lib-lucid))
183 $(eval $(call library,lucid-rpc,LuCId RPC Backend,+luci-lib-lucid))
184 $(eval $(call library,nixio,NIXIO POSIX library,+PACKAGE_luci-lib-nixio_openssl:libopenssl +PACKAGE_luci-lib-nixio_cyassl:libcyassl))
185 $(eval $(call library,px5g,RSA/X.509 Key Generator (required for LuCId SSL support),+luci-lib-nixio))
186 $(eval $(call library,sys,LuCI Linux/POSIX system library))
187 $(eval $(call library,web,MVC Webframework,+luci-lib-sys +luci-lib-nixio +luci-lib-core +luci-sgi-cgi +luci-lib-lmo))
188
189
190 ### Community Packages ###
191 define Package/luci-mod-freifunk-community
192   SECTION:=luci
193   CATEGORY:=LuCI
194   TITLE:=LuCI - Lua Configuration Interface
195   URL:=http://luci.subsignal.org/
196   MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
197   SUBMENU:=Freifunk
198   TITLE:=Freifunk Community Meta-Package
199   DEPENDS+= \
200    +luci-lib-web +luci-app-splash \
201    +luci-app-ffwizard \
202    +luci-i18n-german \
203    +PACKAGE_luci-mod-freifunk-community:olsrd +PACKAGE_luci-mod-freifunk-community:olsrd-mod-dyn-gw-plain \
204    +PACKAGE_luci-mod-freifunk-community:olsrd-mod-txtinfo +PACKAGE_luci-mod-freifunk-community:olsrd-mod-nameservice \
205    +PACKAGE_luci-mod-freifunk-community:olsrd-mod-watchdog +PACKAGE_luci-mod-freifunk-community:kmod-tun \
206    +PACKAGE_luci-mod-freifunk-community:ip +PACKAGE_luci-mod-freifunk-community:freifunk-watchdog +luci-app-olsr +luci-app-olsr-services
207 endef
208
209 define Package/luci-mod-freifunk-community/install
210         $(call Package/luci/install/template,$(1),applications/freifunk-community)
211 endef
212
213 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk-community),)
214         LUCI_SELECTED_MODULES+=applications/freifunk-community
215 endif
216
217 LUCI_BUILD_PACKAGES += luci-mod-freifunk-community
218
219
220 ### Modules ###
221 define module
222   define Package/luci-mod-$(1)
223     SECTION:=luci
224     CATEGORY:=LuCI
225     TITLE:=LuCI - Lua Configuration Interface
226     URL:=http://luci.subsignal.org/
227     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
228     SUBMENU:=Modules
229     TITLE:=$(if $(2),$(2),LuCI $(1) module)
230     $(if $(3),DEPENDS+=$(3))
231   endef
232
233   define Package/luci-mod-$(1)/install
234         $(call Package/luci/install/template,$$(1),modules/$(1))
235         $(call Package/luci-mod-$(1)/extra-install)
236   endef
237
238   ifneq ($(CONFIG_PACKAGE_luci-mod-$(1)),)
239     LUCI_SELECTED_MODULES+=modules/$(1)
240   endif
241
242   LUCI_BUILD_PACKAGES += luci-mod-$(1)
243 endef
244
245
246 define Package/luci-mod-admin-core/extra-install
247         touch $(1)/etc/init.d/luci_fixtime || true
248 endef
249
250 define Package/luci-mod-freifunk/conffiles
251 /etc/config/freifunk
252 endef
253
254 $(eval $(call module,admin-core,Web UI Core module,+luci-lib-web +luci-i18n-english))
255 $(eval $(call module,admin-mini,LuCI Essentials - stripped down and user-friendly,+luci-mod-admin-core @BROKEN))
256 $(eval $(call module,admin-full,LuCI Administration - full-featured for full control,+luci-mod-admin-core +luci-lib-ipkg))
257 $(eval $(call module,rpc,LuCI RPC - JSON-RPC API,+luci-lib-json))
258 $(eval $(call module,freifunk,LuCI Freifunk module,+luci-mod-admin-full +luci-lib-json +PACKAGE_luci-mod-freifunk:freifunk-firewall))
259 $(eval $(call module,niu,NIU - Next Generation Interface,+luci-mod-admin-core @BROKEN))
260
261
262 ### Applications ###
263 define application
264   define Package/luci-app-$(1)
265     SECTION:=luci
266     CATEGORY:=LuCI
267     TITLE:=LuCI - Lua Configuration Interface
268     URL:=http://luci.subsignal.org/
269     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
270     SUBMENU:=Applications
271     TITLE:=$(if $(2),$(2),LuCI $(1) application)
272         DEPENDS:=+luci-mod-admin-core $(3)
273   endef
274
275   define Package/luci-app-$(1)/install
276         $(call Package/luci/install/template,$$(1),applications/luci-$(1))
277   endef
278
279   ifneq ($(CONFIG_PACKAGE_luci-app-$(1)),)
280     LUCI_SELECTED_MODULES+=applications/luci-$(1)
281   endif
282
283   LUCI_BUILD_PACKAGES += luci-app-$(1)
284 endef
285
286 define Package/luci-app-splash/conffiles
287 /etc/config/luci_splash
288 /usr/lib/luci-splash/splashtext.html
289 endef
290
291 define Package/luci-app-statistics/conffiles
292 /etc/config/luci_statistics
293 endef
294
295 define Package/luci-app-diag-devinfo/conffiles
296 /etc/config/luci_devinfo
297 endef
298
299
300 $(eval $(call application,ffwizard,Freifunk configuration wizard,\
301         +luci-mod-freifunk))
302
303 $(eval $(call application,siitwizard,SIIT IPv4-over-IPv6 configuration wizard,\
304         +PACKAGE_luci-app-siitwizard:kmod-siit))
305
306 $(eval $(call application,firewall,Firmware and Portforwarding application,\
307         +PACKAGE_luci-app-firewall:firewall))
308
309 $(eval $(call application,freifunk-policyrouting,Policy routing for mesh traffic,\
310         +PACKAGE_luci-app-freifunk-policyrouting:freifunk-policyrouting +luci-mod-freifunk))
311
312 $(eval $(call application,olsr,OLSR configuration and status module,\
313         +luci-mod-admin-full +PACKAGE_luci-app-olsr:olsrd +PACKAGE_luci-app-olsr:olsrd-mod-txtinfo))
314
315 $(eval $(call application,olsr-viz,OLSR Visualisation,\
316         +PACKAGE_luci-app-olsr-viz:luci-app-olsr +PACKAGE_luci-app-olsr-viz:olsrd-mod-txtinfo))
317
318 $(eval $(call application,olsr-services,Show services announced with the nameservice plugin,\
319         +PACKAGE_luci-app-olsr-services:olsrd-mod-nameservice +luci-mod-freifunk +PACKAGE_luci-app-olsr-services:luci-app-olsr))
320
321 $(eval $(call application,qos,Quality of Service configuration module,\
322         +PACKAGE_luci-app-qos:qos-scripts))
323
324 $(eval $(call application,splash,Freifunk DHCP-Splash application,\
325         +luci-lib-nixio +PACKAGE_luci-app-splash:tc \
326         +PACKAGE_luci-app-splash:kmod-sched +PACKAGE_luci-app-splash:iptables-mod-nat-extra \
327         +PACKAGE_luci-app-splash:iptables-mod-ipopt))
328
329 $(eval $(call application,statistics,LuCI Statistics Application,\
330         +luci-mod-admin-full +PACKAGE_luci-app-statistics:collectd \
331         +PACKAGE_luci-app-statistics:rrdtool1 \
332         +PACKAGE_luci-app-statistics:collectd-mod-rrdtool \
333         +PACKAGE_luci-app-statistics:collectd-mod-wireless \
334         +PACKAGE_luci-app-statistics:collectd-mod-interface \
335         +PACKAGE_luci-app-statistics:collectd-mod-load))
336
337
338 $(eval $(call application,diag-core,LuCI Diagnostics Tools (Core)))
339
340 $(eval $(call application,diag-devinfo,LuCI Diagnostics Tools (Device Info),\
341         +luci-app-diag-core \
342         +PACKAGE_luci-app-diag-devinfo:smap \
343         +PACKAGE_luci-app-diag-devinfo:netdiscover \
344         +PACKAGE_luci-app-diag-devinfo:mac-to-devinfo \
345         +PACKAGE_luci-app-diag-devinfo:httping \
346         +PACKAGE_luci-app-diag-devinfo:smap-to-devinfo \
347         +PACKAGE_luci-app-diag-devinfo:netdiscover-to-devinfo))
348
349 $(eval $(call application,voice-core,LuCI Voice Software (Core)))
350
351 $(eval $(call application,voice-diag,LuCI Voice Software (Diagnostics),\
352         +luci-app-voice-core +luci-app-diag-devinfo))
353
354 $(eval $(call application,upnp,Universal Plug & Play configuration module,\
355         +PACKAGE_luci-app-upnp:miniupnpd))
356
357 $(eval $(call application,ntpc,NTP time synchronisation configuration module,\
358         +PACKAGE_luci-app-ntpc:ntpclient))
359
360 $(eval $(call application,ddns,Dynamic DNS configuration module,\
361         +PACKAGE_luci-app-ddns:ddns-scripts))
362
363 $(eval $(call application,samba,Network Shares - Samba SMB/CIFS module,\
364         +luci-mod-admin-full +PACKAGE_luci-app-samba:samba3))
365
366 $(eval $(call application,mmc-over-gpio,MMC-over-GPIO configuration module,\
367         +luci-mod-admin-full +PACKAGE_luci-app-mmc-over-gpio:kmod-mmc-over-gpio))
368
369 $(eval $(call application,p910nd,p910nd - Printer server module,\
370         +luci-mod-admin-full +PACKAGE_luci-app-p910nd:p910nd))
371
372 $(eval $(call application,ushare,uShare - UPnP A/V & DLNA Media Server,\
373         +luci-mod-admin-full +PACKAGE_luci-app-ushare:ushare))
374
375 $(eval $(call application,hd-idle,Hard Disk Idle Spin-Down module,\
376         +luci-mod-admin-full +PACKAGE_luci-app-hd-idle:hd-idle))
377
378 $(eval $(call application,tinyproxy,Tinyproxy - HTTP(S)-Proxy configuration,\
379         +luci-mod-admin-full +PACKAGE_luci-app-tinyproxy:tinyproxy))
380
381 $(eval $(call application,polipo,LuCI Support for the Polipo Proxy,\
382         +PACKAGE_luci-app-polipo:polipo))
383
384 $(eval $(call application,openvpn,LuCI Support for OpenVPN,\
385         +PACKAGE_luci-app-openvpn:openvpn))
386
387 $(eval $(call application,p2pblock,LuCI Support for the Freifunk P2P-Block addon,\
388         +luci-app-firewall +PACKAGE_luci-app-p2pblock:freifunk-p2pblock))
389
390 $(eval $(call application,multiwan,LuCI Support for the OpenWrt MultiWAN agent,\
391         +luci-app-firewall +PACKAGE_luci-app-multiwan:multiwan))
392
393 $(eval $(call application,wol,LuCI Support for Wake-on-LAN,\
394         +PACKAGE_luci-app-wol:etherwake))
395
396 $(eval $(call application,vnstat,LuCI Support for VnStat,\
397         +PACKAGE_luci-app-vnstat:vnstat \
398     +PACKAGE_luci-app-vnstat:vnstati))
399
400 $(eval $(call application,radvd,LuCI Support for Radvd,\
401         +luci-mod-admin-full +PACKAGE_luci-app-radvd:radvd))
402
403 $(eval $(call application,ahcp,LuCI Support for AHCPd,\
404         +luci-mod-admin-full +PACKAGE_luci-app-ahcp:ahcpd))
405
406 $(eval $(call application,lqtapifoss,Lantiq voip))
407
408 ### Server Gateway Interfaces ###
409 define sgi
410   define Package/luci-sgi-$(1)
411     SECTION:=luci
412     CATEGORY:=LuCI
413     TITLE:=LuCI - Lua Configuration Interface
414     URL:=http://luci.subsignal.org/
415     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
416     SUBMENU:=Server Interfaces
417     TITLE:=$(if $(2),$(2),LuCI $(1) server gateway interface)
418         $(if $(3),DEPENDS:=$(3))
419   endef
420
421   define Package/luci-sgi-$(1)/install
422         $(call Package/luci/install/template,$$(1),libs/sgi-$(1))
423   endef
424
425   ifneq ($(CONFIG_PACKAGE_luci-sgi-$(1)),)
426     LUCI_SELECTED_MODULES+=libs/sgi-$(1)
427   endif
428
429   LUCI_BUILD_PACKAGES += luci-sgi-$(1)
430 endef
431
432 $(eval $(call sgi,cgi,CGI Gateway behind existing Webserver))
433 $(eval $(call sgi,uhttpd,Binding for the uHTTPd server,+uhttpd +uhttpd-mod-lua))
434
435
436 ### Themes ###
437 define theme
438   define Package/luci-theme-$(1)
439     SECTION:=luci
440     CATEGORY:=LuCI
441     TITLE:=LuCI - Lua Configuration Interface
442     URL:=http://luci.subsignal.org/
443     SUBMENU:=Themes
444     TITLE:=$(if $(2),$(2),LuCI $(1) theme)
445         MAINTAINER:=$(if $(3),$(3),LuCI Development Team <luci@lists.subsignal.org>)
446         DEPENDS:=$(if $(filter-out base,$(1)),+luci-theme-base) $(4)
447         $(if $(5),DEFAULT:=PACKAGE_luci-lib-core)
448   endef
449
450   define Package/luci-theme-$(1)/install
451         $(call Package/luci/install/template,$$(1),themes/$(1))
452   endef
453
454   ifneq ($(CONFIG_PACKAGE_luci-theme-$(1)),)
455     LUCI_SELECTED_MODULES+=themes/$(1)
456   endif
457
458   LUCI_BUILD_PACKAGES += luci-theme-$(1)
459 endef
460
461 $(eval $(call theme,base,Common base for all themes,,+luci-lib-web))
462 $(eval $(call theme,openwrt,OpenWrt.org (default),,,1))
463 $(eval $(call theme,fledermaus,Fledermaus Theme))
464
465 $(eval $(call theme,freifunk,alternative Freifunk Theme,\
466         Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>))
467
468 $(eval $(call theme,freifunk-bno,Freifunk Berlin Nordost Theme,\
469         Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>))
470
471 $(eval $(call theme,freifunk-hannover,Freifunk Hannover Theme,\
472         Mikolas Bingemer <mickey-at-freifunk-hannover-dot-de>))
473
474 $(eval $(call theme,freifunk-generic,Freifunk Generic Theme,\
475         Manuel Munz <freifunk-at-somakoma-dot-de>))
476
477 ### Translations ###
478 define translation
479   define Package/luci-i18n-$(1)
480     SECTION:=luci
481     CATEGORY:=LuCI
482     TITLE:=LuCI - Lua Configuration Interface
483     URL:=http://luci.subsignal.org/
484     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
485     SUBMENU:=Translations
486     TITLE:=$(if $(2),$(2),$(1))
487   endef
488
489   define Package/luci-i18n-$(1)/install
490         $(call Package/luci/install/template,$$(1),i18n/$(1))
491   endef
492
493   ifneq ($(CONFIG_PACKAGE_luci-i18n-$(1)),)
494     LUCI_SELECTED_MODULES+=i18n/$(1)
495   endif
496
497   LUCI_BUILD_PACKAGES += luci-i18n-$(1)
498 endef
499
500 $(eval $(call translation,german,German))
501 $(eval $(call translation,english,English))
502 $(eval $(call translation,french,French (by Florian Fainelli)))
503 $(eval $(call translation,italian,Italian (by Matteo Croce)))
504 $(eval $(call translation,russian,Russian (by Skryabin Dmitry)))
505 $(eval $(call translation,portuguese_brazilian,Portuguese (Brazilian) (by Carlos Cesario)))
506 $(eval $(call translation,chinese,Chinese (by Chinese Translators)))
507 $(eval $(call translation,japanese,Japanese (by Tsukasa Hamano)))
508 $(eval $(call translation,greek,Greek (by Vasilis Tsiligiannis)))
509 $(eval $(call translation,catalan,Catalan (by Eduard Duran)))
510 $(eval $(call translation,portuguese,Portuguese (by Jose Monteiro)))
511 $(eval $(call translation,spanish,Spanish (by Guillermo Javier Nardoni)))
512 $(eval $(call translation,vietnamese,Vietnamese (by Hong Phuc Dang)))
513 $(eval $(call translation,malay,Malay (by Teow Wai Chet)))
514 $(eval $(call translation,norwegian,Norwegian (by Lars Hardy)))
515
516
517 ### Collections ###
518 define collection
519   define Package/luci$(if $(1),-$(1))
520     SECTION:=luci
521     CATEGORY:=LuCI
522     TITLE:=LuCI - Lua Configuration Interface
523     URL:=http://luci.subsignal.org/
524     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
525     SUBMENU:=Collections
526     TITLE:=$(if $(2),$(2),LuCI $(if $(1),$(1),general) collection)
527     $(if $(3),DEPENDS:=$(3))
528   endef
529
530   define Package/luci$(if $(1),-$(1))/install
531         true
532   endef
533
534   LUCI_BUILD_PACKAGES += luci$(if $(1),-$(1))
535 endef
536
537 $(eval $(call collection,,\
538         Standard OpenWrt set including full and mini admin and the standard theme,\
539         +uhttpd +luci-mod-admin-full +luci-theme-openwrt +luci-app-firewall \
540         +libiwinfo))
541
542 $(eval $(call collection,ssl,\
543         Standard OpenWrt set with HTTPS support,\
544         +uhttpd +uhttpd-mod-tls +px5g +luci-mod-admin-full +luci-theme-openwrt \
545         +luci-app-firewall +libiwinfo))
546
547 $(eval $(call collection,light,\
548         Minimum package set using only admin mini and the standard theme,\
549         +uhttpd +luci-mod-admin-mini +luci-theme-openwrt @BROKEN))
550
551
552 ### Compile ###
553 PKG_CONFIG_DEPENDS=$(patsubst %,CONFIG_PACKAGE_%,$(LUCI_BUILD_PACKAGES))
554
555 include $(INCLUDE_DIR)/package.mk
556
557 ifeq ($(USELOCAL),1)
558   define Build/Prepare
559         mkdir -p $(PKG_BUILD_DIR)
560         $(TAR) c -C ../../../ . \
561                 --exclude=.pc --exclude=.svn --exclude=.git \
562                 --exclude='boa-0*' --exclude='*.o' --exclude='*.so' \
563                 --exclude=dist | \
564                         tar x -C $(PKG_BUILD_DIR)/
565   endef
566 endif
567
568 define Build/Configure
569 endef
570
571 MAKE_FLAGS += \
572         MODULES="$(LUCI_SELECTED_MODULES)" \
573         LUA_TARGET="$(LUA_TARGET)" \
574         LUA_SHLIBS="-llua -lm -ldl -lcrypt" \
575         CFLAGS="$(TARGET_CFLAGS) $(LUCI_CFLAGS) -I$(STAGING_DIR)/usr/include" \
576         LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
577         NIXIO_TLS="$(NIXIO_TLS)" OS="Linux"
578
579
580 $(foreach b,$(LUCI_BUILD_PACKAGES),$(eval $(call BuildPackage,$(b))))