contrib: add WoL application to menuconfig
[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 ifeq ($(USELOCAL),1)
13   PKG_VERSION:=0.9+svn
14 else
15   PKG_SOURCE_URL:=http://svn.luci.subsignal.org/luci/$(PKG_BRANCH)
16   ifeq ($(DUMP),)
17     PKG_REV:=$(shell LC_ALL=C svn info $(CURDIR) | sed -ne's/^Revision: //p')
18     PKG_VERSION:=0.9+svn$(PKG_REV)
19   endif
20   PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
21   PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
22   PKG_SOURCE_PROTO:=svn
23   PKG_SOURCE_VERSION:=$(PKG_REV)
24 endif
25
26 PKG_BUILD_DEPENDS:=$(if $(STAGING_DIR_ROOT),lua/host)
27 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
28 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
29
30 LUA_TARGET:=source
31 LUCI_CFLAGS:=
32 PKG_SELECTED_MODULES:=
33
34 ifeq ($(BOARD),brcm-2.4)
35   MAKE_FLAGS += CRAP="1"
36 endif
37
38
39 include $(INCLUDE_DIR)/package.mk
40
41 ifeq ($(USELOCAL),1)
42   define Build/Prepare
43         mkdir -p $(PKG_BUILD_DIR)
44         $(TAR) c -C ../../../ . \
45                 --exclude=.pc --exclude=.svn --exclude=.git \
46                 --exclude='boa-0*' --exclude='*.o' --exclude='*.so' \
47                 --exclude=dist | \
48                         tar x -C $(PKG_BUILD_DIR)/
49   endef
50 endif
51
52 define Build/Configure
53 endef
54
55 ### Templates ###
56
57 define Package/luci/libtemplate
58   SECTION:=luci
59   CATEGORY:=LuCI
60   TITLE:=LuCI - Lua Configuration Interface
61   URL:=http://luci.freifunk-halle.net/
62   MAINTAINER:=Steven Barth <steven-at-midlink-dot-org>
63   SUBMENU:=Internal Libraries
64   DEPENDS:=+luci-core
65 endef
66
67 define Package/luci/webservertemplate
68   $(call Package/luci/libtemplate)
69   SUBMENU:=Webserver
70 endef
71
72 define Package/luci/fftemplate
73   $(call Package/luci/libtemplate)
74   SUBMENU:=Freifunk
75   DEPENDS:=+luci-mod-freifunk
76 endef
77
78 define Package/luci/i18ntemplate
79   $(call Package/luci/libtemplate)
80   SUBMENU:=Translations
81   DEPENDS:=+luci-web
82 endef
83
84 define Package/luci/thtemplate
85   $(call Package/luci/libtemplate)
86   SUBMENU:=Themes
87   DEPENDS:=+luci-web
88 endef
89
90 define Package/luci/maintemplate
91   $(call Package/luci/libtemplate)
92   SUBMENU:=
93 endef
94
95 define Package/luci/webtemplate
96   $(call Package/luci/libtemplate)
97   SUBMENU:=Components
98 endef
99
100 define Package/luci/collectiontemplate
101   $(call Package/luci/libtemplate)
102   SUBMENU:=Collections
103 endef
104
105
106 define Package/luci/install/template
107         $(CP) -a $(PKG_BUILD_DIR)/$(2)/dist/* $(1)/ -R
108         $(CP) -a $(PKG_BUILD_DIR)/$(2)/ipkg/* $(1)/CONTROL/ 2>/dev/null || true
109 endef
110
111
112
113 ### Core package ###
114
115 define Package/luci-core
116   $(call Package/luci/libtemplate)
117   DEPENDS:=+lua +luci-nixio
118   TITLE:=LuCI core libraries
119 endef
120
121 define Package/luci-core/install
122         $(call Package/luci/install/template,$(1),libs/core)
123         $(PKG_BUILD_DIR)/build/mkversion.sh $(1)/usr/lib/lua/luci/version.lua \
124                 "OpenWrt Firmware" \
125                 "$(OPENWRTVERSION)" \
126                 "$(PKG_BRANCH)" \
127                 "$(PKG_VERSION)"
128 endef
129
130 define Package/luci-core/config
131        choice
132                prompt "Build Target"
133                default PACKAGE_luci-core_source
134
135        config PACKAGE_luci-core_compile
136                bool "Precompiled"
137
138        config PACKAGE_luci-core_stripped
139                bool "Stripped"
140
141        config PACKAGE_luci-core_source
142                bool "Full Source"
143
144        endchoice
145 endef
146
147 ifneq ($(CONFIG_PACKAGE_luci-core_compile),)
148   LUA_TARGET:=compile
149 endif
150
151 ifneq ($(CONFIG_PACKAGE_luci-core_stripped),)
152   LUA_TARGET:=strip
153 endif
154
155 ifneq ($(CONFIG_PACKAGE_luci-core_zipped),)
156   LUA_TARGET:=gzip
157 endif
158
159
160 ### Libraries ###
161 define Package/luci-cbi
162   $(call Package/luci/libtemplate)
163   DEPENDS+=+luci-web +luci-uvl +luci-uci
164   TITLE:=Configuration Binding Interface
165 endef
166
167 define Package/luci-cbi/install
168         $(call Package/luci/install/template,$(1),libs/cbi)
169 endef
170
171
172 define Package/luci-uci
173   $(call Package/luci/libtemplate)
174   DEPENDS+=+libuci-lua
175   TITLE:=High-Level UCI API
176 endef
177
178 define Package/luci-uci/install
179         $(call Package/luci/install/template,$(1),libs/uci)
180 endef
181
182
183 define Package/luci-fastindex
184   $(call Package/luci/libtemplate)
185   TITLE:=Fastindex indexing module
186 endef
187
188 define Package/luci-fastindex/install
189         $(call Package/luci/install/template,$(1),libs/fastindex)
190 endef
191
192
193 define Package/luci-http
194   $(call Package/luci/libtemplate)
195   TITLE:=HTTP Protocol implementation
196 endef
197
198 define Package/luci-http/install
199         $(call Package/luci/install/template,$(1),libs/http)
200 endef
201
202
203 define Package/luci-httpclient
204   $(call Package/luci/libtemplate)
205   TITLE:=HTTP(S) client library
206   DEPENDS+=+luci-http +luci-nixio
207 endef
208
209 define Package/luci-httpclient/install
210         $(call Package/luci/install/template,$(1),libs/httpclient)
211 endef
212
213
214 define Package/luci-ipkg
215   $(call Package/luci/libtemplate)
216   TITLE:=LuCI IPKG/OPKG call abstraction library
217 endef
218
219 define Package/luci-ipkg/install
220         $(call Package/luci/install/template,$(1),libs/ipkg)
221 endef
222
223
224 define Package/luci-json
225   $(call Package/luci/libtemplate)
226   TITLE:=LuCI JSON Library
227 endef
228
229 define Package/luci-json/install
230         $(call Package/luci/install/template,$(1),libs/json)
231 endef
232
233
234 define Package/luci-lmo
235   $(call Package/luci/libtemplate)
236   TITLE:=lmo
237 endef
238
239 define Package/luci-lmo/install
240         $(call Package/luci/install/template,$(1),libs/lmo)
241 endef
242
243
244 define Package/luci-luanet
245   $(call Package/luci/libtemplate)
246   TITLE:=luanet
247   DEPENDS+=+libiw
248 endef
249
250 define Package/luci-luanet/install
251         $(call Package/luci/install/template,$(1),libs/luanet)
252 endef
253
254
255 define Package/luci-iwinfo
256   $(call Package/luci/libtemplate)
257   TITLE:=Wireless abstration library
258 endef
259
260 define Package/luci-iwinfo/install
261         $(call Package/luci/install/template,$(1),libs/iwinfo)
262 endef
263
264
265 define Package/luci-lucid
266   $(call Package/luci/webservertemplate)
267   TITLE:=LuCId Full-Stack Webserver
268   DEPENDS+=+luci-nixio +luci-http +luci-px5g
269 endef
270
271 define Package/luci-lucid/install
272         $(call Package/luci/install/template,$(1),libs/lucid)
273         $(call Package/luci/install/template,$(1),libs/lucid-http)
274 endef
275
276
277
278 NIXIO_TLS:=
279
280 define Package/luci-nixio
281   $(call Package/luci/libtemplate)
282   TITLE:=NIXIO POSIX Library
283   DEPENDS:=+PACKAGE_luci-nixio_openssl:libopenssl +PACKAGE_luci-nixio_cyassl:libcyassl
284 endef
285
286 define Package/luci-nixio/install
287         $(call Package/luci/install/template,$(1),libs/nixio)
288 endef
289
290 define Package/luci-nixio/config
291         choice
292                 prompt "TLS Provider"
293                 default PACKAGE_luci-nixio_notls
294
295                 config PACKAGE_luci-nixio_notls
296                         bool "Disabled"
297
298                 config PACKAGE_luci-nixio_axtls
299                         bool "Builtin (axTLS)"
300
301                 config PACKAGE_luci-nixio_cyassl
302                         bool "CyaSSL"
303                         select PACKAGE_libcyassl
304
305                 config PACKAGE_luci-nixio_openssl
306                         bool "OpenSSL"
307                         select PACKAGE_libopenssl
308         endchoice
309 endef
310
311 ifneq ($(CONFIG_PACKAGE_luci-nixio_axtls),)
312   NIXIO_TLS:=axtls
313 endif
314
315 ifneq ($(CONFIG_PACKAGE_luci-nixio_openssl),)
316   NIXIO_TLS:=openssl
317 endif
318
319 ifneq ($(CONFIG_PACKAGE_luci-nixio_cyassl),)
320   NIXIO_TLS:=cyassl
321   LUCI_CFLAGS+=-I$(STAGING_DIR)/usr/include/cyassl
322 endif
323
324
325 define Package/luci-px5g
326   $(call Package/luci/webservertemplate)
327   TITLE:=RSA/X.509 Key Generator (required for LuCId SSL support)
328   DEPENDS:=+luci-nixio
329 endef
330
331 define Package/luci-px5g/install
332         $(call Package/luci/install/template,$(1),libs/px5g)
333 endef
334
335
336 define Package/luci-sys
337   $(call Package/luci/libtemplate)
338   TITLE:=LuCI Linux/POSIX system library
339   DEPENDS:=+luci-iwinfo
340 endef
341
342 define Package/luci-sys/install
343         $(call Package/luci/install/template,$(1),libs/sys)
344 endef
345
346
347 define Package/luci-web
348   $(call Package/luci/libtemplate)
349   DEPENDS+=+luci-http +luci-sys +luci-nixio +luci-uci \
350         +luci-sgi-cgi +luci-lmo
351   TITLE:=MVC Webframework
352   $(call Config,luci.main.lang,string,auto,Default Language)
353 endef
354
355 define Package/luci-web/conffiles
356 /etc/config/luci
357 endef
358
359 define Package/luci-web/install
360         $(call Package/luci/install/template,$(1),libs/web)
361 endef
362
363
364 define Package/luci-uvl
365   $(call Package/luci/libtemplate)
366   DEPENDS+=+luci-sys +luci-uci +luci-core
367   TITLE:=UVL - UCI Validation Layer
368 endef
369
370 define Package/luci-uvl/install
371         $(call Package/luci/install/template,$(1),libs/uvl)
372 endef
373
374
375
376 ### Community Packages ###
377
378 define Package/luci-freifunk-community
379   $(call Package/luci/fftemplate)
380   DEPENDS+= \
381    +luci-web +luci-app-splash \
382    +luci-app-ffwizard-leipzig \
383    +luci-i18n-german \
384    +PACKAGE_luci-freifunk-community:olsrd-luci +PACKAGE_luci-freifunk-community:olsrd-luci-mod-dyn-gw-plain \
385    +PACKAGE_luci-freifunk-community:olsrd-luci-mod-txtinfo +PACKAGE_luci-freifunk-community:olsrd-luci-mod-nameservice \
386    +PACKAGE_luci-freifunk-community:olsrd-luci-mod-watchdog +PACKAGE_luci-freifunk-community:kmod-tun \
387    +PACKAGE_luci-freifunk-community:ip +PACKAGE_luci-freifunk-community:freifunk-watchdog +luci-app-olsr
388   TITLE:=Freifunk Community Meta-Package
389 endef
390
391 define Package/luci-freifunk-community/install
392         $(call Package/luci/install/template,$(1),applications/freifunk-community)
393 endef
394
395 ### Modules ###
396
397 define Package/luci-admin-core
398   $(call Package/luci/webtemplate)
399   DEPENDS+=+luci-web +luci-cbi +luci-i18n-english
400   TITLE:=Web UI Core Module
401 endef
402
403 define Package/luci-admin-core/install
404         $(call Package/luci/install/template,$(1),modules/admin-core)
405         touch $(1)/etc/init.d/luci_fixtime || true
406 endef
407
408
409 define Package/luci-niu
410   $(call Package/luci/maintemplate)
411   DEPENDS+=+luci-admin-core @BROKEN
412   TITLE:=NIU - Next Generation Interface 
413 endef
414
415 define Package/luci-niu/install 
416         $(call Package/luci/install/template,$(1),modules/niu)
417 endef
418
419 define Package/luci-admin-mini
420   $(call Package/luci/webtemplate)
421   DEPENDS+=+luci-admin-core
422   TITLE:=LuCI Essentials - stripped down and user-friendly
423 endef
424
425 define Package/luci-admin-mini/install
426         $(call Package/luci/install/template,$(1),modules/admin-mini)
427 endef
428
429
430 define Package/luci-admin-full
431   $(call Package/luci/webtemplate)
432   DEPENDS+=+luci-admin-core +luci-ipkg
433   TITLE:=LuCI Administration - full-featured for full control
434 endef
435
436 define Package/luci-admin-full/install
437         $(call Package/luci/install/template,$(1),modules/admin-full)
438 endef
439
440
441 define Package/luci-admin-rpc
442   $(call Package/luci/webtemplate)
443   DEPENDS+=+luci-json
444   TITLE:=LuCI RPC - JSON-RPC API
445 endef
446
447 define Package/luci-admin-rpc/install
448         $(call Package/luci/install/template,$(1),modules/rpc)
449 endef
450
451
452 define Package/luci-mod-freifunk
453   $(call Package/luci/fftemplate)
454   DEPENDS:=+luci-admin-full +luci-json +PACKAGE_luci-mod-freifunk:freifunk-firewall
455   TITLE:=LuCI Freifunk module
456 endef
457
458 define Package/luci-mod-freifunk/conffiles
459 /etc/config/freifunk
460 endef
461
462 define Package/luci-mod-freifunk/install
463         $(call Package/luci/install/template,$(1),modules/freifunk)
464 endef
465
466
467
468 ### Applications ###
469
470 define Package/luci-app-ffwizard-leipzig
471   $(call Package/luci/fftemplate)
472   TITLE:=Freifunk Leipzig configuration wizard
473 endef
474
475 define Package/luci-app-ffwizard-leipzig/install
476         $(call Package/luci/install/template,$(1),applications/luci-ffwizard-leipzig)
477 endef
478
479
480 define Package/luci-app-siitwizard
481   $(call Package/luci/fftemplate)
482   TITLE:=SIIT IPv4-over-IPv6 configuration wizard
483   DEPENDS:=+luci-admin-core +PACKAGE_luci-app-siitwizard:kmod-siit
484 endef
485
486 define Package/luci-app-siitwizard/install
487         $(call Package/luci/install/template,$(1),applications/luci-siitwizard)
488 endef
489
490
491 define Package/luci-app-firewall
492   $(call Package/luci/webtemplate)
493   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-firewall:firewall
494   TITLE:=Firewall and Portforwarding application
495 endef
496
497 define Package/luci-app-firewall/install
498         $(call Package/luci/install/template,$(1),applications/luci-fw)
499 endef
500
501
502 define Package/luci-app-olsr
503   $(call Package/luci/webtemplate)
504   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-olsr:olsrd-luci \
505    +PACKAGE_luci-app-olsr:olsrd-luci-mod-txtinfo
506   TITLE:=OLSR configuration and status module
507 endef
508
509 define Package/luci-app-olsr/install
510         $(call Package/luci/install/template,$(1),applications/luci-olsr)
511 endef
512
513
514 define Package/luci-app-qos
515   $(call Package/luci/webtemplate)
516   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-qos:qos-scripts
517   TITLE:=Quality of Service configuration module
518 endef
519
520 define Package/luci-app-qos/install
521         $(call Package/luci/install/template,$(1),applications/luci-qos)
522 endef
523
524
525 define Package/luci-app-splash
526   $(call Package/luci/fftemplate)
527   DEPENDS+=+PACKAGE_luci-app-splash:luci-nixio \
528    +PACKAGE_luci-app-splash:tc +PACKAGE_luci-app-splash:kmod-sched \
529    +PACKAGE_luci-app-splash:iptables-mod-nat-extra \
530    +PACKAGE_luci-app-splash:iptables-mod-ipopt
531   TITLE:=Freifunk DHCP-Splash application
532 endef
533
534 define Package/luci-app-splash/conffiles
535 /etc/config/luci_splash
536 endef
537
538 define Package/luci-app-splash/install
539         $(call Package/luci/install/template,$(1),applications/luci-splash)
540 endef
541
542
543 define Package/luci-app-statistics
544   $(call Package/luci/webtemplate)
545   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-statistics:collectd \
546    +PACKAGE_luci-app-statistics:rrdtool1 \
547    +PACKAGE_luci-app-statistics:collectd-mod-rrdtool \
548    +PACKAGE_luci-app-statistics:collectd-mod-wireless \
549    +PACKAGE_luci-app-statistics:collectd-mod-interface \
550    +PACKAGE_luci-app-statistics:collectd-mod-load
551   TITLE:=LuCI Statistics Application
552 endef
553
554 define Package/luci-app-statistics/conffiles
555 /etc/config/luci_statistics
556 endef
557
558 define Package/luci-app-statistics/install
559         $(call Package/luci/install/template,$(1),applications/luci-statistics)
560 endef
561
562 define Package/luci-app-diag-core
563   $(call Package/luci/webtemplate)
564   DEPENDS+=+luci-admin-core 
565   TITLE:=LuCI Diagnostics Tools (Core)
566 endef
567
568 define Package/luci-app-diag-devinfo
569   $(call Package/luci/webtemplate)
570   DEPENDS+=+PACKAGE_luci-app-diag-devinfo:luci-app-diag-core \
571         +PACKAGE_luci-app-diag-devinfo:smap \
572         +PACKAGE_luci-app-diag-devinfo:netdiscover \
573         +PACKAGE_luci-app-diag-devinfo:mac-to-devinfo \
574         +PACKAGE_luci-app-diag-devinfo:httping \
575         +PACKAGE_luci-app-diag-devinfo:smap-to-devinfo \
576         +PACKAGE_luci-app-diag-devinfo:netdiscover-to-devinfo
577   TITLE:=LuCI Diagnostics Tools (Device Info)
578 endef
579
580 define Package/luci-app-voice-core
581   $(call Package/luci/webtemplate)
582   DEPENDS+=+luci-admin-core 
583   TITLE:=LuCI Voice Software (Core)
584 endef
585
586 define Package/luci-app-voice-diag
587   $(call Package/luci/webtemplate)
588   DEPENDS+=+PACKAGE_luci-app-voice-diag:luci-app-voice-core \
589      +PACKAGE_luci-app-voice-diag:luci-app-diag-devinfo
590   TITLE:=LuCI Voice Software (Diagnostics)
591 endef
592
593 define Package/luci-app-diag-devinfo/conffiles
594 /etc/config/luci_devinfo
595 endef
596
597 define Package/luci-app-diag-core/install
598         $(call Package/luci/install/template,$(1),applications/luci-diag-core)
599 endef
600
601 define Package/luci-app-diag-devinfo/install
602         $(call Package/luci/install/template,$(1),applications/luci-diag-devinfo)
603 endef
604
605 define Package/luci-app-voice-core/install
606         $(call Package/luci/install/template,$(1),applications/luci-voice-core)
607 endef
608
609 define Package/luci-app-voice-diag/install
610         $(call Package/luci/install/template,$(1),applications/luci-voice-diag)
611 endef
612
613 define Package/luci-app-upnp
614   $(call Package/luci/webtemplate)
615   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-upnp:miniupnpd
616   TITLE:=Universal Plug & Play configuration module
617 endef
618
619 define Package/luci-app-upnp/install
620         $(call Package/luci/install/template,$(1),applications/luci-upnp)
621 endef
622
623
624 define Package/luci-app-ntpc
625   $(call Package/luci/webtemplate)
626   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-ntpc:ntpclient
627   TITLE:=NTP time synchronisation client configuration module
628 endef
629
630 define Package/luci-app-ntpc/install
631         $(call Package/luci/install/template,$(1),applications/luci-ntpc)
632 endef
633
634
635 define Package/luci-app-ddns
636   $(call Package/luci/webtemplate)
637   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-ddns:ddns-scripts
638   TITLE:=Dynamic DNS configuration module
639 endef
640
641 define Package/luci-app-ddns/install
642         $(call Package/luci/install/template,$(1),applications/luci-ddns)
643 endef
644
645
646 define Package/luci-app-samba
647   $(call Package/luci/webtemplate)
648   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-samba:samba3
649   TITLE:=Network Shares - Samba SMB/CIFS module
650 endef
651
652 define Package/luci-app-samba/install
653         $(call Package/luci/install/template,$(1),applications/luci-samba)
654 endef
655
656
657 define Package/luci-app-mmc-over-gpio
658   $(call Package/luci/webtemplate)
659   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-mmc-over-gpio:kmod-mmc-over-gpio
660   TITLE:=mmc_over_gpio
661 endef
662
663 define Package/luci-app-mmc-over-gpio/install
664         $(call Package/luci/install/template,$(1),applications/luci-mmc-over-gpio)
665 endef
666
667
668 define Package/luci-app-p910nd
669   $(call Package/luci/webtemplate)
670   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-p910nd:p910nd
671   TITLE:=p910nd - Printer server module
672 endef
673
674 define Package/luci-app-p910nd/install
675         $(call Package/luci/install/template,$(1),applications/luci-p910nd)
676 endef
677
678
679 define Package/luci-app-ushare
680   $(call Package/luci/webtemplate)
681   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-ushare:ushare
682   TITLE:=ushare - UPnP A/V & DLNA Media Server
683 endef
684
685 define Package/luci-app-ushare/install
686         $(call Package/luci/install/template,$(1),applications/luci-ushare)
687 endef
688
689 define Package/luci-app-hd-idle
690   $(call Package/luci/webtemplate)
691   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-hd-idle:hd-idle
692   TITLE:=hd-idle
693 endef
694
695 define Package/luci-app-hd-idle/install
696         $(call Package/luci/install/template,$(1),applications/luci-hd-idle)
697 endef
698
699 define Package/luci-app-tinyproxy
700   $(call Package/luci/webtemplate)
701   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-tinyproxy:tinyproxy
702   TITLE:=Tinyproxy - HTTP(S)-Proxy
703 endef
704
705 define Package/luci-app-tinyproxy/install
706         $(call Package/luci/install/template,$(1),applications/luci-tinyproxy)
707 endef
708
709 define Package/luci-app-initmgr
710   $(call Package/luci/webtemplate)
711   DEPENDS+=+luci-admin-full
712   TITLE:=LuCI Initscript Management
713 endef
714
715 define Package/luci-app-initmgr/install
716         $(call Package/luci/install/template,$(1),applications/luci-initmgr)
717 endef
718
719 define Package/luci-app-livestats
720   $(call Package/luci/webtemplate)
721   DEPENDS+=+luci-admin-core +luci-admin-rpc
722   TITLE:=LuCI Realtime Statistics
723 endef
724
725 define Package/luci-app-livestats/install
726         $(call Package/luci/install/template,$(1),applications/luci-livestats)
727 endef
728
729 define Package/luci-app-asterisk
730   $(call Package/luci/webtemplate)
731   TITLE:=LuCI Support for Asterisk PBX
732   DEPENDS+=@BROKEN +luci-admin-core +PACKAGE_luci-app-asterisk:asterisk14-xip-core
733 endef
734
735 define Package/luci-app-asterisk/install
736         $(call Package/luci/install/template,$(1),applications/luci-asterisk)
737 endef
738
739 define Package/luci-app-polipo
740   $(call Package/luci/webtemplate)
741   TITLE:=LuCI Support for the Polipo Proxy
742   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-polipo:polipo
743 endef
744
745 define Package/luci-app-polipo/install
746         $(call Package/luci/install/template,$(1),applications/luci-polipo)
747 endef
748
749 define Package/luci-app-openvpn
750   $(call Package/luci/webtemplate)
751   TITLE:=LuCI Support for OpenVPN
752   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-openvpn:openvpn
753 endef
754
755 define Package/luci-app-openvpn/install
756         $(call Package/luci/install/template,$(1),applications/luci-openvpn)
757 endef
758
759 define Package/luci-app-p2pblock
760   $(call Package/luci/webtemplate)
761   TITLE:=LuCI Support for the Freifunk P2P-Block addon
762   DEPENDS+=+luci-admin-core +luci-app-firewall \
763     +PACKAGE_luci-app-p2pblock:freifunk-p2pblock
764 endef
765
766 define Package/luci-app-p2pblock/install
767         $(call Package/luci/install/template,$(1),applications/luci-p2pblock)
768 endef
769
770 define Package/luci-app-multiwan
771   $(call Package/luci/webtemplate)
772   TITLE:=LuCI Support for the OpenWrt MultiWAN agent
773   DEPENDS+=+luci-admin-core +luci-app-firewall \
774     +PACKAGE_luci-app-multiwan:multiwan
775 endef
776
777 define Package/luci-app-multiwan/install
778         $(call Package/luci/install/template,$(1),applications/luci-multiwan)
779 endef
780
781 define Package/luci-app-wol
782   $(call Package/luci/webtemplate)
783   TITLE:=LuCI Support for Wake-on-LAN
784   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-wol:etherwake
785 endef
786
787 define Package/luci-app-wol/install
788         $(call Package/luci/install/template,$(1),applications/luci-wol)
789 endef
790
791
792 ### Server Gateway Interfaces ###
793
794 define Package/luci-sgi-cgi
795   $(call Package/luci/webservertemplate)
796   TITLE:=CGI Gateway behind existing Webserver
797 endef
798
799 define Package/luci-sgi-cgi/install
800         $(call Package/luci/install/template,$(1),libs/sgi-cgi)
801 endef
802
803 define Package/luci-sgi-uhttpd
804   $(call Package/luci/libtemplate)
805   TITLE:=Binding for the uHTTPd server
806   DEPENDS+=+uhttpd +uhttpd-mod-lua
807 endef
808
809 define Package/luci-sgi-uhttpd/install
810         $(call Package/luci/install/template,$(1),libs/sgi-uhttpd)
811 endef
812
813
814 ### Themes ###
815 define Package/luci-theme-base
816   $(call Package/luci/thtemplate)
817   DEPENDS:=
818   TITLE:=Common base for all themes
819 endef
820
821 define Package/luci-theme-base/install
822         $(call Package/luci/install/template,$(1),themes/base)
823 endef
824
825 define Package/luci-theme-fledermaus
826   $(call Package/luci/fftemplate)
827   DEPENDS:=+luci-web
828   TITLE:=Fledermaus Theme
829 endef
830
831 define Package/luci-theme-fledermaus/install
832         $(call Package/luci/install/template,$(1),themes/fledermaus)
833 endef
834
835 define Package/luci-theme-freifunk
836   $(call Package/luci/fftemplate)
837   DEPENDS:=+luci-web
838   MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
839   TITLE:=alternative Freifunk Theme
840 endef
841
842 define Package/luci-theme-freifunk/install
843         $(call Package/luci/install/template,$(1),themes/freifunk)
844 endef
845
846 define Package/luci-theme-freifunk-bno
847   $(call Package/luci/fftemplate)
848   DEPENDS:=+luci-web
849   MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
850   TITLE:=Freifunk Berlin Nordost Theme
851 endef
852
853 define Package/luci-theme-freifunk-bno/install
854         $(call Package/luci/install/template,$(1),themes/freifunk-bno)
855 endef
856
857 define Package/luci-theme-freifunk-hannover
858   $(call Package/luci/fftemplate)
859   DEPENDS:=+luci-web
860   MAINTAINER:=Mikolas Bingemer <mickey-at-freifunk-hannover-dot-de>
861   TITLE:=Freifunk Hannover Theme
862 endef
863
864 define Package/luci-theme-freifunk-hannover/install
865         $(call Package/luci/install/template,$(1),themes/freifunk-hannover)
866 endef
867
868 define Package/luci-theme-openwrt
869   $(call Package/luci/thtemplate)
870   TITLE:=OpenWrt.org (default)
871   DEPENDS:=+luci-theme-base luci-core
872   DEFAULT:=y if PACKAGE_luci-core
873 endef
874
875 define Package/luci-theme-openwrt/install
876         $(call Package/luci/install/template,$(1),themes/openwrt.org)
877 endef
878
879 define Package/luci-theme-openwrtlight
880   $(call Package/luci/thtemplate)
881   TITLE:=OpenWrt.org - light variant without images
882   DEPENDS:=+luci-theme-base
883 endef
884
885 define Package/luci-theme-openwrtlight/install
886         $(call Package/luci/install/template,$(1),themes/openwrt-light)
887 endef
888
889
890 ### Translations ###
891 define Package/luci-i18n-german
892   $(call Package/luci/i18ntemplate)
893   TITLE:=German
894 endef
895
896 define Package/luci-i18n-german/install
897         $(call Package/luci/install/template,$(1),i18n/german)
898 endef
899
900
901 define Package/luci-i18n-english
902   $(call Package/luci/i18ntemplate)
903   TITLE:=English
904 endef
905
906 define Package/luci-i18n-english/install
907         $(call Package/luci/install/template,$(1),i18n/english)
908 endef
909
910
911 define Package/luci-i18n-french
912   $(call Package/luci/i18ntemplate)
913   TITLE:=French (by Florian Fainelli)
914 endef
915
916 define Package/luci-i18n-french/install
917         $(call Package/luci/install/template,$(1),i18n/french)
918 endef
919
920
921 define Package/luci-i18n-italian
922   $(call Package/luci/i18ntemplate)
923   TITLE:=Italian (by Matteo Croce)
924 endef
925
926 define Package/luci-i18n-italian/install
927         $(call Package/luci/install/template,$(1),i18n/italian)
928 endef
929
930
931 define Package/luci-i18n-russian
932   $(call Package/luci/i18ntemplate)
933   TITLE:=Russian (by Skryabin Dmitry)
934 endef
935
936 define Package/luci-i18n-russian/install
937         $(call Package/luci/install/template,$(1),i18n/russian)
938 endef
939
940
941 define Package/luci-i18n-portuguese_brazilian
942   $(call Package/luci/i18ntemplate)
943   TITLE:=Portuguese (Brazilian) (by Carlos Cesario)
944 endef
945
946 define Package/luci-i18n-portuguese_brazilian/install
947         $(call Package/luci/install/template,$(1),i18n/portuguese_brazilian)
948 endef
949
950
951 define Package/luci-i18n-japanese
952   $(call Package/luci/i18ntemplate)
953   TITLE:=Japanese (by Tsukasa Hamano)
954 endef
955
956 define Package/luci-i18n-japanese/install
957         $(call Package/luci/install/template,$(1),i18n/japanese)
958 endef
959
960
961 define Package/luci-i18n-greek
962   $(call Package/luci/i18ntemplate)
963   TITLE:=Greek (by Vasilis Tsiligiannis)
964 endef
965
966 define Package/luci-i18n-greek/install
967         $(call Package/luci/install/template,$(1),i18n/greek)
968 endef
969
970
971 define Package/luci-i18n-catalan
972   $(call Package/luci/i18ntemplate)
973   TITLE:=Catalan (by Eduard Duran)
974 endef
975
976 define Package/luci-i18n-catalan/install
977         $(call Package/luci/install/template,$(1),i18n/catalan)
978 endef
979
980
981 define Package/luci-i18n-portuguese
982   $(call Package/luci/i18ntemplate)
983   TITLE:=Portuguese (by Jose Monteiro)
984 endef
985
986 define Package/luci-i18n-portuguese/install
987         $(call Package/luci/install/template,$(1),i18n/portuguese)
988 endef
989
990
991 define Package/luci-i18n-spanish
992   $(call Package/luci/i18ntemplate)
993   TITLE:=Spanish (by Guillermo Javier Nardoni)
994 endef
995
996 define Package/luci-i18n-spanish/install
997         $(call Package/luci/install/template,$(1),i18n/spanish)
998 endef
999
1000
1001 define Package/luci-i18n-vietnamese
1002   $(call Package/luci/i18ntemplate)
1003   TITLE:=Vietnamese (by Hong Phuc Dang)
1004 endef
1005
1006 define Package/luci-i18n-vietnamese/install
1007         $(call Package/luci/install/template,$(1),i18n/vietnamese)
1008 endef
1009
1010
1011 ### Collections ###
1012 define Package/luci
1013   $(call Package/luci/collectiontemplate)
1014   TITLE:=Standard OpenWrt set including full and mini admin and the standard theme
1015   DEPENDS:=+uhttpd +luci-admin-full +luci-admin-mini +luci-theme-openwrt \
1016     +luci-app-firewall +luci-app-initmgr
1017 endef
1018
1019 define Package/luci/install
1020         true
1021 endef
1022
1023
1024 define Package/luci-ssl
1025   $(call Package/luci/collectiontemplate)
1026   TITLE:=Standard OpenWrt set with https support
1027   DEPENDS:=+uhttpd +uhttpd-mod-tls +px5g +luci-admin-full +luci-admin-mini \
1028     +luci-theme-openwrt +luci-app-firewall +luci-app-initmgr
1029 endef
1030
1031 define Package/luci-ssl/install
1032         true
1033 endef
1034
1035
1036 define Package/luci-medium
1037   $(call Package/luci/collectiontemplate)
1038   TITLE:=Medium package set using only admin full and a theme without graphics
1039   DEPENDS:=+uhttpd +luci-admin-full +luci-theme-openwrtlight
1040 endef
1041
1042 define Package/luci-medium/install
1043         true
1044 endef
1045
1046
1047 define Package/luci-light
1048   $(call Package/luci/collectiontemplate)
1049   TITLE:=Minimum package set using only admin mini and a theme without graphics
1050   DEPENDS:=+uhttpd +luci-admin-mini +luci-theme-openwrtlight
1051 endef
1052
1053 define Package/luci-light/install
1054         true
1055 endef
1056
1057
1058 ### Compile ###
1059 ifneq ($(CONFIG_PACKAGE_luci-core),)
1060         PKG_SELECTED_MODULES+=libs/core
1061 endif
1062 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
1063         PKG_SELECTED_MODULES+=libs/cbi
1064 endif
1065 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
1066         PKG_SELECTED_MODULES+=libs/fastindex
1067 endif
1068 ifneq ($(CONFIG_PACKAGE_luci-http),)
1069         PKG_SELECTED_MODULES+=libs/http
1070 endif
1071 ifneq ($(CONFIG_PACKAGE_luci-httpclient),)
1072         PKG_SELECTED_MODULES+=libs/httpclient
1073 endif
1074 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
1075         PKG_SELECTED_MODULES+=libs/ipkg
1076 endif
1077 ifneq ($(CONFIG_PACKAGE_luci-json),)
1078         PKG_SELECTED_MODULES+=libs/json
1079 endif
1080 ifneq ($(CONFIG_PACKAGE_luci-lmo),)
1081         PKG_SELECTED_MODULES+=libs/lmo
1082 endif
1083 ifneq ($(CONFIG_PACKAGE_luci-luanet),)
1084         PKG_SELECTED_MODULES+=libs/luanet
1085 endif
1086 ifneq ($(CONFIG_PACKAGE_luci-iwinfo),)
1087         PKG_SELECTED_MODULES+=libs/iwinfo
1088 endif
1089 ifneq ($(CONFIG_PACKAGE_luci-lucid),)
1090         PKG_SELECTED_MODULES+=libs/lucid libs/lucid-http
1091 endif
1092 ifneq ($(CONFIG_PACKAGE_luci-nixio),)
1093         PKG_SELECTED_MODULES+=libs/nixio
1094 endif
1095 ifneq ($(CONFIG_PACKAGE_luci-px5g),)
1096         PKG_SELECTED_MODULES+=libs/px5g
1097 endif
1098 ifneq ($(CONFIG_PACKAGE_luci-uci),)
1099         PKG_SELECTED_MODULES+=libs/uci
1100 endif
1101 ifneq ($(CONFIG_PACKAGE_luci-sys),)
1102         PKG_SELECTED_MODULES+=libs/sys
1103 endif
1104 ifneq ($(CONFIG_PACKAGE_luci-web),)
1105         PKG_SELECTED_MODULES+=libs/web
1106 endif
1107 ifneq ($(CONFIG_PACKAGE_luci-uvl),)
1108         PKG_SELECTED_MODULES+=libs/uvl
1109 endif
1110
1111 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
1112         PKG_SELECTED_MODULES+=modules/admin-core
1113 endif
1114 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
1115         PKG_SELECTED_MODULES+=modules/admin-mini
1116 endif
1117 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
1118         PKG_SELECTED_MODULES+=modules/admin-full
1119 endif
1120 ifneq ($(CONFIG_PACKAGE_luci-niu),)
1121         PKG_SELECTED_MODULES+=modules/niu
1122 endif
1123 ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
1124         PKG_SELECTED_MODULES+=modules/rpc
1125 endif
1126 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk),)
1127         PKG_SELECTED_MODULES+=modules/freifunk
1128 endif
1129
1130 ifneq ($(CONFIG_PACKAGE_luci-freifunk-community),)
1131         PKG_SELECTED_MODULES+=applications/freifunk-community
1132 endif
1133
1134 ifneq ($(CONFIG_PACKAGE_luci-app-ffwizard-leipzig),)
1135         PKG_SELECTED_MODULES+=applications/luci-ffwizard-leipzig
1136 endif
1137 ifneq ($(CONFIG_PACKAGE_luci-app-siitwizard),)
1138         PKG_SELECTED_MODULES+=applications/luci-siitwizard
1139 endif
1140 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
1141         PKG_SELECTED_MODULES+=applications/luci-fw
1142 endif
1143 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
1144         PKG_SELECTED_MODULES+=applications/luci-olsr
1145 endif
1146 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
1147         PKG_SELECTED_MODULES+=applications/luci-qos
1148 endif
1149 ifneq ($(CONFIG_PACKAGE_luci-app-splash),)
1150         PKG_SELECTED_MODULES+=applications/luci-splash
1151 endif
1152 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
1153         PKG_SELECTED_MODULES+=applications/luci-statistics
1154 endif
1155 ifneq ($(CONFIG_PACKAGE_luci-app-voice-core),)
1156         PKG_SELECTED_MODULES+=applications/luci-voice-core
1157 endif
1158 ifneq ($(CONFIG_PACKAGE_luci-app-voice-diag),)
1159         PKG_SELECTED_MODULES+=applications/luci-voice-diag
1160 endif
1161 ifneq ($(CONFIG_PACKAGE_luci-app-diag-core),)
1162         PKG_SELECTED_MODULES+=applications/luci-diag-core
1163 endif
1164 ifneq ($(CONFIG_PACKAGE_luci-app-diag-devinfo),)
1165         PKG_SELECTED_MODULES+=applications/luci-diag-devinfo
1166 endif
1167 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
1168         PKG_SELECTED_MODULES+=applications/luci-upnp
1169 endif
1170 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
1171         PKG_SELECTED_MODULES+=applications/luci-ntpc
1172 endif
1173 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
1174         PKG_SELECTED_MODULES+=applications/luci-ddns
1175 endif
1176 ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
1177         PKG_SELECTED_MODULES+=applications/luci-samba
1178 endif
1179 ifneq ($(CONFIG_PACKAGE_luci-app-mmc-over-gpio),)
1180         PKG_SELECTED_MODULES+=applications/luci-mmc-over-gpio
1181 endif
1182 ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
1183         PKG_SELECTED_MODULES+=applications/luci-p910nd
1184 endif
1185 ifneq ($(CONFIG_PACKAGE_luci-app-ushare),)
1186         PKG_SELECTED_MODULES+=applications/luci-ushare
1187 endif
1188 ifneq ($(CONFIG_PACKAGE_luci-app-hd-idle),)
1189        PKG_SELECTED_MODULES+=applications/luci-hd-idle
1190 endif
1191 ifneq ($(CONFIG_PACKAGE_luci-app-tinyproxy),)
1192        PKG_SELECTED_MODULES+=applications/luci-tinyproxy
1193 endif
1194 ifneq ($(CONFIG_PACKAGE_luci-app-initmgr),)
1195        PKG_SELECTED_MODULES+=applications/luci-initmgr
1196 endif
1197 ifneq ($(CONFIG_PACKAGE_luci-app-livestats),)
1198        PKG_SELECTED_MODULES+=applications/luci-livestats
1199 endif
1200 ifneq ($(CONFIG_PACKAGE_luci-app-asterisk),)
1201        PKG_SELECTED_MODULES+=applications/luci-asterisk
1202 endif
1203 ifneq ($(CONFIG_PACKAGE_luci-app-polipo),)
1204        PKG_SELECTED_MODULES+=applications/luci-polipo
1205 endif
1206 ifneq ($(CONFIG_PACKAGE_luci-app-openvpn),)
1207        PKG_SELECTED_MODULES+=applications/luci-openvpn
1208 endif
1209 ifneq ($(CONFIG_PACKAGE_luci-app-p2pblock),)
1210        PKG_SELECTED_MODULES+=applications/luci-p2pblock
1211 endif
1212 ifneq ($(CONFIG_PACKAGE_luci-app-multiwan),)
1213        PKG_SELECTED_MODULES+=applications/luci-multiwan
1214 endif
1215 ifneq ($(CONFIG_PACKAGE_luci-app-wol),)
1216        PKG_SELECTED_MODULES+=applications/luci-wol
1217 endif
1218
1219
1220 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
1221         PKG_SELECTED_MODULES+=libs/sgi-cgi
1222 endif
1223 ifneq ($(CONFIG_PACKAGE_luci-sgi-uhttpd),)
1224         PKG_SELECTED_MODULES+=libs/sgi-uhttpd
1225 endif
1226 ifneq ($(CONFIG_PACKAGE_luci-sgi-luci),)
1227         PKG_SELECTED_MODULES+=libs/sgi-luci
1228 endif
1229
1230 ifneq ($(CONFIG_PACKAGE_luci-theme-base),)
1231         PKG_SELECTED_MODULES+=themes/base
1232 endif
1233 ifneq ($(CONFIG_PACKAGE_luci-theme-fledermaus),)
1234         PKG_SELECTED_MODULES+=themes/fledermaus
1235 endif
1236 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-bno),)
1237         PKG_SELECTED_MODULES+=themes/freifunk-bno
1238 endif
1239 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-hannover),)
1240         PKG_SELECTED_MODULES+=themes/freifunk-hannover
1241 endif
1242 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk),)
1243         PKG_SELECTED_MODULES+=themes/freifunk
1244 endif
1245 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
1246         PKG_SELECTED_MODULES+=themes/openwrt.org
1247 endif
1248 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrtlight),)
1249         PKG_SELECTED_MODULES+=themes/openwrt-light
1250 endif
1251
1252 ifneq ($(CONFIG_PACKAGE_luci-i18n-german),)
1253         PKG_SELECTED_MODULES+=i18n/german
1254 endif
1255 ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
1256         PKG_SELECTED_MODULES+=i18n/english
1257 endif
1258 ifneq ($(CONFIG_PACKAGE_luci-i18n-french),)
1259         PKG_SELECTED_MODULES+=i18n/french
1260 endif
1261 ifneq ($(CONFIG_PACKAGE_luci-i18n-italian),)
1262         PKG_SELECTED_MODULES+=i18n/italian
1263 endif
1264 ifneq ($(CONFIG_PACKAGE_luci-i18n-russian),)
1265         PKG_SELECTED_MODULES+=i18n/russian
1266 endif
1267 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese_brazilian),)
1268         PKG_SELECTED_MODULES+=i18n/portuguese_brazilian
1269 endif
1270 ifneq ($(CONFIG_PACKAGE_luci-i18n-japanese),)
1271         PKG_SELECTED_MODULES+=i18n/japanese
1272 endif
1273 ifneq ($(CONFIG_PACKAGE_luci-i18n-greek),)
1274         PKG_SELECTED_MODULES+=i18n/greek
1275 endif
1276 ifneq ($(CONFIG_PACKAGE_luci-i18n-catalan),)
1277         PKG_SELECTED_MODULES+=i18n/catalan
1278 endif
1279 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese),)
1280         PKG_SELECTED_MODULES+=i18n/portuguese
1281 endif
1282 ifneq ($(CONFIG_PACKAGE_luci-i18n-spanish),)
1283         PKG_SELECTED_MODULES+=i18n/spanish
1284 endif
1285 ifneq ($(CONFIG_PACKAGE_luci-i18n-vietnamese),)
1286         PKG_SELECTED_MODULES+=i18n/vietnamese
1287 endif
1288
1289
1290 MAKE_FLAGS += \
1291         MODULES="$(PKG_SELECTED_MODULES)" \
1292         LUA_TARGET="$(LUA_TARGET)" \
1293         LUA_SHLIBS="-llua -lm -ldl -lcrypt" \
1294         CFLAGS="$(TARGET_CFLAGS) $(LUCI_CFLAGS) -I$(STAGING_DIR)/usr/include" \
1295         LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
1296         NIXIO_TLS="$(NIXIO_TLS)" OS="Linux"
1297
1298
1299 $(eval $(call BuildPackage,luci-core))
1300 $(eval $(call BuildPackage,luci-cbi))
1301 $(eval $(call BuildPackage,luci-fastindex))
1302 $(eval $(call BuildPackage,luci-http))
1303 $(eval $(call BuildPackage,luci-httpclient))
1304 $(eval $(call BuildPackage,luci-ipkg))
1305 $(eval $(call BuildPackage,luci-json))
1306 $(eval $(call BuildPackage,luci-lmo))
1307 $(eval $(call BuildPackage,luci-luanet))
1308 $(eval $(call BuildPackage,luci-iwinfo))
1309 $(eval $(call BuildPackage,luci-lucid))
1310 $(eval $(call BuildPackage,luci-nixio))
1311 $(eval $(call BuildPackage,luci-px5g))
1312 $(eval $(call BuildPackage,luci-uci))
1313 $(eval $(call BuildPackage,luci-sys))
1314 $(eval $(call BuildPackage,luci-web))
1315 $(eval $(call BuildPackage,luci-uvl))
1316
1317 $(eval $(call BuildPackage,luci-admin-core))
1318 $(eval $(call BuildPackage,luci-admin-mini))
1319 $(eval $(call BuildPackage,luci-admin-full))
1320 $(eval $(call BuildPackage,luci-niu))
1321 $(eval $(call BuildPackage,luci-admin-rpc))
1322 $(eval $(call BuildPackage,luci-mod-freifunk))
1323
1324 $(eval $(call BuildPackage,luci-freifunk-community))
1325
1326 $(eval $(call BuildPackage,luci-app-ffwizard-leipzig))
1327 $(eval $(call BuildPackage,luci-app-siitwizard))
1328 $(eval $(call BuildPackage,luci-app-firewall))
1329 $(eval $(call BuildPackage,luci-app-olsr))
1330 $(eval $(call BuildPackage,luci-app-qos))
1331 $(eval $(call BuildPackage,luci-app-splash))
1332 $(eval $(call BuildPackage,luci-app-statistics))
1333 $(eval $(call BuildPackage,luci-app-diag-core))
1334 $(eval $(call BuildPackage,luci-app-diag-devinfo))
1335 $(eval $(call BuildPackage,luci-app-voice-core))
1336 $(eval $(call BuildPackage,luci-app-voice-diag))
1337 $(eval $(call BuildPackage,luci-app-upnp))
1338 $(eval $(call BuildPackage,luci-app-ntpc))
1339 $(eval $(call BuildPackage,luci-app-ddns))
1340 $(eval $(call BuildPackage,luci-app-samba))
1341 $(eval $(call BuildPackage,luci-app-mmc-over-gpio))
1342 $(eval $(call BuildPackage,luci-app-p910nd))
1343 $(eval $(call BuildPackage,luci-app-ushare))
1344 $(eval $(call BuildPackage,luci-app-hd-idle))
1345 $(eval $(call BuildPackage,luci-app-tinyproxy))
1346 $(eval $(call BuildPackage,luci-app-initmgr))
1347 $(eval $(call BuildPackage,luci-app-livestats))
1348 $(eval $(call BuildPackage,luci-app-asterisk))
1349 $(eval $(call BuildPackage,luci-app-polipo))
1350 $(eval $(call BuildPackage,luci-app-openvpn))
1351 $(eval $(call BuildPackage,luci-app-p2pblock))
1352 $(eval $(call BuildPackage,luci-app-multiwan))
1353 $(eval $(call BuildPackage,luci-app-wol))
1354
1355 $(eval $(call BuildPackage,luci-sgi-cgi))
1356 $(eval $(call BuildPackage,luci-sgi-uhttpd))
1357
1358 $(eval $(call BuildPackage,luci-theme-base))
1359 $(eval $(call BuildPackage,luci-theme-fledermaus))
1360 $(eval $(call BuildPackage,luci-theme-freifunk))
1361 $(eval $(call BuildPackage,luci-theme-freifunk-bno))
1362 $(eval $(call BuildPackage,luci-theme-freifunk-hannover))
1363 $(eval $(call BuildPackage,luci-theme-openwrt))
1364 $(eval $(call BuildPackage,luci-theme-openwrtlight))
1365
1366 $(eval $(call BuildPackage,luci-i18n-german))
1367 $(eval $(call BuildPackage,luci-i18n-english))
1368 $(eval $(call BuildPackage,luci-i18n-french))
1369 $(eval $(call BuildPackage,luci-i18n-italian))
1370 $(eval $(call BuildPackage,luci-i18n-russian))
1371 $(eval $(call BuildPackage,luci-i18n-portuguese_brazilian))
1372 $(eval $(call BuildPackage,luci-i18n-japanese))
1373 $(eval $(call BuildPackage,luci-i18n-greek))
1374 $(eval $(call BuildPackage,luci-i18n-catalan))
1375 $(eval $(call BuildPackage,luci-i18n-portuguese))
1376 $(eval $(call BuildPackage,luci-i18n-spanish))
1377 $(eval $(call BuildPackage,luci-i18n-vietnamese))
1378
1379 $(eval $(call BuildPackage,luci))
1380 $(eval $(call BuildPackage,luci-ssl))
1381 $(eval $(call BuildPackage,luci-medium))
1382 $(eval $(call BuildPackage,luci-light))