build: add mkversion.sh helper script
[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 ${PKG_SOURCE_URL} | sed -ne's/^Last Changed Rev: //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_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
65   DEPENDS:=+luci-mod-freifunk
66 endef
67
68 define Package/luci/httpdtemplate
69   $(call Package/luci/libtemplate)
70   SUBMENU:=LuCIttpd
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
104   TITLE:=LuCI core libraries
105 endef
106
107 define Package/luci-core/install
108         $(call Package/luci/install/template,$(1),libs/core)
109         $(PKG_BUILD_DIR)/build/mkversion.sh $(1)/usr/lib/lua/luci/version.lua \
110                 "OpenWrt Firmware" \
111                 "$(OPENWRTVERSION)" \
112                 "$(PKG_BRANCH)" \
113                 "$(PKG_VERSION)"
114 endef
115
116 define Package/luci-core/config
117        choice
118                prompt "Build Target"
119                default PACKAGE_luci-core_source
120
121        config PACKAGE_luci-core_compile
122                bool "Precompiled"
123
124        config PACKAGE_luci-core_stripped
125                bool "Stripped"
126
127        config PACKAGE_luci-core_source
128                bool "Full Source"
129
130        endchoice
131 endef
132
133 ifneq ($(CONFIG_PACKAGE_luci-core_compile),)
134   LUA_TARGET:=compile
135 endif
136
137 ifneq ($(CONFIG_PACKAGE_luci-core_stripped),)
138   LUA_TARGET:=strip
139 endif
140
141
142 ### Libraries ###
143 define Package/luci-cbi
144   $(call Package/luci/libtemplate)
145   DEPENDS+=+luci-web +luci-uvl +luci-uci
146   TITLE:=Configuration Binding Interface
147 endef
148
149 define Package/luci-cbi/install
150         $(call Package/luci/install/template,$(1),libs/cbi)
151 endef
152
153
154 define Package/luci-uci
155   $(call Package/luci/libtemplate)
156   DEPENDS+=+libuci-lua
157   TITLE:=High-Level UCI API
158 endef
159
160 define Package/luci-uci/install
161         $(call Package/luci/install/template,$(1),libs/uci)
162 endef
163
164
165 define Package/luci-fastindex
166   $(call Package/luci/libtemplate)
167   TITLE:=Fastindex indexing module
168 endef
169
170 define Package/luci-fastindex/install
171         $(call Package/luci/install/template,$(1),libs/fastindex)
172 endef
173
174
175 define Package/luci-http
176   $(call Package/luci/libtemplate)
177   TITLE:=HTTP Protocol implementation
178 endef
179
180 define Package/luci-http/install
181         $(call Package/luci/install/template,$(1),libs/http)
182 endef
183
184
185 define Package/luci-ipkg
186   $(call Package/luci/libtemplate)
187   TITLE:=LuCI IPKG/OPKG call abstraction library
188 endef
189
190 define Package/luci-ipkg/install
191         $(call Package/luci/install/template,$(1),libs/ipkg)
192 endef
193
194
195 define Package/luci-json
196   $(call Package/luci/libtemplate)
197   TITLE:=LuCI JSON Library
198 endef
199
200 define Package/luci-json/install
201         $(call Package/luci/install/template,$(1),libs/json)
202 endef
203
204
205 define Package/luci-sys
206   $(call Package/luci/libtemplate)
207   TITLE:=LuCI Linux/POSIX system library
208 endef
209
210 define Package/luci-sys/install
211         $(call Package/luci/install/template,$(1),libs/sys)
212 endef
213
214
215 define Package/luci-web
216   $(call Package/luci/libtemplate)
217   DEPENDS+=+luci-http +luci-sys +luci-uci +luci-sgi-cgi
218   TITLE:=MVC Webframework
219 endef
220
221 define Package/luci-web/conffiles
222 /etc/config/luci
223 endef
224
225 define Package/luci-web/install
226         $(call Package/luci/install/template,$(1),libs/web)
227 endef
228
229
230 define Package/luci-uvl
231   $(call Package/luci/libtemplate)
232   DEPENDS+=+luci-sys +luci-uci +luci-core
233   TITLE:=UVL - UCI Validation Layer
234 endef
235
236 define Package/luci-uvl/install
237         $(call Package/luci/install/template,$(1),libs/uvl)
238 endef
239
240
241
242 ### HTTPD ###
243
244 define Package/luci-httpd
245   $(call Package/luci/httpdtemplate)
246   DEPENDS:=+luci-http +libuci
247   TITLE:=Server Core
248 endef
249
250 define Package/luci-httpd/install
251         $(call Package/luci/install/template,$(1),libs/lucittpd)
252 endef
253
254
255
256 ### Community Packages ###
257
258 define Package/luci-freifunk-community
259   $(call Package/luci/fftemplate)
260   DEPENDS+= \
261    +luci-sgi-cgi +luci-app-splash \
262    +luci-app-ffwizard-leipzig \
263    +luci-theme-fledermaus \
264    +luci-i18n-german \
265    +PACKAGE_luci-freifunk-community:olsrd-luci +PACKAGE_luci-freifunk-community:olsrd-luci-mod-dyn-gw \
266    +PACKAGE_luci-freifunk-community:olsrd-luci-mod-txtinfo +PACKAGE_luci-freifunk-community:olsrd-luci-mod-nameservice \
267    +PACKAGE_luci-freifunk-community:kmod-tun +PACKAGE_luci-freifunk-community:ip \
268    +luci-app-olsr
269   TITLE:=Freifunk Community Meta-Package
270 endef
271
272 define Package/luci-freifunk-community/install
273         $(call Package/luci/install/template,$(1),applications/freifunk-community)
274 endef
275
276 ### Modules ###
277
278 define Package/luci-admin-core
279   $(call Package/luci/webtemplate)
280   DEPENDS+=+luci-web +luci-cbi +luci-theme-openwrt +luci-i18n-english
281   TITLE:=Web UI Core Module
282 endef
283
284 define Package/luci-admin-core/conffiles
285 /etc/config/luci_hosts
286 /etc/config/luci_ethers
287 endef
288
289 define Package/luci-admin-core/install
290         $(call Package/luci/install/template,$(1),modules/admin-core)
291         touch $(1)/etc/init.d/luci_fixtime || true
292 endef
293
294
295 define Package/luci-admin-mini
296   $(call Package/luci/webtemplate)
297   DEPENDS+=+luci-admin-core
298   TITLE:=LuCI Essentials - stripped down and user-friendly
299 endef
300
301 define Package/luci-admin-mini/install
302         $(call Package/luci/install/template,$(1),modules/admin-mini)
303 endef
304
305
306 define Package/luci-admin-full
307   $(call Package/luci/webtemplate)
308   DEPENDS+=+luci-admin-core +luci-ipkg +PACKAGE_luci-admin-full:iptables +PACKAGE_luci-admin-full:firewall +luci-app-firewall
309   TITLE:=LuCI Administration - full-featured for full control
310 endef
311
312 define Package/luci-admin-full/install
313         $(call Package/luci/install/template,$(1),modules/admin-full)
314 endef
315
316
317 define Package/luci-admin-rpc
318   $(call Package/luci/webtemplate)
319   DEPENDS+=+luci-json
320   TITLE:=LuCI RPC - JSON-RPC API
321 endef
322
323 define Package/luci-admin-rpc/install
324         $(call Package/luci/install/template,$(1),modules/rpc)
325 endef
326
327
328 define Package/luci-mod-freifunk
329   $(call Package/luci/fftemplate)
330   DEPENDS:=+luci-admin-full +luci-json
331   TITLE:=LuCI Freifunk module
332 endef
333
334 define Package/luci-mod-freifunk/conffiles
335 /etc/config/freifunk
336 endef
337
338 define Package/luci-mod-freifunk/install
339         $(call Package/luci/install/template,$(1),modules/freifunk)
340 endef
341
342
343
344 ### Applications ###
345
346 define Package/luci-app-ffwizard-leipzig
347   $(call Package/luci/fftemplate)
348   TITLE:=Freifunk Leipzig configuration wizard
349 endef
350
351 define Package/luci-app-ffwizard-leipzig/install
352         $(call Package/luci/install/template,$(1),applications/luci-ffwizard-leipzig)
353 endef
354
355
356 define Package/luci-app-siitwizard
357   $(call Package/luci/fftemplate)
358   TITLE:=SIIT IPv4-over-IPv6 configuration wizard
359   DEPENDS:=+luci-admin-core +PACKAGE_luci-app-siitwizard:kmod-siit
360 endef
361
362 define Package/luci-app-siitwizard/install
363         $(call Package/luci/install/template,$(1),applications/luci-siitwizard)
364 endef
365
366
367 define Package/luci-app-firewall
368   $(call Package/luci/webtemplate)
369   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-firewall:firewall
370   TITLE:=Firewall and Portforwarding application
371 endef
372
373 define Package/luci-app-firewall/install
374         $(call Package/luci/install/template,$(1),applications/luci-fw)
375 endef
376
377
378 define Package/luci-app-olsr
379   $(call Package/luci/webtemplate)
380   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-olsr:olsrd-luci +PACKAGE_luci-app-olsr:olsrd-luci-mod-txtinfo
381   TITLE:=OLSR configuration and status module
382 endef
383
384 define Package/luci-app-olsr/install
385         $(call Package/luci/install/template,$(1),applications/luci-olsr)
386 endef
387
388
389 define Package/luci-app-qos
390   $(call Package/luci/webtemplate)
391   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-qos:qos-scripts
392   TITLE:=Quality of Service configuration module
393 endef
394
395 define Package/luci-app-qos/install
396         $(call Package/luci/install/template,$(1),applications/luci-qos)
397 endef
398
399
400 define Package/luci-app-splash
401   $(call Package/luci/fftemplate)
402   DEPENDS+=+PACKAGE_luci-app-splash:luasocket
403   TITLE:=Freifunk DHCP-Splash application
404 endef
405
406 define Package/luci-app-splash/conffiles
407 /etc/config/luci_splash
408 endef
409
410 define Package/luci-app-splash/install
411         $(call Package/luci/install/template,$(1),applications/luci-splash)
412 endef
413
414
415 define Package/luci-app-statistics
416   $(call Package/luci/webtemplate)
417   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-statistics:collectd \
418    +PACKAGE_luci-app-statistics:collectd-mod-rrdtool1 +PACKAGE_luci-app-statistics:rrdtool1
419   TITLE:=LuCI Statistics Application
420 endef
421
422 define Package/luci-app-statistics/conffiles
423 /etc/config/luci_statistics
424 endef
425
426 define Package/luci-app-statistics/install
427         $(call Package/luci/install/template,$(1),applications/luci-statistics)
428 endef
429
430
431 define Package/luci-app-upnp
432   $(call Package/luci/webtemplate)
433   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-upnp:miniupnpd
434   TITLE:=Universal Plug & Play configuration module
435 endef
436
437 define Package/luci-app-upnp/install
438         $(call Package/luci/install/template,$(1),applications/luci-upnp)
439 endef
440
441
442 define Package/luci-app-ntpc
443   $(call Package/luci/webtemplate)
444   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-ntpc:ntpclient
445   TITLE:=NTP time synchronisation client configuration module
446 endef
447
448 define Package/luci-app-ntpc/install
449         $(call Package/luci/install/template,$(1),applications/luci-ntpc)
450 endef
451
452
453 define Package/luci-app-ddns
454   $(call Package/luci/webtemplate)
455   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-ddns:ddns-scripts
456   TITLE:=Dynamic DNS configuration module
457 endef
458
459 define Package/luci-app-ddns/install
460         $(call Package/luci/install/template,$(1),applications/luci-ddns)
461 endef
462
463
464 define Package/luci-app-samba
465   $(call Package/luci/webtemplate)
466   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-samba:samba3
467   TITLE:=Network Shares - Samba SMB/CIFS module
468 endef
469
470 define Package/luci-app-samba/install
471         $(call Package/luci/install/template,$(1),applications/luci-samba)
472 endef
473
474
475 define Package/luci-app-uvc_streamer
476   $(call Package/luci/webtemplate)
477   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-uvc_streamer:uvc-streamer
478   TITLE:=Webcam Streaming - UVC-Streamer module
479 endef
480
481 define Package/luci-app-uvc_streamer/install
482         $(call Package/luci/install/template,$(1),applications/luci-uvc_streamer)
483 endef
484
485
486 define Package/luci-app-mmc_over_gpio
487   $(call Package/luci/webtemplate)
488   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-mmc_over_gpio:kmod-mmc-over-gpio
489   TITLE:=mmc_over_gpio
490 endef
491
492 define Package/luci-app-mmc_over_gpio/install
493         $(call Package/luci/install/template,$(1),applications/luci-mmc_over_gpio)
494 endef
495
496
497 define Package/luci-app-p910nd
498   $(call Package/luci/webtemplate)
499   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-p910nd:p910nd
500   TITLE:=p910nd - Printer server module
501 endef
502
503 define Package/luci-app-p910nd/install
504         $(call Package/luci/install/template,$(1),applications/luci-p910nd)
505 endef
506
507
508 define Package/luci-app-ushare
509   $(call Package/luci/webtemplate)
510   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-ushare:ushare
511   TITLE:=ushare - UPnP A/V & DLNA Media Server
512 endef
513
514 define Package/luci-app-ushare/install
515         $(call Package/luci/install/template,$(1),applications/luci-ushare)
516 endef
517
518 define Package/luci-app-hd_idle
519   $(call Package/luci/webtemplate)
520   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-hd_idle:hd-idle
521   TITLE:=hd-idle
522 endef
523
524 define Package/luci-app-hd_idle/install
525         $(call Package/luci/install/template,$(1),applications/luci-hd_idle)
526 endef
527
528 define Package/luci-app-tinyproxy
529   $(call Package/luci/webtemplate)
530   DEPENDS+=+luci-admin-full +PACKAGE_luci-app-tinyproxy:tinyproxy
531   TITLE:=Tinyproxy - HTTP(S)-Proxy
532 endef
533
534 define Package/luci-app-tinyproxy/install
535         $(call Package/luci/install/template,$(1),applications/luci-tinyproxy)
536 endef
537
538 define Package/luci-app-initmgr
539   $(call Package/luci/webtemplate)
540   DEPENDS+=+luci-admin-full
541   TITLE:=LuCI Initscript Management
542 endef
543
544 define Package/luci-app-initmgr/install
545         $(call Package/luci/install/template,$(1),applications/luci-initmgr)
546 endef
547
548 define Package/luci-app-livestats
549   $(call Package/luci/webtemplate)
550   DEPENDS+=+luci-admin-core +luci-admin-rpc
551   TITLE:=LuCI Realtime Statistics
552 endef
553
554 define Package/luci-app-livestats/install
555         $(call Package/luci/install/template,$(1),applications/luci-livestats)
556 endef
557
558 define Package/luci-app-asterisk
559   $(call Package/luci/webtemplate)
560   TITLE:=LuCI Support for Asterisk PBX
561   DEPENDS+=@BROKEN +luci-admin-core +PACKAGE_luci-app-asterisk:asterisk14-xip-core
562 endef
563
564 define Package/luci-app-asterisk/install
565         $(call Package/luci/install/template,$(1),applications/luci-asterisk)
566 endef
567
568 define Package/luci-app-polipo
569   $(call Package/luci/webtemplate)
570   TITLE:=LuCI Support for the Polipo Proxy
571   DEPENDS+=+luci-admin-core +PACKAGE_luci-app-polipo:polipo
572 endef
573
574 define Package/luci-app-polipo/install
575         $(call Package/luci/install/template,$(1),applications/luci-polipo)
576 endef
577
578 define Package/luci-app-openvpn
579   $(call Package/luci/webtemplate)
580   TITLE:=LuCI Support for OpenVPN
581   DEPENDS+=@BROKEN +luci-admin-core +PACKAGE_luci-app-openvpn:openvpn
582 endef
583
584 define Package/luci-app-openvpn/install
585         $(call Package/luci/install/template,$(1),applications/luci-openvpn)
586 endef
587
588
589 ### Server Gateway Interfaces ###
590
591 define Package/luci-sgi-cgi
592   $(call Package/luci/libtemplate)
593   TITLE:=SGI for CGI
594 endef
595
596 define Package/luci-sgi-cgi/install
597         $(call Package/luci/install/template,$(1),libs/sgi-cgi)
598 endef
599
600 define Package/luci-sgi-luci
601   $(call Package/luci/libtemplate)
602   DEPENDS+=+luci-httpd
603   TITLE:=SGI for LuCIttpd
604 endef
605
606 define Package/luci-sgi-luci/install
607         $(call Package/luci/install/template,$(1),libs/sgi-luci)
608 endef
609
610 define Package/luci-sgi-webuci
611   $(call Package/luci/libtemplate)
612   TITLE:=SGI for Webuci
613 endef
614
615 define Package/luci-sgi-webuci/install
616         $(call Package/luci/install/template,$(1),libs/sgi-webuci)
617 endef
618
619 ### Themes ###
620 define Package/luci-theme-base
621   $(call Package/luci/thtemplate)
622   DEPENDS:=+luci-web
623   TITLE:=Common base for all themes
624 endef
625
626 define Package/luci-theme-base/install
627         $(call Package/luci/install/template,$(1),themes/base)
628 endef
629
630 define Package/luci-theme-fledermaus
631   $(call Package/luci/fftemplate)
632   DEPENDS:=+luci-web
633   TITLE:=Fledermaus Theme
634 endef
635
636 define Package/luci-theme-fledermaus/install
637         $(call Package/luci/install/template,$(1),themes/fledermaus)
638 endef
639
640 define Package/luci-theme-freifunk
641   $(call Package/luci/fftemplate)
642   DEPENDS:=+luci-web
643   MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
644   TITLE:=alternative Freifunk Theme
645 endef
646
647 define Package/luci-theme-freifunk/install
648         $(call Package/luci/install/template,$(1),themes/freifunk)
649 endef
650
651 define Package/luci-theme-freifunk-bno
652   $(call Package/luci/fftemplate)
653   DEPENDS:=+luci-web
654   MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
655   TITLE:=Freifunk Berlin Nordost Theme
656 endef
657
658 define Package/luci-theme-freifunk-bno/install
659         $(call Package/luci/install/template,$(1),themes/freifunk-bno)
660 endef
661
662 define Package/luci-theme-openwrt
663   $(call Package/luci/thtemplate)
664   TITLE:=OpenWrt.org (default)
665   DEPENDS:=+luci-theme-base
666 endef
667
668 define Package/luci-theme-openwrt/install
669         $(call Package/luci/install/template,$(1),themes/openwrt.org)
670 endef
671
672 define Package/luci-theme-openwrtlight
673   $(call Package/luci/thtemplate)
674   TITLE:=OpenWrt.org - light variant without images
675   DEPENDS:=+luci-theme-base
676 endef
677
678 define Package/luci-theme-openwrtlight/install
679         $(call Package/luci/install/template,$(1),themes/openwrt-light)
680 endef
681
682
683 ### Translations ###
684 define Package/luci-i18n-german
685   $(call Package/luci/i18ntemplate)
686   TITLE:=German
687 endef
688
689 define Package/luci-i18n-german/install
690         $(call Package/luci/install/template,$(1),i18n/german)
691 endef
692
693
694 define Package/luci-i18n-english
695   $(call Package/luci/i18ntemplate)
696   TITLE:=English
697 endef
698
699 define Package/luci-i18n-english/install
700         $(call Package/luci/install/template,$(1),i18n/english)
701 endef
702
703
704 define Package/luci-i18n-french
705   $(call Package/luci/i18ntemplate)
706   TITLE:=French (by Florian Fainelli)
707 endef
708
709 define Package/luci-i18n-french/install
710         $(call Package/luci/install/template,$(1),i18n/french)
711 endef
712
713
714 define Package/luci-i18n-italian
715   $(call Package/luci/i18ntemplate)
716   TITLE:=Italian (by Matteo Croce)
717 endef
718
719 define Package/luci-i18n-italian/install
720         $(call Package/luci/install/template,$(1),i18n/italian)
721 endef
722
723
724 define Package/luci-i18n-russian
725   $(call Package/luci/i18ntemplate)
726   TITLE:=Russian (by Skryabin Dmitry)
727 endef
728
729 define Package/luci-i18n-russian/install
730         $(call Package/luci/install/template,$(1),i18n/russian)
731 endef
732
733
734 define Package/luci-i18n-portuguese_brazilian
735   $(call Package/luci/i18ntemplate)
736   TITLE:=Portuguese (Brazilian) (by Carlos Cesario)
737 endef
738
739 define Package/luci-i18n-portuguese_brazilian/install
740         $(call Package/luci/install/template,$(1),i18n/portuguese_brazilian)
741 endef
742
743
744 ### Compile ###
745 ifneq ($(CONFIG_PACKAGE_luci-core),)
746         PKG_SELECTED_MODULES+=libs/core
747 endif
748 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
749         PKG_SELECTED_MODULES+=libs/cbi
750 endif
751 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
752         PKG_SELECTED_MODULES+=libs/fastindex
753 endif
754 ifneq ($(CONFIG_PACKAGE_luci-http),)
755         PKG_SELECTED_MODULES+=libs/http
756 endif
757 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
758         PKG_SELECTED_MODULES+=libs/ipkg
759 endif
760 ifneq ($(CONFIG_PACKAGE_luci-json),)
761         PKG_SELECTED_MODULES+=libs/json
762 endif
763 ifneq ($(CONFIG_PACKAGE_luci-uci),)
764         PKG_SELECTED_MODULES+=libs/uci
765 endif
766 ifneq ($(CONFIG_PACKAGE_luci-sys),)
767         PKG_SELECTED_MODULES+=libs/sys
768 endif
769 ifneq ($(CONFIG_PACKAGE_luci-web),)
770         PKG_SELECTED_MODULES+=libs/web
771 endif
772 ifneq ($(CONFIG_PACKAGE_luci-uvl),)
773         PKG_SELECTED_MODULES+=libs/uvl
774 endif
775
776 ifneq ($(CONFIG_PACKAGE_luci-httpd),)
777         PKG_SELECTED_MODULES+=libs/lucittpd
778 endif
779
780 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
781         PKG_SELECTED_MODULES+=modules/admin-core
782 endif
783 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
784         PKG_SELECTED_MODULES+=modules/admin-mini
785 endif
786 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
787         PKG_SELECTED_MODULES+=modules/admin-full
788 endif
789 ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
790         PKG_SELECTED_MODULES+=modules/rpc
791 endif
792 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk),)
793         PKG_SELECTED_MODULES+=modules/freifunk
794 endif
795
796 ifneq ($(CONFIG_PACKAGE_luci-freifunk-community),)
797         PKG_SELECTED_MODULES+=applications/freifunk-community
798 endif
799
800 ifneq ($(CONFIG_PACKAGE_luci-app-ffwizard-leipzig),)
801         PKG_SELECTED_MODULES+=applications/luci-ffwizard-leipzig
802 endif
803 ifneq ($(CONFIG_PACKAGE_luci-app-siitwizard),)
804         PKG_SELECTED_MODULES+=applications/luci-siitwizard
805 endif
806 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
807         PKG_SELECTED_MODULES+=applications/luci-fw
808 endif
809 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
810         PKG_SELECTED_MODULES+=applications/luci-olsr
811 endif
812 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
813         PKG_SELECTED_MODULES+=applications/luci-qos
814 endif
815 ifneq ($(CONFIG_PACKAGE_luci-app-splash),)
816         PKG_SELECTED_MODULES+=applications/luci-splash
817 endif
818 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
819         PKG_SELECTED_MODULES+=applications/luci-statistics
820 endif
821 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
822         PKG_SELECTED_MODULES+=applications/luci-upnp
823 endif
824 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
825         PKG_SELECTED_MODULES+=applications/luci-ntpc
826 endif
827 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
828         PKG_SELECTED_MODULES+=applications/luci-ddns
829 endif
830 ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
831         PKG_SELECTED_MODULES+=applications/luci-samba
832 endif
833 ifneq ($(CONFIG_PACKAGE_luci-app-uvc_streamer),)
834         PKG_SELECTED_MODULES+=applications/luci-uvc_streamer
835 endif
836 ifneq ($(CONFIG_PACKAGE_luci-app-mmc_over_gpio),)
837         PKG_SELECTED_MODULES+=applications/luci-mmc_over_gpio
838 endif
839 ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
840         PKG_SELECTED_MODULES+=applications/luci-p910nd
841 endif
842 ifneq ($(CONFIG_PACKAGE_luci-app-ushare),)
843         PKG_SELECTED_MODULES+=applications/luci-ushare
844 endif
845 ifneq ($(CONFIG_PACKAGE_luci-app-hd_idle),)
846        PKG_SELECTED_MODULES+=applications/luci-hd_idle
847 endif
848 ifneq ($(CONFIG_PACKAGE_luci-app-tinyproxy),)
849        PKG_SELECTED_MODULES+=applications/luci-tinyproxy
850 endif
851 ifneq ($(CONFIG_PACKAGE_luci-app-initmgr),)
852        PKG_SELECTED_MODULES+=applications/luci-initmgr
853 endif
854 ifneq ($(CONFIG_PACKAGE_luci-app-livestats),)
855        PKG_SELECTED_MODULES+=applications/luci-livestats
856 endif
857 ifneq ($(CONFIG_PACKAGE_luci-app-asterisk),)
858        PKG_SELECTED_MODULES+=applications/luci-asterisk
859 endif
860 ifneq ($(CONFIG_PACKAGE_luci-app-polipo),)
861        PKG_SELECTED_MODULES+=applications/luci-polipo
862 endif
863 ifneq ($(CONFIG_PACKAGE_luci-app-openvpn),)
864        PKG_SELECTED_MODULES+=applications/luci-openvpn
865 endif
866
867
868 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
869         PKG_SELECTED_MODULES+=libs/sgi-cgi
870 endif
871 ifneq ($(CONFIG_PACKAGE_luci-sgi-luci),)
872         PKG_SELECTED_MODULES+=libs/sgi-luci
873 endif
874 ifneq ($(CONFIG_PACKAGE_luci-sgi-webuci),)
875         PKG_SELECTED_MODULES+=libs/sgi-webuci
876 endif
877
878 ifneq ($(CONFIG_PACKAGE_luci-theme-base),)
879         PKG_SELECTED_MODULES+=themes/base
880 endif
881 ifneq ($(CONFIG_PACKAGE_luci-theme-fledermaus),)
882         PKG_SELECTED_MODULES+=themes/fledermaus
883 endif
884 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-bno),)
885         PKG_SELECTED_MODULES+=themes/freifunk-bno
886 endif
887 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk),)
888         PKG_SELECTED_MODULES+=themes/freifunk
889 endif
890 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
891         PKG_SELECTED_MODULES+=themes/openwrt.org
892 endif
893 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrtlight),)
894         PKG_SELECTED_MODULES+=themes/openwrt-light
895 endif
896
897 ifneq ($(CONFIG_PACKAGE_luci-i18n-german),)
898         PKG_SELECTED_MODULES+=i18n/german
899 endif
900 ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
901         PKG_SELECTED_MODULES+=i18n/english
902 endif
903 ifneq ($(CONFIG_PACKAGE_luci-i18n-french),)
904         PKG_SELECTED_MODULES+=i18n/french
905 endif
906 ifneq ($(CONFIG_PACKAGE_luci-i18n-italian),)
907         PKG_SELECTED_MODULES+=i18n/italian
908 endif
909 ifneq ($(CONFIG_PACKAGE_luci-i18n-russian),)
910         PKG_SELECTED_MODULES+=i18n/russian
911 endif
912 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese_brazilian),)
913         PKG_SELECTED_MODULES+=i18n/portuguese_brazilian
914 endif
915
916
917 MAKE_FLAGS += \
918         MODULES="$(PKG_SELECTED_MODULES)" \
919         LUA_TARGET="$(LUA_TARGET)" \
920         LUA_SHLIBS="-llua -lm -ldl -lcrypt" \
921         CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
922         LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
923         OS="Linux"
924
925
926 $(eval $(call BuildPackage,luci-core))
927 $(eval $(call BuildPackage,luci-cbi))
928 $(eval $(call BuildPackage,luci-fastindex))
929 $(eval $(call BuildPackage,luci-http))
930 $(eval $(call BuildPackage,luci-ipkg))
931 $(eval $(call BuildPackage,luci-json))
932 $(eval $(call BuildPackage,luci-uci))
933 $(eval $(call BuildPackage,luci-sys))
934 $(eval $(call BuildPackage,luci-web))
935 $(eval $(call BuildPackage,luci-uvl))
936
937 $(eval $(call BuildPackage,luci-httpd))
938
939 $(eval $(call BuildPackage,luci-admin-core))
940 $(eval $(call BuildPackage,luci-admin-mini))
941 $(eval $(call BuildPackage,luci-admin-full))
942 $(eval $(call BuildPackage,luci-admin-rpc))
943 $(eval $(call BuildPackage,luci-mod-freifunk))
944
945 $(eval $(call BuildPackage,luci-freifunk-community))
946
947 $(eval $(call BuildPackage,luci-app-ffwizard-leipzig))
948 $(eval $(call BuildPackage,luci-app-siitwizard))
949 $(eval $(call BuildPackage,luci-app-firewall))
950 $(eval $(call BuildPackage,luci-app-olsr))
951 $(eval $(call BuildPackage,luci-app-qos))
952 $(eval $(call BuildPackage,luci-app-splash))
953 $(eval $(call BuildPackage,luci-app-statistics))
954 $(eval $(call BuildPackage,luci-app-upnp))
955 $(eval $(call BuildPackage,luci-app-ntpc))
956 $(eval $(call BuildPackage,luci-app-ddns))
957 $(eval $(call BuildPackage,luci-app-samba))
958 $(eval $(call BuildPackage,luci-app-uvc_streamer))
959 $(eval $(call BuildPackage,luci-app-mmc_over_gpio))
960 $(eval $(call BuildPackage,luci-app-p910nd))
961 $(eval $(call BuildPackage,luci-app-ushare))
962 $(eval $(call BuildPackage,luci-app-hd_idle))
963 $(eval $(call BuildPackage,luci-app-tinyproxy))
964 $(eval $(call BuildPackage,luci-app-initmgr))
965 $(eval $(call BuildPackage,luci-app-livestats))
966 $(eval $(call BuildPackage,luci-app-asterisk))
967 $(eval $(call BuildPackage,luci-app-polipo))
968 $(eval $(call BuildPackage,luci-app-openvpn))
969
970 $(eval $(call BuildPackage,luci-sgi-cgi))
971 $(eval $(call BuildPackage,luci-sgi-luci))
972 $(eval $(call BuildPackage,luci-sgi-webuci))
973
974 $(eval $(call BuildPackage,luci-theme-base))
975 $(eval $(call BuildPackage,luci-theme-fledermaus))
976 $(eval $(call BuildPackage,luci-theme-freifunk))
977 $(eval $(call BuildPackage,luci-theme-freifunk-bno))
978 $(eval $(call BuildPackage,luci-theme-openwrt))
979 $(eval $(call BuildPackage,luci-theme-openwrtlight))
980
981 $(eval $(call BuildPackage,luci-i18n-german))
982 $(eval $(call BuildPackage,luci-i18n-english))
983 $(eval $(call BuildPackage,luci-i18n-french))
984 $(eval $(call BuildPackage,luci-i18n-italian))
985 $(eval $(call BuildPackage,luci-i18n-russian))
986 $(eval $(call BuildPackage,luci-i18n-portuguese_brazilian))