Backported LuCI Livestats
[project/luci.git] / contrib / package / luci / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_BRANCH:=tags/0.8.1
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.8+svn
14 else
15   PKG_SOURCE_URL:=http://svn.luci.subsignal.org/luci/$(PKG_BRANCH)
16   ifeq ($(DUMP),)
17     PKG_REV:=HEAD
18     PKG_VERSION:=0.8.1
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_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
27 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
28
29 PKG_BUILD_DEPENDS:=libnotimpl
30 LUA_TARGET:=source
31 PKG_SELECTED_MODULES:=
32
33
34 include $(INCLUDE_DIR)/package.mk
35
36 ifeq ($(USELOCAL),1)
37   define Build/Prepare
38         mkdir -p $(PKG_BUILD_DIR)
39         $(TAR) c -C ../../../ . \
40                 --exclude=.pc --exclude=.svn --exclude=.git \
41                 --exclude='boa-0*' --exclude='*.o' --exclude='*.so' \
42                 --exclude=dist | \
43                         tar x -C $(PKG_BUILD_DIR)/
44   endef
45 endif
46
47 define Build/Configure
48 endef
49
50 ### Templates ###
51
52 define Package/luci/libtemplate
53   SECTION:=admin
54   CATEGORY:=Administration
55   TITLE:=LuCI - Lua Configuration Interface
56   URL:=http://luci.freifunk-halle.net/
57   MAINTAINER:=Steven Barth <steven-at-midlink-dot-org>
58   SUBMENU:=LuCI Libraries
59   DEPENDS:=+luci-core
60 endef
61
62 define Package/luci/i18ntemplate
63   $(call Package/luci/libtemplate)
64   SUBMENU:=LuCI Translations
65   DEPENDS:=+luci-web
66 endef
67
68 define Package/luci/thtemplate
69   $(call Package/luci/libtemplate)
70   SUBMENU:=LuCI Themes
71   DEPENDS:=+luci-web
72 endef
73
74 define Package/luci/webtemplate
75   $(call Package/luci/libtemplate)
76   SUBMENU:=LuCI Components
77 endef
78
79
80 define Package/luci/install/template
81         $(CP) -a $(PKG_BUILD_DIR)/$(2)/dist/* $(1)/ -R
82         $(CP) -a $(PKG_BUILD_DIR)/$(2)/ipkg/* $(1)/CONTROL/ 2>/dev/null || true
83 endef
84
85
86
87 ### Core package ###
88
89 define Package/luci-core
90   $(call Package/luci/libtemplate)
91   DEPENDS:=+lua
92   TITLE:=LuCI core libraries
93 endef
94
95 define Package/luci-core/install
96         $(call Package/luci/install/template,$(1),libs/core)
97 endef
98
99 define Package/luci-core/config
100        choice
101                prompt "Build Target"
102                default PACKAGE_luci-core_source
103
104        config PACKAGE_luci-core_compile
105                bool "Precompiled"
106
107        config PACKAGE_luci-core_stripped
108                bool "Stripped"
109
110        config PACKAGE_luci-core_source
111                bool "Full Source"
112
113        endchoice
114 endef
115
116 ifneq ($(CONFIG_PACKAGE_luci-core_compile),)
117   LUA_TARGET:=compile
118 endif
119
120 ifneq ($(CONFIG_PACKAGE_luci-core_stripped),)
121   LUA_TARGET:=strip
122 endif
123
124
125 ### Libraries ###
126 define Package/luci-cbi
127   $(call Package/luci/libtemplate)
128   DEPENDS+=+luci-web +luci-uvl +luci-uci
129   TITLE:=Configuration Binding Interface
130 endef
131
132 define Package/luci-cbi/install
133         $(call Package/luci/install/template,$(1),libs/cbi)
134 endef
135
136
137 define Package/luci-uci
138   $(call Package/luci/libtemplate)
139   DEPENDS+=+libuci-lua
140   TITLE:=High-Level UCI API
141 endef
142
143 define Package/luci-uci/install
144         $(call Package/luci/install/template,$(1),libs/uci)
145 endef
146
147
148 define Package/luci-fastindex
149   $(call Package/luci/libtemplate)
150   TITLE:=Fastindex indexing module
151 endef
152
153 define Package/luci-fastindex/install
154         $(call Package/luci/install/template,$(1),libs/fastindex)
155 endef
156
157
158 define Package/luci-http
159   $(call Package/luci/libtemplate)
160   TITLE:=HTTP Protocol implementation
161 endef
162
163 define Package/luci-http/install
164         $(call Package/luci/install/template,$(1),libs/http)
165 endef
166
167
168 define Package/luci-ipkg
169   $(call Package/luci/libtemplate)
170   TITLE:=LuCI IPKG/OPKG call abstraction library
171 endef
172
173 define Package/luci-ipkg/install
174         $(call Package/luci/install/template,$(1),libs/ipkg)
175 endef
176
177
178 define Package/luci-json
179   $(call Package/luci/libtemplate)
180   TITLE:=LuCI JSON Library
181 endef
182
183 define Package/luci-json/install
184         $(call Package/luci/install/template,$(1),libs/json)
185 endef
186
187
188 define Package/luci-sys
189   $(call Package/luci/libtemplate)
190   TITLE:=LuCI Linux/POSIX system library
191 endef
192
193 define Package/luci-sys/install
194         $(call Package/luci/install/template,$(1),libs/sys)
195 endef
196
197
198 define Package/luci-web
199   $(call Package/luci/libtemplate)
200   DEPENDS+=+luci-http +luci-sys +luci-uci +luci-sgi-cgi
201   TITLE:=MVC Webframework
202 endef
203
204 define Package/luci-web/conffiles
205 /etc/config/luci
206 endef
207
208 define Package/luci-web/install
209         $(call Package/luci/install/template,$(1),libs/web)
210 endef
211
212
213 define Package/luci-uvl
214   $(call Package/luci/libtemplate)
215   DEPENDS+=+luci-sys +luci-uci +luci-core
216   TITLE:=UVL - UCI Validation Layer
217 endef
218
219 define Package/luci-uvl/install
220         $(call Package/luci/install/template,$(1),libs/uvl)
221 endef
222
223
224 ### Modules ###
225
226 define Package/luci-admin-core
227   $(call Package/luci/webtemplate)
228   DEPENDS+=+luci-web +luci-cbi +luci-theme-openwrt +luci-i18n-english
229   TITLE:=Web UI Core Module
230 endef
231
232 define Package/luci-admin-core/conffiles
233 /etc/config/luci_hosts
234 /etc/config/luci_ethers
235 endef
236
237 define Package/luci-admin-core/install
238         $(call Package/luci/install/template,$(1),modules/admin-core)
239 endef
240
241
242 define Package/luci-admin-mini
243   $(call Package/luci/webtemplate)
244   DEPENDS+=+luci-admin-core
245   TITLE:=LuCI Essentials - stripped down and user-friendly
246 endef
247
248 define Package/luci-admin-mini/install
249         $(call Package/luci/install/template,$(1),modules/admin-mini)
250 endef
251
252
253 define Package/luci-admin-full
254   $(call Package/luci/webtemplate)
255   DEPENDS+=+luci-admin-core +luci-ipkg +luci-app-firewall
256   TITLE:=LuCI Administration - full-featured for full control
257 endef
258
259 define Package/luci-admin-full/install
260         $(call Package/luci/install/template,$(1),modules/admin-full)
261 endef
262
263
264 define Package/luci-admin-rpc
265   $(call Package/luci/webtemplate)
266   DEPENDS+=+luci-json
267   TITLE:=LuCI RPC - JSON-RPC API
268 endef
269
270 define Package/luci-admin-rpc/install
271         $(call Package/luci/install/template,$(1),modules/rpc)
272 endef
273
274
275 ### Applications ###
276
277 define Package/luci-app-firewall
278   $(call Package/luci/webtemplate)
279   DEPENDS+=+luci-admin-core
280   TITLE:=Firewall and Portforwarding application
281 endef
282
283 define Package/luci-app-firewall/install
284         $(call Package/luci/install/template,$(1),applications/luci-fw)
285 endef
286
287
288 define Package/luci-app-olsr
289   $(call Package/luci/webtemplate)
290   DEPENDS+=+luci-admin-full +olsrd-luci +olsrd-luci-mod-txtinfo
291   TITLE:=OLSR configuration and status module
292 endef
293
294 define Package/luci-app-olsr/install
295         $(call Package/luci/install/template,$(1),applications/luci-olsr)
296 endef
297
298
299 define Package/luci-app-qos
300   $(call Package/luci/webtemplate)
301   DEPENDS+=+luci-admin-core +qos-scripts
302   TITLE:=Quality of Service configuration module
303 endef
304
305 define Package/luci-app-qos/install
306         $(call Package/luci/install/template,$(1),applications/luci-qos)
307 endef
308
309
310 define Package/luci-app-statistics
311   $(call Package/luci/webtemplate)
312   DEPENDS+=+luci-admin-full +collectd +collectd-mod-rrdtool1 +rrdtool1
313   TITLE:=LuCI Statistics Application
314 endef
315
316 define Package/luci-app-statistics/conffiles
317 /etc/config/luci_statistics
318 endef
319
320 define Package/luci-app-statistics/install
321         $(call Package/luci/install/template,$(1),applications/luci-statistics)
322 endef
323
324
325 define Package/luci-app-upnp
326   $(call Package/luci/webtemplate)
327   DEPENDS+=+luci-admin-core +miniupnpd
328   TITLE:=Universal Plug & Play configuration module
329 endef
330
331 define Package/luci-app-upnp/install
332         $(call Package/luci/install/template,$(1),applications/luci-upnp)
333 endef
334
335
336 define Package/luci-app-ntpc
337   $(call Package/luci/webtemplate)
338   DEPENDS+=+luci-admin-core +ntpclient
339   TITLE:=NTP time synchronisation client configuration module
340 endef
341
342 define Package/luci-app-ntpc/install
343         $(call Package/luci/install/template,$(1),applications/luci-ntpc)
344 endef
345
346
347 define Package/luci-app-ddns
348   $(call Package/luci/webtemplate)
349   DEPENDS+=+luci-admin-core +ddns-scripts
350   TITLE:=Dynamic DNS configuration module
351 endef
352
353 define Package/luci-app-ddns/install
354         $(call Package/luci/install/template,$(1),applications/luci-ddns)
355 endef
356
357
358 define Package/luci-app-samba
359   $(call Package/luci/webtemplate)
360   DEPENDS+=+luci-admin-full +samba3
361   TITLE:=Network Shares - Samba SMB/CIFS module
362 endef
363
364 define Package/luci-app-samba/install
365         $(call Package/luci/install/template,$(1),applications/luci-samba)
366 endef
367
368
369 define Package/luci-app-uvc_streamer
370   $(call Package/luci/webtemplate)
371   DEPENDS+=+luci-admin-full +uvc-streamer
372   TITLE:=Webcam Streaming - UVC-Streamer module
373 endef
374
375 define Package/luci-app-uvc_streamer/install
376         $(call Package/luci/install/template,$(1),applications/luci-uvc_streamer)
377 endef
378
379
380 define Package/luci-app-p910nd
381   $(call Package/luci/webtemplate)
382   DEPENDS+=+luci-admin-full +p910nd
383   TITLE:=p910nd - Printer server module
384 endef
385
386 define Package/luci-app-p910nd/install
387         $(call Package/luci/install/template,$(1),applications/luci-p910nd)
388 endef
389
390
391 define Package/luci-app-ushare
392   $(call Package/luci/webtemplate)
393   DEPENDS+=+luci-admin-full +ushare
394   TITLE:=ushare - UPnP A/V & DLNA Media Server
395 endef
396
397 define Package/luci-app-ushare/install
398         $(call Package/luci/install/template,$(1),applications/luci-ushare)
399 endef
400
401 define Package/luci-app-hd_idle
402   $(call Package/luci/webtemplate)
403   DEPENDS+=+luci-admin-full +hd-idle
404   TITLE:=hd-idle
405 endef
406
407 define Package/luci-app-hd_idle/install
408         $(call Package/luci/install/template,$(1),applications/luci-hd_idle)
409 endef
410
411 define Package/luci-app-tinyproxy
412   $(call Package/luci/webtemplate)
413   DEPENDS+=+luci-admin-full +tinyproxy
414   TITLE:=Tinyproxy - HTTP(S)-Proxy
415 endef
416
417 define Package/luci-app-tinyproxy/install
418         $(call Package/luci/install/template,$(1),applications/luci-tinyproxy)
419 endef
420
421 define Package/luci-app-initmgr
422   $(call Package/luci/webtemplate)
423   DEPENDS+=+luci-admin-full
424   TITLE:=LuCI Initscript Management
425 endef
426
427 define Package/luci-app-initmgr/install
428         $(call Package/luci/install/template,$(1),applications/luci-initmgr)
429 endef
430
431 define Package/luci-app-livestats
432   $(call Package/luci/webtemplate)
433   DEPENDS+=+luci-admin-core +luci-admin-rpc
434   TITLE:=LuCI Realtime Statistics
435 endef
436
437 define Package/luci-app-livestats/install
438         $(call Package/luci/install/template,$(1),applications/luci-livestats)
439 endef
440
441 #define Package/luci-app-polipo
442 #  $(call Package/luci/webtemplate)
443 #  TITLE:=LuCI Support for the Polipo Proxy
444 #  DEPENDS+=+luci-admin-core +polipo
445 #endef
446
447 #define Package/luci-app-polipo/install
448 #        $(call Package/luci/install/template,$(1),applications/luci-polipo)
449 #endef
450
451
452 ### Server Gateway Interfaces ###
453
454 define Package/luci-sgi-cgi
455   $(call Package/luci/libtemplate)
456   TITLE:=SGI for CGI
457 endef
458
459 define Package/luci-sgi-cgi/install
460         $(call Package/luci/install/template,$(1),libs/sgi-cgi)
461 endef
462
463
464 ### Themes ###
465 #define Package/luci-theme-base
466 #  $(call Package/luci/thtemplate)
467 #  DEPENDS:=+luci-web
468 #  TITLE:=Common base for all themes
469 #endef
470 #
471 #define Package/luci-theme-base/install
472 #       $(call Package/luci/install/template,$(1),themes/base)
473 #endef
474
475 define Package/luci-theme-openwrt
476   $(call Package/luci/thtemplate)
477   TITLE:=OpenWrt.org (default)
478 # DEPENDS:=+luci-theme-base
479 endef
480
481 define Package/luci-theme-openwrt/install
482         $(call Package/luci/install/template,$(1),themes/openwrt.org)
483 endef
484
485 define Package/luci-theme-openwrtlight
486   $(call Package/luci/thtemplate)
487   TITLE:=OpenWrt.org - light variant without images
488 # DEPENDS:=+luci-theme-base
489 endef
490
491 define Package/luci-theme-openwrtlight/install
492         $(call Package/luci/install/template,$(1),themes/openwrt-light)
493 endef
494
495
496 ### Translations ###
497 define Package/luci-i18n-german
498   $(call Package/luci/i18ntemplate)
499   TITLE:=German
500 endef
501
502 define Package/luci-i18n-german/install
503         $(call Package/luci/install/template,$(1),i18n/german)
504 endef
505
506
507 define Package/luci-i18n-english
508   $(call Package/luci/i18ntemplate)
509   TITLE:=English
510 endef
511
512 define Package/luci-i18n-english/install
513         $(call Package/luci/install/template,$(1),i18n/english)
514 endef
515
516
517 define Package/luci-i18n-french
518   $(call Package/luci/i18ntemplate)
519   TITLE:=French (by Florian Fainelli)
520 endef
521
522 define Package/luci-i18n-french/install
523         $(call Package/luci/install/template,$(1),i18n/french)
524 endef
525
526
527 define Package/luci-i18n-russian
528   $(call Package/luci/i18ntemplate)
529   TITLE:=Russian (by Skryabin Dmitry)
530 endef
531
532 define Package/luci-i18n-russian/install
533         $(call Package/luci/install/template,$(1),i18n/russian)
534 endef
535
536
537 define Package/luci-i18n-portuguese_brazilian
538   $(call Package/luci/i18ntemplate)
539   TITLE:=Portuguese (Brazilian) (by Carlos Cesario)
540 endef
541
542 define Package/luci-i18n-portuguese_brazilian/install
543         $(call Package/luci/install/template,$(1),i18n/portuguese_brazilian)
544 endef
545
546
547
548 ### Compile ###
549 ifneq ($(CONFIG_PACKAGE_luci-core),)
550         PKG_SELECTED_MODULES+=libs/core
551 endif
552 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
553         PKG_SELECTED_MODULES+=libs/cbi
554 endif
555 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
556         PKG_SELECTED_MODULES+=libs/fastindex
557 endif
558 ifneq ($(CONFIG_PACKAGE_luci-http),)
559         PKG_SELECTED_MODULES+=libs/http
560 endif
561 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
562         PKG_SELECTED_MODULES+=libs/ipkg
563 endif
564 ifneq ($(CONFIG_PACKAGE_luci-json),)
565         PKG_SELECTED_MODULES+=libs/json
566 endif
567 ifneq ($(CONFIG_PACKAGE_luci-uci),)
568         PKG_SELECTED_MODULES+=libs/uci
569 endif
570 ifneq ($(CONFIG_PACKAGE_luci-sys),)
571         PKG_SELECTED_MODULES+=libs/sys
572 endif
573 ifneq ($(CONFIG_PACKAGE_luci-web),)
574         PKG_SELECTED_MODULES+=libs/web
575 endif
576 ifneq ($(CONFIG_PACKAGE_luci-uvl),)
577         PKG_SELECTED_MODULES+=libs/uvl
578 endif
579
580 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
581         PKG_SELECTED_MODULES+=modules/admin-core
582 endif
583 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
584         PKG_SELECTED_MODULES+=modules/admin-mini
585 endif
586 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
587         PKG_SELECTED_MODULES+=modules/admin-full
588 endif
589 ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
590         PKG_SELECTED_MODULES+=modules/rpc
591 endif
592
593 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
594         PKG_SELECTED_MODULES+=applications/luci-fw
595 endif
596 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
597         PKG_SELECTED_MODULES+=applications/luci-olsr
598 endif
599 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
600         PKG_SELECTED_MODULES+=applications/luci-qos
601 endif
602 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
603         PKG_SELECTED_MODULES+=applications/luci-statistics
604 endif
605 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
606         PKG_SELECTED_MODULES+=applications/luci-upnp
607 endif
608 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
609         PKG_SELECTED_MODULES+=applications/luci-ntpc
610 endif
611 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
612         PKG_SELECTED_MODULES+=applications/luci-ddns
613 endif
614 ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
615         PKG_SELECTED_MODULES+=applications/luci-samba
616 endif
617 ifneq ($(CONFIG_PACKAGE_luci-app-uvc_streamer),)
618         PKG_SELECTED_MODULES+=applications/luci-uvc_streamer
619 endif
620 ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
621         PKG_SELECTED_MODULES+=applications/luci-p910nd
622 endif
623 ifneq ($(CONFIG_PACKAGE_luci-app-ushare),)
624         PKG_SELECTED_MODULES+=applications/luci-ushare
625 endif
626 ifneq ($(CONFIG_PACKAGE_luci-app-hd_idle),)
627        PKG_SELECTED_MODULES+=applications/luci-hd_idle
628 endif
629 ifneq ($(CONFIG_PACKAGE_luci-app-tinyproxy),)
630        PKG_SELECTED_MODULES+=applications/luci-tinyproxy
631 endif
632 ifneq ($(CONFIG_PACKAGE_luci-app-initmgr),)
633        PKG_SELECTED_MODULES+=applications/luci-initmgr
634 endif
635 ifneq ($(CONFIG_PACKAGE_luci-app-livestats),)
636        PKG_SELECTED_MODULES+=applications/luci-livestats
637 endif
638 #ifneq ($(CONFIG_PACKAGE_luci-app-polipo),)
639 #       PKG_SELECTED_MODULES+=applications/luci-polipo
640 #endif
641
642
643 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
644         PKG_SELECTED_MODULES+=libs/sgi-cgi
645 endif
646
647
648 #ifneq ($(CONFIG_PACKAGE_luci-theme-base),)
649 #       PKG_SELECTED_MODULES+=themes/base
650 #endif
651 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
652         PKG_SELECTED_MODULES+=themes/openwrt.org
653 endif
654 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrtlight),)
655         PKG_SELECTED_MODULES+=themes/openwrt-light
656 endif
657
658 ifneq ($(CONFIG_PACKAGE_luci-i18n-german),)
659         PKG_SELECTED_MODULES+=i18n/german
660 endif
661 ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
662         PKG_SELECTED_MODULES+=i18n/english
663 endif
664 ifneq ($(CONFIG_PACKAGE_luci-i18n-french),)
665         PKG_SELECTED_MODULES+=i18n/french
666 endif
667 ifneq ($(CONFIG_PACKAGE_luci-i18n-russian),)
668         PKG_SELECTED_MODULES+=i18n/russian
669 endif
670 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese_brazilian),)
671         PKG_SELECTED_MODULES+=i18n/portuguese_brazilian
672 endif
673
674
675 MAKE_FLAGS += \
676         MODULES="$(PKG_SELECTED_MODULES)" \
677         LUA_TARGET="$(LUA_TARGET)" \
678         LUA_SHLIBS="-llua -lm" \
679         CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
680         LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
681         OS="Linux"
682
683
684 $(eval $(call BuildPackage,luci-core))
685 $(eval $(call BuildPackage,luci-cbi))
686 $(eval $(call BuildPackage,luci-fastindex))
687 $(eval $(call BuildPackage,luci-http))
688 $(eval $(call BuildPackage,luci-ipkg))
689 $(eval $(call BuildPackage,luci-json))
690 $(eval $(call BuildPackage,luci-uci))
691 $(eval $(call BuildPackage,luci-sys))
692 $(eval $(call BuildPackage,luci-web))
693 $(eval $(call BuildPackage,luci-uvl))
694
695 $(eval $(call BuildPackage,luci-admin-core))
696 $(eval $(call BuildPackage,luci-admin-mini))
697 $(eval $(call BuildPackage,luci-admin-full))
698 $(eval $(call BuildPackage,luci-admin-rpc))
699
700 $(eval $(call BuildPackage,luci-app-firewall))
701 $(eval $(call BuildPackage,luci-app-olsr))
702 $(eval $(call BuildPackage,luci-app-qos))
703 $(eval $(call BuildPackage,luci-app-statistics))
704 $(eval $(call BuildPackage,luci-app-upnp))
705 $(eval $(call BuildPackage,luci-app-ntpc))
706 $(eval $(call BuildPackage,luci-app-ddns))
707 $(eval $(call BuildPackage,luci-app-samba))
708 $(eval $(call BuildPackage,luci-app-uvc_streamer))
709 $(eval $(call BuildPackage,luci-app-p910nd))
710 $(eval $(call BuildPackage,luci-app-ushare))
711 $(eval $(call BuildPackage,luci-app-hd_idle))
712 $(eval $(call BuildPackage,luci-app-tinyproxy))
713 $(eval $(call BuildPackage,luci-app-initmgr))
714 $(eval $(call BuildPackage,luci-app-livestats))
715 #$(eval $(call BuildPackage,luci-app-polipo))
716
717 $(eval $(call BuildPackage,luci-sgi-cgi))
718
719 #$(eval $(call BuildPackage,luci-theme-base))
720 $(eval $(call BuildPackage,luci-theme-openwrt))
721 $(eval $(call BuildPackage,luci-theme-openwrtlight))
722
723 $(eval $(call BuildPackage,luci-i18n-german))
724 $(eval $(call BuildPackage,luci-i18n-english))
725 $(eval $(call BuildPackage,luci-i18n-french))
726 $(eval $(call BuildPackage,luci-i18n-russian))
727 $(eval $(call BuildPackage,luci-i18n-portuguese_brazilian))