Outsourced IPKG abstraction to own directory
[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.7+svn
14 else
15 PKG_SOURCE_URL:=https://dev.leipzig.freifunk.net/svn/ff-luci/$(PKG_BRANCH)
16 ifeq ($(DUMP),)
17 PKG_REV:=$(shell LC_ALL=C svn info ${PKG_SOURCE_URL} | sed -ne's/^Last Changed Rev: //p')
18 PKG_VERSION:=0.7+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_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/fftemplate
63 $(call Package/luci/libtemplate)
64 SUBMENU:=LuCI Freifunk Support (PARTLY BROKEN)
65 DEPENDS:=+luci-mod-freifunk @BROKEN
66 endef
67
68 define Package/luci/httpdtemplate
69 $(call Package/luci/libtemplate)
70 SUBMENU:=LuCI Non-Forking HTTP-Daemon (EXPERIMENTAL)
71 DEPENDS:=+luci-httpd
72 endef
73
74 define Package/luci/i18ntemplate
75 $(call Package/luci/libtemplate)
76 SUBMENU:=LuCI Translations
77 DEPENDS:=+luci-web
78 endef
79
80 define Package/luci/thtemplate
81 $(call Package/luci/libtemplate)
82 SUBMENU:=LuCI Themes
83 DEPENDS:=+luci-web
84 endef
85
86 define Package/luci/webtemplate
87 $(call Package/luci/libtemplate)
88 SUBMENU:=LuCI Components
89 endef
90
91
92 define Package/luci/install/template
93 $(CP) -a $(PKG_BUILD_DIR)/$(2)/dist/* $(1)/ -R
94 $(CP) -a $(PKG_BUILD_DIR)/$(2)/ipkg/* $(1)/CONTROL/ 2>/dev/null || true
95 endef
96
97
98
99 ### Core package ###
100
101 define Package/luci-core
102 $(call Package/luci/libtemplate)
103 DEPENDS:=+lua +luaposix
104 TITLE:=LuCI core libraries
105 endef
106
107 define Package/luci-core/install
108 $(call Package/luci/install/template,$(1),libs/core)
109 endef
110
111 define Package/luci-core/config
112 choice
113 prompt "Build Target"
114 default PACKAGE_luci-core_source
115
116 config PACKAGE_luci-core_compile
117 bool "Precompiled"
118
119 config PACKAGE_luci-core_stripped
120 bool "Stripped"
121
122 config PACKAGE_luci-core_source
123 bool "Full Source"
124
125 endchoice
126 endef
127
128 ifneq ($(CONFIG_PACKAGE_luci-core_compile),)
129 LUA_TARGET:=compile
130 endif
131
132 ifneq ($(CONFIG_PACKAGE_luci-core_stripped),)
133 LUA_TARGET:=strip
134 endif
135
136
137 ### Libraries ###
138 define Package/luci-cbi
139 $(call Package/luci/libtemplate)
140 DEPENDS+=+luci-web
141 TITLE:=Configuration Binding Interface
142 endef
143
144 define Package/luci-cbi/install
145 $(call Package/luci/install/template,$(1),libs/cbi)
146 endef
147
148
149 define Package/luci-uci
150 $(call Package/luci/libtemplate)
151 DEPENDS+=+libuci-lua
152 TITLE:=High-Level UCI API
153 endef
154
155 define Package/luci-uci/install
156 $(call Package/luci/install/template,$(1),libs/uci)
157 endef
158
159
160 define Package/luci-fastindex
161 $(call Package/luci/libtemplate)
162 TITLE:=Fastindex indexing module
163 endef
164
165 define Package/luci-fastindex/install
166 $(call Package/luci/install/template,$(1),libs/fastindex)
167 endef
168
169
170 define Package/luci-http
171 $(call Package/luci/libtemplate)
172 TITLE:=HTTP Protocol implementation
173 endef
174
175 define Package/luci-http/install
176 $(call Package/luci/install/template,$(1),libs/http)
177 endef
178
179
180 define Package/luci-ipkg
181 $(call Package/luci/libtemplate)
182 TITLE:=LuCI IPKG/OPKG call abstraction library
183 endef
184
185 define Package/luci-ipkg/install
186 $(call Package/luci/install/template,$(1),libs/ipkg)
187 endef
188
189
190 define Package/luci-web
191 $(call Package/luci/libtemplate)
192 DEPENDS+=+luci-http +luci-addons +luci-uci +luci-sgi-cgi
193 TITLE:=MVC Webframework
194 endef
195
196 define Package/luci-web/conffiles
197 /etc/config/luci
198 endef
199
200 define Package/luci-web/install
201 $(call Package/luci/install/template,$(1),libs/web)
202 endef
203
204
205
206 ### HTTPD ###
207
208 define Package/luci-httpd
209 $(call Package/luci/httpdtemplate)
210 DEPENDS:=+luci-http +luasocket
211 TITLE:=Server Core
212 endef
213
214 define Package/luci-httpd/install
215 $(call Package/luci/install/template,$(1),libs/httpd)
216 endef
217
218
219
220 ### Community Packages ###
221
222 define Package/luci-ff-halle
223 $(call Package/luci/fftemplate)
224 DEPENDS+= \
225 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
226 +luci-app-ffwizard-leipzig \
227 +luci-theme-fledermaus \
228 +luci-i18n-german \
229 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice \
230 +kmod-tun +ip
231 TITLE:=Freifunk Halle Community Meta-Package
232 endef
233
234 define Package/luci-ff-halle/install
235 $(call Package/luci/install/template,$(1),applications/community-halle)
236 endef
237
238
239 define Package/luci-ff-leipzig
240 $(call Package/luci/fftemplate)
241 DEPENDS+= \
242 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
243 +luci-app-ffwizard-leipzig \
244 +luci-theme-fledermaus \
245 +luci-i18n-german \
246 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice \
247 +kmod-tun +ip
248 TITLE:=Freifunk Leipzig Community Meta-Package
249 endef
250
251 define Package/luci-ff-leipzig/install
252 $(call Package/luci/install/template,$(1),applications/community-leipzig)
253 endef
254
255
256 define Package/luci-ff-hannover
257 $(call Package/luci/fftemplate)
258 DEPENDS+= \
259 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
260 +luci-theme-fledermaus \
261 +luci-i18n-german \
262 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice
263 TITLE:=Freifunk Hannover Community Meta-Package
264 URL:=http://www.freifunk-hannover.de/
265 MAINTAINER:=Mickey Knox <mickey-at-netfreaks-dot-org>
266 endef
267
268 define Package/luci-ff-hannover/install
269 $(call Package/luci/install/template,$(1),applications/community-hannover)
270 endef
271
272
273 define Package/luci-ff-berlin
274 $(call Package/luci/fftemplate)
275 DEPENDS+= \
276 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
277 +luci-theme-fledermaus \
278 +luci-i18n-german \
279 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice
280 TITLE:=Freifunk Berlin Community Meta-Package
281 endef
282
283 define Package/luci-ff-berlin/install
284 $(call Package/luci/install/template,$(1),applications/community-berlin)
285 endef
286
287 define Package/luci-ff-augsburg
288 $(call Package/luci/fftemplate)
289 DEPENDS+= \
290 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
291 +luci-theme-fledermaus \
292 +luci-i18n-german \
293 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice
294 TITLE:=Freifunk Augsburg Community Meta-Package
295 endef
296
297 define Package/luci-ff-augsburg/install
298 $(call Package/luci/install/template,$(1),applications/community-augsburg)
299 endef
300
301 ### Modules ###
302
303 define Package/luci-admin-core
304 $(call Package/luci/webtemplate)
305 DEPENDS+=+luci-web +luci-cbi +luci-theme-openwrt +luci-i18n-english
306 TITLE:=Web UI Core Module
307 endef
308
309 define Package/luci-admin-core/install
310 $(call Package/luci/install/template,$(1),modules/admin-core)
311 endef
312
313
314 define Package/luci-admin-mini
315 $(call Package/luci/webtemplate)
316 DEPENDS+=+luci-admin-core
317 TITLE:=LuCI Essentials - casual user's interface
318 endef
319
320 define Package/luci-admin-mini/install
321 $(call Package/luci/install/template,$(1),modules/admin-mini)
322 endef
323
324
325 define Package/luci-admin-full
326 $(call Package/luci/webtemplate)
327 DEPENDS+=+luci-admin-core +luci-ipkg
328 TITLE:=LuCI Administration - power user's interface
329 endef
330
331 define Package/luci-admin-full/install
332 $(call Package/luci/install/template,$(1),modules/admin-full)
333 endef
334
335
336 define Package/luci-mod-freifunk
337 $(call Package/luci/fftemplate)
338 DEPENDS:=+luci-admin-full
339 TITLE:=LuCI Freifunk module
340 endef
341
342 define Package/luci-mod-freifunk/conffiles
343 /etc/config/freifunk
344 endef
345
346 define Package/luci-mod-freifunk/install
347 $(call Package/luci/install/template,$(1),modules/freifunk)
348 endef
349
350
351
352 ### Applications ###
353
354 define Package/luci-app-ffwizard-leipzig
355 $(call Package/luci/fftemplate)
356 DEPENDS+=+luci-app-firewall
357 TITLE:=Freifunk Leipzig configuration wizard
358 endef
359
360 define Package/luci-app-ffwizard-leipzig/install
361 $(call Package/luci/install/template,$(1),applications/luci-ffwizard-leipzig)
362 endef
363
364
365 define Package/luci-app-firewall
366 $(call Package/luci/webtemplate)
367 DEPENDS+=+luci-admin-core +firewall
368 TITLE:=Firewall and Portforwarding application
369 endef
370
371 define Package/luci-app-firewall/install
372 $(call Package/luci/install/template,$(1),applications/luci-fw)
373 endef
374
375
376 define Package/luci-app-olsr
377 $(call Package/luci/webtemplate)
378 DEPENDS+=+luci-admin-full +olsrd +olsrd-mod-txtinfo
379 TITLE:=OLSR configuration and status module
380 endef
381
382 define Package/luci-app-olsr/install
383 $(call Package/luci/install/template,$(1),applications/luci-olsr)
384 endef
385
386
387 define Package/luci-app-qos
388 $(call Package/luci/webtemplate)
389 DEPENDS+=+luci-admin-core +qos-scripts
390 TITLE:=Quality of Service configuration module
391 endef
392
393 define Package/luci-app-qos/install
394 $(call Package/luci/install/template,$(1),applications/luci-qos)
395 endef
396
397
398 define Package/luci-app-splash
399 $(call Package/luci/fftemplate)
400 DEPENDS+=+luasocket +firewall
401 TITLE:=Freifunk DHCP-Splash application
402 endef
403
404 define Package/luci-app-splash/conffiles
405 /etc/config/luci_splash
406 endef
407
408 define Package/luci-app-splash/install
409 $(call Package/luci/install/template,$(1),applications/luci-splash)
410 endef
411
412
413 define Package/luci-app-statistics
414 $(call Package/luci/webtemplate)
415 DEPENDS+=+luci-admin-full +collectd +collectd-mod-rrdtool1 +rrdtool1
416 TITLE:=LuCI Statistics Application
417 endef
418
419 define Package/luci-app-statistics/conffiles
420 /etc/config/luci_statistics
421 endef
422
423 define Package/luci-app-statistics/install
424 $(call Package/luci/install/template,$(1),applications/luci-statistics)
425 endef
426
427
428 define Package/luci-app-upnp
429 $(call Package/luci/webtemplate)
430 DEPENDS+=+luci-admin-core +miniupnpd
431 TITLE:=Universal Plug & Play configuration module
432 endef
433
434 define Package/luci-app-upnp/install
435 $(call Package/luci/install/template,$(1),applications/luci-upnp)
436 endef
437
438
439 define Package/luci-app-ntpc
440 $(call Package/luci/webtemplate)
441 DEPENDS+=+luci-admin-core +ntpclient
442 TITLE:=NTP time synchronisation client configuration module
443 endef
444
445 define Package/luci-app-ntpc/install
446 $(call Package/luci/install/template,$(1),applications/luci-ntpc)
447 endef
448
449
450 define Package/luci-app-ddns
451 $(call Package/luci/webtemplate)
452 DEPENDS+=+luci-admin-core +ddns-scripts
453 TITLE:=Dynamic DNS configuration module
454 endef
455
456 define Package/luci-app-ddns/install
457 $(call Package/luci/install/template,$(1),applications/luci-ddns)
458 endef
459
460
461 ### Server Gateway Interfaces ###
462
463 define Package/luci-sgi-cgi
464 $(call Package/luci/libtemplate)
465 TITLE:=SGI for CGI
466 endef
467
468 define Package/luci-sgi-cgi/install
469 $(call Package/luci/install/template,$(1),libs/sgi-cgi)
470 endef
471
472 define Package/luci-sgi-luci
473 $(call Package/luci/libtemplate)
474 DEPENDS+=+luci-httpd
475 TITLE:=SGI for LuCI HTTPD
476 endef
477
478 define Package/luci-sgi-luci/install
479 $(call Package/luci/install/template,$(1),libs/sgi-luci)
480 endef
481
482 define Package/luci-sgi-webuci
483 $(call Package/luci/libtemplate)
484 TITLE:=SGI for Webuci
485 endef
486
487 define Package/luci-sgi-webuci/install
488 $(call Package/luci/install/template,$(1),libs/sgi-webuci)
489 endef
490
491 ### Themes ###
492 define Package/luci-theme-fledermaus
493 $(call Package/luci/fftemplate)
494 DEPENDS:=+luci-web
495 TITLE:=Fledermaus Theme
496 endef
497
498 define Package/luci-theme-fledermaus/install
499 $(call Package/luci/install/template,$(1),themes/fledermaus)
500 endef
501
502 define Package/luci-theme-openwrt
503 $(call Package/luci/thtemplate)
504 TITLE:=OpenWRT.org (default)
505 endef
506
507 define Package/luci-theme-openwrt/install
508 $(call Package/luci/install/template,$(1),themes/openwrt.org)
509 endef
510
511 ### Translations ###
512 define Package/luci-i18n-german
513 $(call Package/luci/i18ntemplate)
514 TITLE:=German
515 endef
516
517 define Package/luci-i18n-german/install
518 $(call Package/luci/install/template,$(1),i18n/german)
519 endef
520
521
522 define Package/luci-i18n-english
523 $(call Package/luci/i18ntemplate)
524 TITLE:=English
525 endef
526
527 define Package/luci-i18n-english/install
528 $(call Package/luci/install/template,$(1),i18n/english)
529 endef
530
531
532 define Package/luci-i18n-french
533 $(call Package/luci/i18ntemplate)
534 TITLE:=French
535 endef
536
537 define Package/luci-i18n-french/install
538 $(call Package/luci/install/template,$(1),i18n/french)
539 endef
540
541
542
543
544 ### Compile ###
545 ifneq ($(CONFIG_PACKAGE_luci-core),)
546 PKG_SELECTED_MODULES+=libs/core
547 endif
548 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
549 PKG_SELECTED_MODULES+=libs/cbi
550 endif
551 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
552 PKG_SELECTED_MODULES+=libs/fastindex
553 endif
554 ifneq ($(CONFIG_PACKAGE_luci-http),)
555 PKG_SELECTED_MODULES+=libs/http
556 endif
557 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
558 PKG_SELECTED_MODULES+=libs/ipkg
559 endif
560 ifneq ($(CONFIG_PACKAGE_luci-uci),)
561 PKG_SELECTED_MODULES+=libs/uci
562 endif
563 ifneq ($(CONFIG_PACKAGE_luci-web),)
564 PKG_SELECTED_MODULES+=libs/web
565 endif
566
567 ifneq ($(CONFIG_PACKAGE_luci-httpd),)
568 PKG_SELECTED_MODULES+=libs/httpd
569 endif
570
571 ifneq ($(CONFIG_PACKAGE_luci-ff-halle),)
572 PKG_SELECTED_MODULES+=applications/community-halle
573 endif
574 ifneq ($(CONFIG_PACKAGE_luci-ff-leipzig),)
575 PKG_SELECTED_MODULES+=applications/community-leipzig
576 endif
577 ifneq ($(CONFIG_PACKAGE_luci-ff-hannover),)
578 PKG_SELECTED_MODULES+=applications/community-hannover
579 endif
580 ifneq ($(CONFIG_PACKAGE_luci-ff-berlin),)
581 PKG_SELECTED_MODULES+=applications/community-berlin
582 endif
583 ifneq ($(CONFIG_PACKAGE_luci-ff-augsburg),)
584 PKG_SELECTED_MODULES+=applications/community-augsburg
585 endif
586
587 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
588 PKG_SELECTED_MODULES+=modules/admin-core
589 endif
590 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
591 PKG_SELECTED_MODULES+=modules/admin-mini
592 endif
593 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
594 PKG_SELECTED_MODULES+=modules/admin-full
595 endif
596 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk),)
597 PKG_SELECTED_MODULES+=modules/freifunk
598 endif
599
600 ifneq ($(CONFIG_PACKAGE_luci-app-ffwizard-leipzig),)
601 PKG_SELECTED_MODULES+=applications/luci-ffwizard-leipzig
602 endif
603 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
604 PKG_SELECTED_MODULES+=applications/luci-fw
605 endif
606 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
607 PKG_SELECTED_MODULES+=applications/luci-olsr
608 endif
609 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
610 PKG_SELECTED_MODULES+=applications/luci-qos
611 endif
612 ifneq ($(CONFIG_PACKAGE_luci-app-splash),)
613 PKG_SELECTED_MODULES+=applications/luci-splash
614 endif
615 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
616 PKG_SELECTED_MODULES+=applications/luci-statistics
617 endif
618 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
619 PKG_SELECTED_MODULES+=applications/luci-upnp
620 endif
621 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
622 PKG_SELECTED_MODULES+=applications/luci-ntpc
623 endif
624 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
625 PKG_SELECTED_MODULES+=applications/luci-ddns
626 endif
627
628 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
629 PKG_SELECTED_MODULES+=libs/sgi-cgi
630 endif
631 ifneq ($(CONFIG_PACKAGE_luci-sgi-luci),)
632 PKG_SELECTED_MODULES+=libs/sgi-luci
633 endif
634 ifneq ($(CONFIG_PACKAGE_luci-sgi-webuci),)
635 PKG_SELECTED_MODULES+=libs/sgi-webuci
636 endif
637
638 ifneq ($(CONFIG_PACKAGE_luci-theme-fledermaus),)
639 PKG_SELECTED_MODULES+=themes/fledermaus
640 endif
641 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
642 PKG_SELECTED_MODULES+=themes/openwrt.org
643 endif
644
645 ifneq ($(CONFIG_PACKAGE_luci-i18n-german),)
646 PKG_SELECTED_MODULES+=i18n/german
647 endif
648 ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
649 PKG_SELECTED_MODULES+=i18n/english
650 endif
651 ifneq ($(CONFIG_PACKAGE_luci-i18n-french),)
652 PKG_SELECTED_MODULES+=i18n/french
653 endif
654
655
656 MAKE_FLAGS += \
657 MODULES="$(PKG_SELECTED_MODULES)" \
658 LUA_TARGET="$(LUA_TARGET)" \
659 LUA_SHLIBS="-llua -lm" \
660 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
661 LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
662 OS="Linux"
663
664
665 $(eval $(call BuildPackage,luci-core))
666 $(eval $(call BuildPackage,luci-cbi))
667 $(eval $(call BuildPackage,luci-fastindex))
668 $(eval $(call BuildPackage,luci-http))
669 $(eval $(call BuildPackage,luci-ipkg))
670 $(eval $(call BuildPackage,luci-uci))
671 $(eval $(call BuildPackage,luci-web))
672
673 $(eval $(call BuildPackage,luci-httpd))
674
675 $(eval $(call BuildPackage,luci-ff-halle))
676 $(eval $(call BuildPackage,luci-ff-leipzig))
677 $(eval $(call BuildPackage,luci-ff-hannover))
678 $(eval $(call BuildPackage,luci-ff-berlin))
679 $(eval $(call BuildPackage,luci-ff-augsburg))
680
681 $(eval $(call BuildPackage,luci-admin-core))
682 $(eval $(call BuildPackage,luci-admin-mini))
683 $(eval $(call BuildPackage,luci-admin-full))
684 $(eval $(call BuildPackage,luci-mod-freifunk))
685
686 $(eval $(call BuildPackage,luci-app-ffwizard-leipzig))
687 $(eval $(call BuildPackage,luci-app-firewall))
688 $(eval $(call BuildPackage,luci-app-olsr))
689 $(eval $(call BuildPackage,luci-app-qos))
690 $(eval $(call BuildPackage,luci-app-splash))
691 $(eval $(call BuildPackage,luci-app-statistics))
692 $(eval $(call BuildPackage,luci-app-upnp))
693 $(eval $(call BuildPackage,luci-app-ntpc))
694 $(eval $(call BuildPackage,luci-app-ddns))
695
696 $(eval $(call BuildPackage,luci-sgi-cgi))
697 $(eval $(call BuildPackage,luci-sgi-luci))
698 $(eval $(call BuildPackage,luci-sgi-webuci))
699
700 $(eval $(call BuildPackage,luci-theme-fledermaus))
701 $(eval $(call BuildPackage,luci-theme-openwrt))
702
703 $(eval $(call BuildPackage,luci-i18n-german))
704 $(eval $(call BuildPackage,luci-i18n-english))
705 $(eval $(call BuildPackage,luci-i18n-french))