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