po: add translation template for Wake-on-LAN application
[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
782 ### Server Gateway Interfaces ###
783
784 define Package/luci-sgi-cgi
785 $(call Package/luci/webservertemplate)
786 TITLE:=CGI Gateway behind existing Webserver
787 endef
788
789 define Package/luci-sgi-cgi/install
790 $(call Package/luci/install/template,$(1),libs/sgi-cgi)
791 endef
792
793 define Package/luci-sgi-uhttpd
794 $(call Package/luci/libtemplate)
795 TITLE:=Binding for the uHTTPd server
796 DEPENDS+=+uhttpd +uhttpd-mod-lua
797 endef
798
799 define Package/luci-sgi-uhttpd/install
800 $(call Package/luci/install/template,$(1),libs/sgi-uhttpd)
801 endef
802
803
804 ### Themes ###
805 define Package/luci-theme-base
806 $(call Package/luci/thtemplate)
807 DEPENDS:=
808 TITLE:=Common base for all themes
809 endef
810
811 define Package/luci-theme-base/install
812 $(call Package/luci/install/template,$(1),themes/base)
813 endef
814
815 define Package/luci-theme-fledermaus
816 $(call Package/luci/fftemplate)
817 DEPENDS:=+luci-web
818 TITLE:=Fledermaus Theme
819 endef
820
821 define Package/luci-theme-fledermaus/install
822 $(call Package/luci/install/template,$(1),themes/fledermaus)
823 endef
824
825 define Package/luci-theme-freifunk
826 $(call Package/luci/fftemplate)
827 DEPENDS:=+luci-web
828 MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
829 TITLE:=alternative Freifunk Theme
830 endef
831
832 define Package/luci-theme-freifunk/install
833 $(call Package/luci/install/template,$(1),themes/freifunk)
834 endef
835
836 define Package/luci-theme-freifunk-bno
837 $(call Package/luci/fftemplate)
838 DEPENDS:=+luci-web
839 MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
840 TITLE:=Freifunk Berlin Nordost Theme
841 endef
842
843 define Package/luci-theme-freifunk-bno/install
844 $(call Package/luci/install/template,$(1),themes/freifunk-bno)
845 endef
846
847 define Package/luci-theme-freifunk-hannover
848 $(call Package/luci/fftemplate)
849 DEPENDS:=+luci-web
850 MAINTAINER:=Mikolas Bingemer <mickey-at-freifunk-hannover-dot-de>
851 TITLE:=Freifunk Hannover Theme
852 endef
853
854 define Package/luci-theme-freifunk-hannover/install
855 $(call Package/luci/install/template,$(1),themes/freifunk-hannover)
856 endef
857
858 define Package/luci-theme-openwrt
859 $(call Package/luci/thtemplate)
860 TITLE:=OpenWrt.org (default)
861 DEPENDS:=+luci-theme-base luci-core
862 DEFAULT:=y if PACKAGE_luci-core
863 endef
864
865 define Package/luci-theme-openwrt/install
866 $(call Package/luci/install/template,$(1),themes/openwrt.org)
867 endef
868
869 define Package/luci-theme-openwrtlight
870 $(call Package/luci/thtemplate)
871 TITLE:=OpenWrt.org - light variant without images
872 DEPENDS:=+luci-theme-base
873 endef
874
875 define Package/luci-theme-openwrtlight/install
876 $(call Package/luci/install/template,$(1),themes/openwrt-light)
877 endef
878
879
880 ### Translations ###
881 define Package/luci-i18n-german
882 $(call Package/luci/i18ntemplate)
883 TITLE:=German
884 endef
885
886 define Package/luci-i18n-german/install
887 $(call Package/luci/install/template,$(1),i18n/german)
888 endef
889
890
891 define Package/luci-i18n-english
892 $(call Package/luci/i18ntemplate)
893 TITLE:=English
894 endef
895
896 define Package/luci-i18n-english/install
897 $(call Package/luci/install/template,$(1),i18n/english)
898 endef
899
900
901 define Package/luci-i18n-french
902 $(call Package/luci/i18ntemplate)
903 TITLE:=French (by Florian Fainelli)
904 endef
905
906 define Package/luci-i18n-french/install
907 $(call Package/luci/install/template,$(1),i18n/french)
908 endef
909
910
911 define Package/luci-i18n-italian
912 $(call Package/luci/i18ntemplate)
913 TITLE:=Italian (by Matteo Croce)
914 endef
915
916 define Package/luci-i18n-italian/install
917 $(call Package/luci/install/template,$(1),i18n/italian)
918 endef
919
920
921 define Package/luci-i18n-russian
922 $(call Package/luci/i18ntemplate)
923 TITLE:=Russian (by Skryabin Dmitry)
924 endef
925
926 define Package/luci-i18n-russian/install
927 $(call Package/luci/install/template,$(1),i18n/russian)
928 endef
929
930
931 define Package/luci-i18n-portuguese_brazilian
932 $(call Package/luci/i18ntemplate)
933 TITLE:=Portuguese (Brazilian) (by Carlos Cesario)
934 endef
935
936 define Package/luci-i18n-portuguese_brazilian/install
937 $(call Package/luci/install/template,$(1),i18n/portuguese_brazilian)
938 endef
939
940
941 define Package/luci-i18n-japanese
942 $(call Package/luci/i18ntemplate)
943 TITLE:=Japanese (by Tsukasa Hamano)
944 endef
945
946 define Package/luci-i18n-japanese/install
947 $(call Package/luci/install/template,$(1),i18n/japanese)
948 endef
949
950
951 define Package/luci-i18n-greek
952 $(call Package/luci/i18ntemplate)
953 TITLE:=Greek (by Vasilis Tsiligiannis)
954 endef
955
956 define Package/luci-i18n-greek/install
957 $(call Package/luci/install/template,$(1),i18n/greek)
958 endef
959
960
961 define Package/luci-i18n-catalan
962 $(call Package/luci/i18ntemplate)
963 TITLE:=Catalan (by Eduard Duran)
964 endef
965
966 define Package/luci-i18n-catalan/install
967 $(call Package/luci/install/template,$(1),i18n/catalan)
968 endef
969
970
971 define Package/luci-i18n-portuguese
972 $(call Package/luci/i18ntemplate)
973 TITLE:=Portuguese (by Jose Monteiro)
974 endef
975
976 define Package/luci-i18n-portuguese/install
977 $(call Package/luci/install/template,$(1),i18n/portuguese)
978 endef
979
980
981 define Package/luci-i18n-spanish
982 $(call Package/luci/i18ntemplate)
983 TITLE:=Spanish (by Guillermo Javier Nardoni)
984 endef
985
986 define Package/luci-i18n-spanish/install
987 $(call Package/luci/install/template,$(1),i18n/spanish)
988 endef
989
990
991 define Package/luci-i18n-vietnamese
992 $(call Package/luci/i18ntemplate)
993 TITLE:=Vietnamese (by Hong Phuc Dang)
994 endef
995
996 define Package/luci-i18n-vietnamese/install
997 $(call Package/luci/install/template,$(1),i18n/vietnamese)
998 endef
999
1000
1001 ### Collections ###
1002 define Package/luci
1003 $(call Package/luci/collectiontemplate)
1004 TITLE:=Standard OpenWrt set including full and mini admin and the standard theme
1005 DEPENDS:=+uhttpd +luci-admin-full +luci-admin-mini +luci-theme-openwrt \
1006 +luci-app-firewall +luci-app-initmgr
1007 endef
1008
1009 define Package/luci/install
1010 true
1011 endef
1012
1013
1014 define Package/luci-ssl
1015 $(call Package/luci/collectiontemplate)
1016 TITLE:=Standard OpenWrt set with https support
1017 DEPENDS:=+uhttpd +uhttpd-mod-tls +px5g +luci-admin-full +luci-admin-mini \
1018 +luci-theme-openwrt +luci-app-firewall +luci-app-initmgr
1019 endef
1020
1021 define Package/luci-ssl/install
1022 true
1023 endef
1024
1025
1026 define Package/luci-medium
1027 $(call Package/luci/collectiontemplate)
1028 TITLE:=Medium package set using only admin full and a theme without graphics
1029 DEPENDS:=+uhttpd +luci-admin-full +luci-theme-openwrtlight
1030 endef
1031
1032 define Package/luci-medium/install
1033 true
1034 endef
1035
1036
1037 define Package/luci-light
1038 $(call Package/luci/collectiontemplate)
1039 TITLE:=Minimum package set using only admin mini and a theme without graphics
1040 DEPENDS:=+uhttpd +luci-admin-mini +luci-theme-openwrtlight
1041 endef
1042
1043 define Package/luci-light/install
1044 true
1045 endef
1046
1047
1048 ### Compile ###
1049 ifneq ($(CONFIG_PACKAGE_luci-core),)
1050 PKG_SELECTED_MODULES+=libs/core
1051 endif
1052 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
1053 PKG_SELECTED_MODULES+=libs/cbi
1054 endif
1055 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
1056 PKG_SELECTED_MODULES+=libs/fastindex
1057 endif
1058 ifneq ($(CONFIG_PACKAGE_luci-http),)
1059 PKG_SELECTED_MODULES+=libs/http
1060 endif
1061 ifneq ($(CONFIG_PACKAGE_luci-httpclient),)
1062 PKG_SELECTED_MODULES+=libs/httpclient
1063 endif
1064 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
1065 PKG_SELECTED_MODULES+=libs/ipkg
1066 endif
1067 ifneq ($(CONFIG_PACKAGE_luci-json),)
1068 PKG_SELECTED_MODULES+=libs/json
1069 endif
1070 ifneq ($(CONFIG_PACKAGE_luci-lmo),)
1071 PKG_SELECTED_MODULES+=libs/lmo
1072 endif
1073 ifneq ($(CONFIG_PACKAGE_luci-luanet),)
1074 PKG_SELECTED_MODULES+=libs/luanet
1075 endif
1076 ifneq ($(CONFIG_PACKAGE_luci-iwinfo),)
1077 PKG_SELECTED_MODULES+=libs/iwinfo
1078 endif
1079 ifneq ($(CONFIG_PACKAGE_luci-lucid),)
1080 PKG_SELECTED_MODULES+=libs/lucid libs/lucid-http
1081 endif
1082 ifneq ($(CONFIG_PACKAGE_luci-nixio),)
1083 PKG_SELECTED_MODULES+=libs/nixio
1084 endif
1085 ifneq ($(CONFIG_PACKAGE_luci-px5g),)
1086 PKG_SELECTED_MODULES+=libs/px5g
1087 endif
1088 ifneq ($(CONFIG_PACKAGE_luci-uci),)
1089 PKG_SELECTED_MODULES+=libs/uci
1090 endif
1091 ifneq ($(CONFIG_PACKAGE_luci-sys),)
1092 PKG_SELECTED_MODULES+=libs/sys
1093 endif
1094 ifneq ($(CONFIG_PACKAGE_luci-web),)
1095 PKG_SELECTED_MODULES+=libs/web
1096 endif
1097 ifneq ($(CONFIG_PACKAGE_luci-uvl),)
1098 PKG_SELECTED_MODULES+=libs/uvl
1099 endif
1100
1101 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
1102 PKG_SELECTED_MODULES+=modules/admin-core
1103 endif
1104 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
1105 PKG_SELECTED_MODULES+=modules/admin-mini
1106 endif
1107 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
1108 PKG_SELECTED_MODULES+=modules/admin-full
1109 endif
1110 ifneq ($(CONFIG_PACKAGE_luci-niu),)
1111 PKG_SELECTED_MODULES+=modules/niu
1112 endif
1113 ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
1114 PKG_SELECTED_MODULES+=modules/rpc
1115 endif
1116 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk),)
1117 PKG_SELECTED_MODULES+=modules/freifunk
1118 endif
1119
1120 ifneq ($(CONFIG_PACKAGE_luci-freifunk-community),)
1121 PKG_SELECTED_MODULES+=applications/freifunk-community
1122 endif
1123
1124 ifneq ($(CONFIG_PACKAGE_luci-app-ffwizard-leipzig),)
1125 PKG_SELECTED_MODULES+=applications/luci-ffwizard-leipzig
1126 endif
1127 ifneq ($(CONFIG_PACKAGE_luci-app-siitwizard),)
1128 PKG_SELECTED_MODULES+=applications/luci-siitwizard
1129 endif
1130 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
1131 PKG_SELECTED_MODULES+=applications/luci-fw
1132 endif
1133 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
1134 PKG_SELECTED_MODULES+=applications/luci-olsr
1135 endif
1136 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
1137 PKG_SELECTED_MODULES+=applications/luci-qos
1138 endif
1139 ifneq ($(CONFIG_PACKAGE_luci-app-splash),)
1140 PKG_SELECTED_MODULES+=applications/luci-splash
1141 endif
1142 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
1143 PKG_SELECTED_MODULES+=applications/luci-statistics
1144 endif
1145 ifneq ($(CONFIG_PACKAGE_luci-app-voice-core),)
1146 PKG_SELECTED_MODULES+=applications/luci-voice-core
1147 endif
1148 ifneq ($(CONFIG_PACKAGE_luci-app-voice-diag),)
1149 PKG_SELECTED_MODULES+=applications/luci-voice-diag
1150 endif
1151 ifneq ($(CONFIG_PACKAGE_luci-app-diag-core),)
1152 PKG_SELECTED_MODULES+=applications/luci-diag-core
1153 endif
1154 ifneq ($(CONFIG_PACKAGE_luci-app-diag-devinfo),)
1155 PKG_SELECTED_MODULES+=applications/luci-diag-devinfo
1156 endif
1157 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
1158 PKG_SELECTED_MODULES+=applications/luci-upnp
1159 endif
1160 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
1161 PKG_SELECTED_MODULES+=applications/luci-ntpc
1162 endif
1163 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
1164 PKG_SELECTED_MODULES+=applications/luci-ddns
1165 endif
1166 ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
1167 PKG_SELECTED_MODULES+=applications/luci-samba
1168 endif
1169 ifneq ($(CONFIG_PACKAGE_luci-app-mmc-over-gpio),)
1170 PKG_SELECTED_MODULES+=applications/luci-mmc-over-gpio
1171 endif
1172 ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
1173 PKG_SELECTED_MODULES+=applications/luci-p910nd
1174 endif
1175 ifneq ($(CONFIG_PACKAGE_luci-app-ushare),)
1176 PKG_SELECTED_MODULES+=applications/luci-ushare
1177 endif
1178 ifneq ($(CONFIG_PACKAGE_luci-app-hd-idle),)
1179 PKG_SELECTED_MODULES+=applications/luci-hd-idle
1180 endif
1181 ifneq ($(CONFIG_PACKAGE_luci-app-tinyproxy),)
1182 PKG_SELECTED_MODULES+=applications/luci-tinyproxy
1183 endif
1184 ifneq ($(CONFIG_PACKAGE_luci-app-initmgr),)
1185 PKG_SELECTED_MODULES+=applications/luci-initmgr
1186 endif
1187 ifneq ($(CONFIG_PACKAGE_luci-app-livestats),)
1188 PKG_SELECTED_MODULES+=applications/luci-livestats
1189 endif
1190 ifneq ($(CONFIG_PACKAGE_luci-app-asterisk),)
1191 PKG_SELECTED_MODULES+=applications/luci-asterisk
1192 endif
1193 ifneq ($(CONFIG_PACKAGE_luci-app-polipo),)
1194 PKG_SELECTED_MODULES+=applications/luci-polipo
1195 endif
1196 ifneq ($(CONFIG_PACKAGE_luci-app-openvpn),)
1197 PKG_SELECTED_MODULES+=applications/luci-openvpn
1198 endif
1199 ifneq ($(CONFIG_PACKAGE_luci-app-p2pblock),)
1200 PKG_SELECTED_MODULES+=applications/luci-p2pblock
1201 endif
1202 ifneq ($(CONFIG_PACKAGE_luci-app-multiwan),)
1203 PKG_SELECTED_MODULES+=applications/luci-multiwan
1204 endif
1205
1206
1207 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
1208 PKG_SELECTED_MODULES+=libs/sgi-cgi
1209 endif
1210 ifneq ($(CONFIG_PACKAGE_luci-sgi-uhttpd),)
1211 PKG_SELECTED_MODULES+=libs/sgi-uhttpd
1212 endif
1213 ifneq ($(CONFIG_PACKAGE_luci-sgi-luci),)
1214 PKG_SELECTED_MODULES+=libs/sgi-luci
1215 endif
1216
1217 ifneq ($(CONFIG_PACKAGE_luci-theme-base),)
1218 PKG_SELECTED_MODULES+=themes/base
1219 endif
1220 ifneq ($(CONFIG_PACKAGE_luci-theme-fledermaus),)
1221 PKG_SELECTED_MODULES+=themes/fledermaus
1222 endif
1223 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-bno),)
1224 PKG_SELECTED_MODULES+=themes/freifunk-bno
1225 endif
1226 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-hannover),)
1227 PKG_SELECTED_MODULES+=themes/freifunk-hannover
1228 endif
1229 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk),)
1230 PKG_SELECTED_MODULES+=themes/freifunk
1231 endif
1232 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
1233 PKG_SELECTED_MODULES+=themes/openwrt.org
1234 endif
1235 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrtlight),)
1236 PKG_SELECTED_MODULES+=themes/openwrt-light
1237 endif
1238
1239 ifneq ($(CONFIG_PACKAGE_luci-i18n-german),)
1240 PKG_SELECTED_MODULES+=i18n/german
1241 endif
1242 ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
1243 PKG_SELECTED_MODULES+=i18n/english
1244 endif
1245 ifneq ($(CONFIG_PACKAGE_luci-i18n-french),)
1246 PKG_SELECTED_MODULES+=i18n/french
1247 endif
1248 ifneq ($(CONFIG_PACKAGE_luci-i18n-italian),)
1249 PKG_SELECTED_MODULES+=i18n/italian
1250 endif
1251 ifneq ($(CONFIG_PACKAGE_luci-i18n-russian),)
1252 PKG_SELECTED_MODULES+=i18n/russian
1253 endif
1254 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese_brazilian),)
1255 PKG_SELECTED_MODULES+=i18n/portuguese_brazilian
1256 endif
1257 ifneq ($(CONFIG_PACKAGE_luci-i18n-japanese),)
1258 PKG_SELECTED_MODULES+=i18n/japanese
1259 endif
1260 ifneq ($(CONFIG_PACKAGE_luci-i18n-greek),)
1261 PKG_SELECTED_MODULES+=i18n/greek
1262 endif
1263 ifneq ($(CONFIG_PACKAGE_luci-i18n-catalan),)
1264 PKG_SELECTED_MODULES+=i18n/catalan
1265 endif
1266 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese),)
1267 PKG_SELECTED_MODULES+=i18n/portuguese
1268 endif
1269 ifneq ($(CONFIG_PACKAGE_luci-i18n-spanish),)
1270 PKG_SELECTED_MODULES+=i18n/spanish
1271 endif
1272 ifneq ($(CONFIG_PACKAGE_luci-i18n-vietnamese),)
1273 PKG_SELECTED_MODULES+=i18n/vietnamese
1274 endif
1275
1276
1277 MAKE_FLAGS += \
1278 MODULES="$(PKG_SELECTED_MODULES)" \
1279 LUA_TARGET="$(LUA_TARGET)" \
1280 LUA_SHLIBS="-llua -lm -ldl -lcrypt" \
1281 CFLAGS="$(TARGET_CFLAGS) $(LUCI_CFLAGS) -I$(STAGING_DIR)/usr/include" \
1282 LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
1283 NIXIO_TLS="$(NIXIO_TLS)" OS="Linux"
1284
1285
1286 $(eval $(call BuildPackage,luci-core))
1287 $(eval $(call BuildPackage,luci-cbi))
1288 $(eval $(call BuildPackage,luci-fastindex))
1289 $(eval $(call BuildPackage,luci-http))
1290 $(eval $(call BuildPackage,luci-httpclient))
1291 $(eval $(call BuildPackage,luci-ipkg))
1292 $(eval $(call BuildPackage,luci-json))
1293 $(eval $(call BuildPackage,luci-lmo))
1294 $(eval $(call BuildPackage,luci-luanet))
1295 $(eval $(call BuildPackage,luci-iwinfo))
1296 $(eval $(call BuildPackage,luci-lucid))
1297 $(eval $(call BuildPackage,luci-nixio))
1298 $(eval $(call BuildPackage,luci-px5g))
1299 $(eval $(call BuildPackage,luci-uci))
1300 $(eval $(call BuildPackage,luci-sys))
1301 $(eval $(call BuildPackage,luci-web))
1302 $(eval $(call BuildPackage,luci-uvl))
1303
1304 $(eval $(call BuildPackage,luci-admin-core))
1305 $(eval $(call BuildPackage,luci-admin-mini))
1306 $(eval $(call BuildPackage,luci-admin-full))
1307 $(eval $(call BuildPackage,luci-niu))
1308 $(eval $(call BuildPackage,luci-admin-rpc))
1309 $(eval $(call BuildPackage,luci-mod-freifunk))
1310
1311 $(eval $(call BuildPackage,luci-freifunk-community))
1312
1313 $(eval $(call BuildPackage,luci-app-ffwizard-leipzig))
1314 $(eval $(call BuildPackage,luci-app-siitwizard))
1315 $(eval $(call BuildPackage,luci-app-firewall))
1316 $(eval $(call BuildPackage,luci-app-olsr))
1317 $(eval $(call BuildPackage,luci-app-qos))
1318 $(eval $(call BuildPackage,luci-app-splash))
1319 $(eval $(call BuildPackage,luci-app-statistics))
1320 $(eval $(call BuildPackage,luci-app-diag-core))
1321 $(eval $(call BuildPackage,luci-app-diag-devinfo))
1322 $(eval $(call BuildPackage,luci-app-voice-core))
1323 $(eval $(call BuildPackage,luci-app-voice-diag))
1324 $(eval $(call BuildPackage,luci-app-upnp))
1325 $(eval $(call BuildPackage,luci-app-ntpc))
1326 $(eval $(call BuildPackage,luci-app-ddns))
1327 $(eval $(call BuildPackage,luci-app-samba))
1328 $(eval $(call BuildPackage,luci-app-mmc-over-gpio))
1329 $(eval $(call BuildPackage,luci-app-p910nd))
1330 $(eval $(call BuildPackage,luci-app-ushare))
1331 $(eval $(call BuildPackage,luci-app-hd-idle))
1332 $(eval $(call BuildPackage,luci-app-tinyproxy))
1333 $(eval $(call BuildPackage,luci-app-initmgr))
1334 $(eval $(call BuildPackage,luci-app-livestats))
1335 $(eval $(call BuildPackage,luci-app-asterisk))
1336 $(eval $(call BuildPackage,luci-app-polipo))
1337 $(eval $(call BuildPackage,luci-app-openvpn))
1338 $(eval $(call BuildPackage,luci-app-p2pblock))
1339 $(eval $(call BuildPackage,luci-app-multiwan))
1340
1341 $(eval $(call BuildPackage,luci-sgi-cgi))
1342 $(eval $(call BuildPackage,luci-sgi-uhttpd))
1343
1344 $(eval $(call BuildPackage,luci-theme-base))
1345 $(eval $(call BuildPackage,luci-theme-fledermaus))
1346 $(eval $(call BuildPackage,luci-theme-freifunk))
1347 $(eval $(call BuildPackage,luci-theme-freifunk-bno))
1348 $(eval $(call BuildPackage,luci-theme-freifunk-hannover))
1349 $(eval $(call BuildPackage,luci-theme-openwrt))
1350 $(eval $(call BuildPackage,luci-theme-openwrtlight))
1351
1352 $(eval $(call BuildPackage,luci-i18n-german))
1353 $(eval $(call BuildPackage,luci-i18n-english))
1354 $(eval $(call BuildPackage,luci-i18n-french))
1355 $(eval $(call BuildPackage,luci-i18n-italian))
1356 $(eval $(call BuildPackage,luci-i18n-russian))
1357 $(eval $(call BuildPackage,luci-i18n-portuguese_brazilian))
1358 $(eval $(call BuildPackage,luci-i18n-japanese))
1359 $(eval $(call BuildPackage,luci-i18n-greek))
1360 $(eval $(call BuildPackage,luci-i18n-catalan))
1361 $(eval $(call BuildPackage,luci-i18n-portuguese))
1362 $(eval $(call BuildPackage,luci-i18n-spanish))
1363 $(eval $(call BuildPackage,luci-i18n-vietnamese))
1364
1365 $(eval $(call BuildPackage,luci))
1366 $(eval $(call BuildPackage,luci-ssl))
1367 $(eval $(call BuildPackage,luci-medium))
1368 $(eval $(call BuildPackage,luci-light))