a4441de5b6ff96c5a3daa657bc26c12f22bb47bd
[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:=http://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 +bitlib
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-sys
191 $(call Package/luci/libtemplate)
192 TITLE:=LuCI Linux/POSIX system library
193 endef
194
195 define Package/luci-sys/install
196 $(call Package/luci/install/template,$(1),libs/sys)
197 endef
198
199
200 define Package/luci-web
201 $(call Package/luci/libtemplate)
202 DEPENDS+=+luci-http +luci-sys +luci-addons +luci-uci +luci-sgi-cgi
203 TITLE:=MVC Webframework
204 endef
205
206 define Package/luci-web/conffiles
207 /etc/config/luci
208 endef
209
210 define Package/luci-web/install
211 $(call Package/luci/install/template,$(1),libs/web)
212 endef
213
214
215
216 ### HTTPD ###
217
218 define Package/luci-httpd
219 $(call Package/luci/httpdtemplate)
220 DEPENDS:=+luci-http +luasocket
221 TITLE:=Server Core
222 endef
223
224 define Package/luci-httpd/install
225 $(call Package/luci/install/template,$(1),libs/httpd)
226 endef
227
228
229
230 ### Community Packages ###
231
232 define Package/luci-ff-halle
233 $(call Package/luci/fftemplate)
234 DEPENDS+= \
235 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
236 +luci-app-ffwizard-leipzig \
237 +luci-theme-fledermaus \
238 +luci-i18n-german \
239 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice \
240 +kmod-tun +ip
241 TITLE:=Freifunk Halle Community Meta-Package
242 endef
243
244 define Package/luci-ff-halle/install
245 $(call Package/luci/install/template,$(1),applications/community-halle)
246 endef
247
248
249 define Package/luci-ff-leipzig
250 $(call Package/luci/fftemplate)
251 DEPENDS+= \
252 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
253 +luci-app-ffwizard-leipzig \
254 +luci-theme-fledermaus \
255 +luci-i18n-german \
256 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice \
257 +kmod-tun +ip
258 TITLE:=Freifunk Leipzig Community Meta-Package
259 endef
260
261 define Package/luci-ff-leipzig/install
262 $(call Package/luci/install/template,$(1),applications/community-leipzig)
263 endef
264
265
266 define Package/luci-ff-hannover
267 $(call Package/luci/fftemplate)
268 DEPENDS+= \
269 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
270 +luci-theme-fledermaus \
271 +luci-i18n-german \
272 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice
273 TITLE:=Freifunk Hannover Community Meta-Package
274 URL:=http://www.freifunk-hannover.de/
275 MAINTAINER:=Mickey Knox <mickey-at-netfreaks-dot-org>
276 endef
277
278 define Package/luci-ff-hannover/install
279 $(call Package/luci/install/template,$(1),applications/community-hannover)
280 endef
281
282
283 define Package/luci-ff-berlin
284 $(call Package/luci/fftemplate)
285 DEPENDS+= \
286 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
287 +luci-theme-fledermaus \
288 +luci-i18n-german \
289 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice
290 TITLE:=Freifunk Berlin Community Meta-Package
291 endef
292
293 define Package/luci-ff-berlin/install
294 $(call Package/luci/install/template,$(1),applications/community-berlin)
295 endef
296
297 define Package/luci-ff-augsburg
298 $(call Package/luci/fftemplate)
299 DEPENDS+= \
300 +luci-sgi-cgi +luci-app-splash +luci-app-olsr \
301 +luci-theme-fledermaus \
302 +luci-i18n-german \
303 +olsrd +olsrd-mod-dyn-gw +olsrd-mod-txtinfo +olsrd-mod-nameservice
304 TITLE:=Freifunk Augsburg Community Meta-Package
305 endef
306
307 define Package/luci-ff-augsburg/install
308 $(call Package/luci/install/template,$(1),applications/community-augsburg)
309 endef
310
311 ### Modules ###
312
313 define Package/luci-admin-core
314 $(call Package/luci/webtemplate)
315 DEPENDS+=+luci-web +luci-cbi +luci-theme-openwrt +luci-i18n-english
316 TITLE:=Web UI Core Module
317 endef
318
319 define Package/luci-admin-core/install
320 $(call Package/luci/install/template,$(1),modules/admin-core)
321 endef
322
323
324 define Package/luci-admin-mini
325 $(call Package/luci/webtemplate)
326 DEPENDS+=+luci-admin-core
327 TITLE:=LuCI Essentials - casual user's interface
328 endef
329
330 define Package/luci-admin-mini/install
331 $(call Package/luci/install/template,$(1),modules/admin-mini)
332 endef
333
334
335 define Package/luci-admin-full
336 $(call Package/luci/webtemplate)
337 DEPENDS+=+luci-admin-core +luci-ipkg
338 TITLE:=LuCI Administration - power user's interface
339 endef
340
341 define Package/luci-admin-full/install
342 $(call Package/luci/install/template,$(1),modules/admin-full)
343 endef
344
345
346 define Package/luci-mod-freifunk
347 $(call Package/luci/fftemplate)
348 DEPENDS:=+luci-admin-full
349 TITLE:=LuCI Freifunk module
350 endef
351
352 define Package/luci-mod-freifunk/conffiles
353 /etc/config/freifunk
354 endef
355
356 define Package/luci-mod-freifunk/install
357 $(call Package/luci/install/template,$(1),modules/freifunk)
358 endef
359
360
361
362 ### Applications ###
363
364 define Package/luci-app-ffwizard-leipzig
365 $(call Package/luci/fftemplate)
366 DEPENDS+=+luci-app-firewall
367 TITLE:=Freifunk Leipzig configuration wizard
368 endef
369
370 define Package/luci-app-ffwizard-leipzig/install
371 $(call Package/luci/install/template,$(1),applications/luci-ffwizard-leipzig)
372 endef
373
374
375 define Package/luci-app-firewall
376 $(call Package/luci/webtemplate)
377 DEPENDS+=+luci-admin-core +firewall
378 TITLE:=Firewall and Portforwarding application
379 endef
380
381 define Package/luci-app-firewall/install
382 $(call Package/luci/install/template,$(1),applications/luci-fw)
383 endef
384
385
386 define Package/luci-app-olsr
387 $(call Package/luci/webtemplate)
388 DEPENDS+=+luci-admin-full +olsrd +olsrd-mod-txtinfo
389 TITLE:=OLSR configuration and status module
390 endef
391
392 define Package/luci-app-olsr/install
393 $(call Package/luci/install/template,$(1),applications/luci-olsr)
394 endef
395
396
397 define Package/luci-app-qos
398 $(call Package/luci/webtemplate)
399 DEPENDS+=+luci-admin-core +qos-scripts
400 TITLE:=Quality of Service configuration module
401 endef
402
403 define Package/luci-app-qos/install
404 $(call Package/luci/install/template,$(1),applications/luci-qos)
405 endef
406
407
408 define Package/luci-app-splash
409 $(call Package/luci/fftemplate)
410 DEPENDS+=+luasocket +firewall
411 TITLE:=Freifunk DHCP-Splash application
412 endef
413
414 define Package/luci-app-splash/conffiles
415 /etc/config/luci_splash
416 endef
417
418 define Package/luci-app-splash/install
419 $(call Package/luci/install/template,$(1),applications/luci-splash)
420 endef
421
422
423 define Package/luci-app-statistics
424 $(call Package/luci/webtemplate)
425 DEPENDS+=+luci-admin-full +collectd +collectd-mod-rrdtool1 +rrdtool1
426 TITLE:=LuCI Statistics Application
427 endef
428
429 define Package/luci-app-statistics/conffiles
430 /etc/config/luci_statistics
431 endef
432
433 define Package/luci-app-statistics/install
434 $(call Package/luci/install/template,$(1),applications/luci-statistics)
435 endef
436
437
438 define Package/luci-app-upnp
439 $(call Package/luci/webtemplate)
440 DEPENDS+=+luci-admin-core +miniupnpd
441 TITLE:=Universal Plug & Play configuration module
442 endef
443
444 define Package/luci-app-upnp/install
445 $(call Package/luci/install/template,$(1),applications/luci-upnp)
446 endef
447
448
449 define Package/luci-app-ntpc
450 $(call Package/luci/webtemplate)
451 DEPENDS+=+luci-admin-core +ntpclient
452 TITLE:=NTP time synchronisation client configuration module
453 endef
454
455 define Package/luci-app-ntpc/install
456 $(call Package/luci/install/template,$(1),applications/luci-ntpc)
457 endef
458
459
460 define Package/luci-app-ddns
461 $(call Package/luci/webtemplate)
462 DEPENDS+=+luci-admin-core +ddns-scripts
463 TITLE:=Dynamic DNS configuration module
464 endef
465
466 define Package/luci-app-ddns/install
467 $(call Package/luci/install/template,$(1),applications/luci-ddns)
468 endef
469
470
471 ### Server Gateway Interfaces ###
472
473 define Package/luci-sgi-cgi
474 $(call Package/luci/libtemplate)
475 TITLE:=SGI for CGI
476 endef
477
478 define Package/luci-sgi-cgi/install
479 $(call Package/luci/install/template,$(1),libs/sgi-cgi)
480 endef
481
482 define Package/luci-sgi-luci
483 $(call Package/luci/libtemplate)
484 DEPENDS+=+luci-httpd
485 TITLE:=SGI for LuCI HTTPD
486 endef
487
488 define Package/luci-sgi-luci/install
489 $(call Package/luci/install/template,$(1),libs/sgi-luci)
490 endef
491
492 define Package/luci-sgi-webuci
493 $(call Package/luci/libtemplate)
494 TITLE:=SGI for Webuci
495 endef
496
497 define Package/luci-sgi-webuci/install
498 $(call Package/luci/install/template,$(1),libs/sgi-webuci)
499 endef
500
501 ### Themes ###
502 define Package/luci-theme-fledermaus
503 $(call Package/luci/fftemplate)
504 DEPENDS:=+luci-web
505 TITLE:=Fledermaus Theme
506 endef
507
508 define Package/luci-theme-fledermaus/install
509 $(call Package/luci/install/template,$(1),themes/fledermaus)
510 endef
511
512 define Package/luci-theme-openwrt
513 $(call Package/luci/thtemplate)
514 TITLE:=OpenWRT.org (default)
515 endef
516
517 define Package/luci-theme-openwrt/install
518 $(call Package/luci/install/template,$(1),themes/openwrt.org)
519 endef
520
521 ### Translations ###
522 define Package/luci-i18n-german
523 $(call Package/luci/i18ntemplate)
524 TITLE:=German
525 endef
526
527 define Package/luci-i18n-german/install
528 $(call Package/luci/install/template,$(1),i18n/german)
529 endef
530
531
532 define Package/luci-i18n-english
533 $(call Package/luci/i18ntemplate)
534 TITLE:=English
535 endef
536
537 define Package/luci-i18n-english/install
538 $(call Package/luci/install/template,$(1),i18n/english)
539 endef
540
541
542 define Package/luci-i18n-french
543 $(call Package/luci/i18ntemplate)
544 TITLE:=French
545 endef
546
547 define Package/luci-i18n-french/install
548 $(call Package/luci/install/template,$(1),i18n/french)
549 endef
550
551
552
553
554 ### Compile ###
555 ifneq ($(CONFIG_PACKAGE_luci-core),)
556 PKG_SELECTED_MODULES+=libs/core
557 endif
558 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
559 PKG_SELECTED_MODULES+=libs/cbi
560 endif
561 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
562 PKG_SELECTED_MODULES+=libs/fastindex
563 endif
564 ifneq ($(CONFIG_PACKAGE_luci-http),)
565 PKG_SELECTED_MODULES+=libs/http
566 endif
567 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
568 PKG_SELECTED_MODULES+=libs/ipkg
569 endif
570 ifneq ($(CONFIG_PACKAGE_luci-uci),)
571 PKG_SELECTED_MODULES+=libs/uci
572 endif
573 ifneq ($(CONFIG_PACKAGE_luci-sys),)
574 PKG_SELECTED_MODULES+=libs/sys
575 endif
576 ifneq ($(CONFIG_PACKAGE_luci-web),)
577 PKG_SELECTED_MODULES+=libs/web
578 endif
579
580 ifneq ($(CONFIG_PACKAGE_luci-httpd),)
581 PKG_SELECTED_MODULES+=libs/httpd
582 endif
583
584 ifneq ($(CONFIG_PACKAGE_luci-ff-halle),)
585 PKG_SELECTED_MODULES+=applications/community-halle
586 endif
587 ifneq ($(CONFIG_PACKAGE_luci-ff-leipzig),)
588 PKG_SELECTED_MODULES+=applications/community-leipzig
589 endif
590 ifneq ($(CONFIG_PACKAGE_luci-ff-hannover),)
591 PKG_SELECTED_MODULES+=applications/community-hannover
592 endif
593 ifneq ($(CONFIG_PACKAGE_luci-ff-berlin),)
594 PKG_SELECTED_MODULES+=applications/community-berlin
595 endif
596 ifneq ($(CONFIG_PACKAGE_luci-ff-augsburg),)
597 PKG_SELECTED_MODULES+=applications/community-augsburg
598 endif
599
600 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
601 PKG_SELECTED_MODULES+=modules/admin-core
602 endif
603 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
604 PKG_SELECTED_MODULES+=modules/admin-mini
605 endif
606 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
607 PKG_SELECTED_MODULES+=modules/admin-full
608 endif
609 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk),)
610 PKG_SELECTED_MODULES+=modules/freifunk
611 endif
612
613 ifneq ($(CONFIG_PACKAGE_luci-app-ffwizard-leipzig),)
614 PKG_SELECTED_MODULES+=applications/luci-ffwizard-leipzig
615 endif
616 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
617 PKG_SELECTED_MODULES+=applications/luci-fw
618 endif
619 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
620 PKG_SELECTED_MODULES+=applications/luci-olsr
621 endif
622 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
623 PKG_SELECTED_MODULES+=applications/luci-qos
624 endif
625 ifneq ($(CONFIG_PACKAGE_luci-app-splash),)
626 PKG_SELECTED_MODULES+=applications/luci-splash
627 endif
628 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
629 PKG_SELECTED_MODULES+=applications/luci-statistics
630 endif
631 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
632 PKG_SELECTED_MODULES+=applications/luci-upnp
633 endif
634 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
635 PKG_SELECTED_MODULES+=applications/luci-ntpc
636 endif
637 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
638 PKG_SELECTED_MODULES+=applications/luci-ddns
639 endif
640
641 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
642 PKG_SELECTED_MODULES+=libs/sgi-cgi
643 endif
644 ifneq ($(CONFIG_PACKAGE_luci-sgi-luci),)
645 PKG_SELECTED_MODULES+=libs/sgi-luci
646 endif
647 ifneq ($(CONFIG_PACKAGE_luci-sgi-webuci),)
648 PKG_SELECTED_MODULES+=libs/sgi-webuci
649 endif
650
651 ifneq ($(CONFIG_PACKAGE_luci-theme-fledermaus),)
652 PKG_SELECTED_MODULES+=themes/fledermaus
653 endif
654 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
655 PKG_SELECTED_MODULES+=themes/openwrt.org
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
668
669 MAKE_FLAGS += \
670 MODULES="$(PKG_SELECTED_MODULES)" \
671 LUA_TARGET="$(LUA_TARGET)" \
672 LUA_SHLIBS="-llua -lm" \
673 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
674 LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
675 OS="Linux"
676
677
678 $(eval $(call BuildPackage,luci-core))
679 $(eval $(call BuildPackage,luci-cbi))
680 $(eval $(call BuildPackage,luci-fastindex))
681 $(eval $(call BuildPackage,luci-http))
682 $(eval $(call BuildPackage,luci-ipkg))
683 $(eval $(call BuildPackage,luci-uci))
684 $(eval $(call BuildPackage,luci-sys))
685 $(eval $(call BuildPackage,luci-web))
686
687 $(eval $(call BuildPackage,luci-httpd))
688
689 $(eval $(call BuildPackage,luci-ff-halle))
690 $(eval $(call BuildPackage,luci-ff-leipzig))
691 $(eval $(call BuildPackage,luci-ff-hannover))
692 $(eval $(call BuildPackage,luci-ff-berlin))
693 $(eval $(call BuildPackage,luci-ff-augsburg))
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-mod-freifunk))
699
700 $(eval $(call BuildPackage,luci-app-ffwizard-leipzig))
701 $(eval $(call BuildPackage,luci-app-firewall))
702 $(eval $(call BuildPackage,luci-app-olsr))
703 $(eval $(call BuildPackage,luci-app-qos))
704 $(eval $(call BuildPackage,luci-app-splash))
705 $(eval $(call BuildPackage,luci-app-statistics))
706 $(eval $(call BuildPackage,luci-app-upnp))
707 $(eval $(call BuildPackage,luci-app-ntpc))
708 $(eval $(call BuildPackage,luci-app-ddns))
709
710 $(eval $(call BuildPackage,luci-sgi-cgi))
711 $(eval $(call BuildPackage,luci-sgi-luci))
712 $(eval $(call BuildPackage,luci-sgi-webuci))
713
714 $(eval $(call BuildPackage,luci-theme-fledermaus))
715 $(eval $(call BuildPackage,luci-theme-openwrt))
716
717 $(eval $(call BuildPackage,luci-i18n-german))
718 $(eval $(call BuildPackage,luci-i18n-english))
719 $(eval $(call BuildPackage,luci-i18n-french))