770664556f1e8c6a73b98dd5c9bae7892ece42de
[project/luci.git] / contrib / package / luci / Makefile
1 include $(TOPDIR)/rules.mk
2
3 LUCI_TOPDIR=../../..
4
5 PKG_NAME:=luci
6 PKG_RELEASE:=1
7
8 PKG_BUILD_PARALLEL:=0
9
10 PKG_VERSION:=$(shell $(LUCI_TOPDIR)/build/mkrevision.sh 2>/dev/null || echo unknown)
11
12 PKG_BUILD_DEPENDS:=$(if $(STAGING_DIR_ROOT),lua/host)
13 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
14 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
15
16 LUA_TARGET:=source
17 LUCI_CFLAGS:=
18 LUCI_BUILD_PACKAGES:=
19 LUCI_SELECTED_MODULES:=
20
21 ifeq ($(BOARD),brcm-2.4)
22   MAKE_FLAGS += CRAP="1"
23 endif
24
25
26 ### Templates ###
27 define Package/luci/install/template
28         $(CP) -a $(PKG_BUILD_DIR)/$(2)/dist/* $(1)/ -R
29         $(CP) -a $(PKG_BUILD_DIR)/$(2)/ipkg/* $(1)/CONTROL/ 2>/dev/null || true
30 endef
31
32
33 ### Core package ###
34 define Package/luci-lib-core
35   SECTION:=luci
36   CATEGORY:=LuCI
37   TITLE:=LuCI - Lua Configuration Interface
38   URL:=http://luci.subsignal.org/
39   MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
40   SUBMENU:=8. Libraries
41   DEPENDS:=+lua +libuci-lua +libubus-lua
42   TITLE:=LuCI core libraries
43 endef
44
45 define Package/luci-lib-core/install
46         $(call Package/luci/install/template,$(1),libs/core)
47         $(PKG_BUILD_DIR)/build/mkversion.sh $(1)/usr/lib/lua/luci/version.lua \
48                 "OpenWrt Firmware" \
49                 "$(OPENWRTVERSION)" \
50                 "trunk" \
51                 "$(PKG_VERSION)"
52 endef
53
54 define Package/luci-lib-core/config
55        choice
56                prompt "Build Target"
57                default PACKAGE_luci-lib-core_source
58
59        config PACKAGE_luci-lib-core_compile
60                bool "Precompiled"
61
62        config PACKAGE_luci-lib-core_stripped
63                bool "Stripped"
64
65        config PACKAGE_luci-lib-core_srcdiet
66                bool "Compressed Source"
67
68        config PACKAGE_luci-lib-core_source
69                bool "Full Source"
70
71        endchoice
72 endef
73
74 ifneq ($(CONFIG_PACKAGE_luci-lib-core_compile),)
75   LUA_TARGET:=compile
76 endif
77
78 ifneq ($(CONFIG_PACKAGE_luci-lib-core_stripped),)
79   LUA_TARGET:=strip
80 endif
81
82 ifneq ($(CONFIG_PACKAGE_luci-lib-core_srcdiet),)
83   LUA_TARGET:=diet
84 endif
85
86 ifneq ($(CONFIG_PACKAGE_luci-lib-core),)
87   LUCI_SELECTED_MODULES+=libs/core
88 endif
89
90 LUCI_BUILD_PACKAGES += luci-lib-core
91
92
93 ### Libraries ###
94 define library
95   define Package/luci-lib-$(1)
96     SECTION:=luci
97     CATEGORY:=LuCI
98     TITLE:=LuCI - Lua Configuration Interface
99     URL:=http://luci.subsignal.org/
100     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
101     SUBMENU:=8. Libraries
102     TITLE:=$(if $(2),$(2),LuCI $(1) library)
103     $(if $(3),DEPENDS:=+luci-lib-core $(3))
104   endef
105
106   define Package/luci-lib-$(1)/install
107         $(call Package/luci/install/template,$$(1),libs/$(1))
108         $(call Package/luci-lib-$(1)/extra-install)
109   endef
110
111   ifneq ($(CONFIG_PACKAGE_luci-lib-$(1)),)
112     LUCI_SELECTED_MODULES+=libs/$(1)
113   endif
114
115   LUCI_BUILD_PACKAGES += luci-lib-$(1)
116 endef
117
118 define Package/luci-lib-web/conffiles
119 /etc/config/luci
120 endef
121
122 define Package/luci-lib-nixio/config
123         choice
124                 prompt "TLS Provider"
125                 default PACKAGE_luci-lib-nixio_notls
126
127                 config PACKAGE_luci-lib-nixio_notls
128                         bool "Disabled"
129
130                 config PACKAGE_luci-lib-nixio_axtls
131                         bool "Builtin (axTLS)"
132
133                 config PACKAGE_luci-lib-nixio_cyassl
134                         bool "CyaSSL"
135                         select PACKAGE_libcyassl
136
137                 config PACKAGE_luci-lib-nixio_openssl
138                         bool "OpenSSL"
139                         select PACKAGE_libopenssl
140         endchoice
141 endef
142
143
144 NIXIO_TLS:=
145
146 ifneq ($(CONFIG_PACKAGE_luci-lib-nixio_axtls),)
147   NIXIO_TLS:=axtls
148 endif
149
150 ifneq ($(CONFIG_PACKAGE_luci-lib-nixio_openssl),)
151   NIXIO_TLS:=openssl
152 endif
153
154 ifneq ($(CONFIG_PACKAGE_luci-lib-nixio_cyassl),)
155   NIXIO_TLS:=cyassl
156   LUCI_CFLAGS+=-I$(STAGING_DIR)/usr/include/cyassl
157 endif
158
159
160 $(eval $(call library,fastindex,Fastindex indexing module,+PACKAGE_luci-lib-fastindex:liblua))
161 $(eval $(call library,httpclient,HTTP(S) client library,+luci-lib-web +luci-lib-nixio))
162 $(eval $(call library,ipkg,LuCI IPKG/OPKG call abstraction library))
163 $(eval $(call library,json,LuCI JSON library))
164 $(eval $(call library,lucid,LuCId Full-Stack Webserver,+luci-lib-nixio +luci-lib-web +luci-lib-px5g))
165 $(eval $(call library,lucid-http,LuCId HTTP Backend,+luci-lib-lucid))
166 $(eval $(call library,lucid-rpc,LuCId RPC Backend,+luci-lib-lucid))
167 $(eval $(call library,nixio,NIXIO POSIX library,+PACKAGE_luci-lib-nixio_openssl:libopenssl +PACKAGE_luci-lib-nixio_cyassl:libcyassl))
168 $(eval $(call library,px5g,RSA/X.509 Key Generator (required for LuCId SSL support),+luci-lib-nixio))
169 $(eval $(call library,sys,LuCI Linux/POSIX system library))
170 $(eval $(call library,web,MVC Webframework,+luci-lib-sys +luci-lib-nixio +luci-lib-core +luci-sgi-cgi))
171 $(eval $(call library,luaneightbl,neightbl - Lua lib for IPv6 neighbors,+luci-lib-core))
172
173
174 ### Protocols ###
175 define protocol
176   define Package/luci-proto-$(1)
177     SECTION:=luci
178     CATEGORY:=LuCI
179     TITLE:=LuCI - Lua Configuration Interface
180     URL:=http://luci.subsignal.org/
181     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
182     SUBMENU:=6. Protocols
183     TITLE:=$(if $(2),$(2),LuCI $(1) protocol support)
184     DEPENDS:=$(3)
185   endef
186
187   define Package/luci-proto-$(1)/install
188         $(call Package/luci/install/template,$$(1),protocols/$(1))
189   endef
190
191   ifneq ($(CONFIG_PACKAGE_luci-proto-$(1)),)
192     LUCI_SELECTED_MODULES+=protocols/$(1)
193   endif
194
195   LUCI_BUILD_PACKAGES += luci-proto-$(1)
196 endef
197
198 $(eval $(call protocol,core,Support for static/dhcp/none))
199 $(eval $(call protocol,ppp,Support for PPP/PPPoE/PPPoA/PPtP))
200 $(eval $(call protocol,ipv6,Support for DHCPv6/6in4/6to4/6rd/DS-Lite))
201 $(eval $(call protocol,3g,Support for 3G,+PACKAGE_luci-proto-3g:comgt))
202 $(eval $(call protocol,relay,Support for relayd pseudo bridges,+PACKAGE_luci-proto-relay:relayd))
203
204
205 ### Community Packages ###
206 define Package/luci-mod-freifunk-community
207   SECTION:=luci
208   CATEGORY:=LuCI
209   TITLE:=LuCI - Lua Configuration Interface
210   URL:=http://luci.subsignal.org/
211   MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
212   SUBMENU:=9. Freifunk
213   TITLE:=Freifunk Community Meta-Package
214   DEPENDS+= \
215    +luci-lib-web +luci-app-splash +luci-i18n-german \
216    +PACKAGE_luci-mod-freifunk-community:olsrd +PACKAGE_luci-mod-freifunk-community:olsrd-mod-dyn-gw-plain \
217    +PACKAGE_luci-mod-freifunk-community:olsrd-mod-jsoninfo +PACKAGE_luci-mod-freifunk-community:olsrd-mod-nameservice \
218    +PACKAGE_luci-mod-freifunk-community:olsrd-mod-watchdog +PACKAGE_luci-mod-freifunk-community:kmod-tun \
219    +PACKAGE_luci-mod-freifunk-community:ip +PACKAGE_luci-mod-freifunk-community:freifunk-watchdog +luci-app-olsr \
220    +luci-app-olsr-services +freifunk-gwcheck +freifunk-mapupdate
221 endef
222
223 define Package/luci-mod-freifunk-community/install
224         $(call Package/luci/install/template,$(1),applications/freifunk-community)
225 endef
226
227 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk-community),)
228         LUCI_SELECTED_MODULES+=applications/freifunk-community
229 endif
230
231 LUCI_BUILD_PACKAGES += luci-mod-freifunk-community
232
233
234 ### Modules ###
235 define module
236   define Package/luci-mod-$(1)
237     SECTION:=luci
238     CATEGORY:=LuCI
239     TITLE:=LuCI - Lua Configuration Interface
240     URL:=http://luci.subsignal.org/
241     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
242     SUBMENU:=2. Modules
243     TITLE:=$(if $(2),$(2),LuCI $(1) module)
244     $(if $(3),DEPENDS+=$(3))
245   endef
246
247   define Package/luci-mod-$(1)/install
248         $(call Package/luci/install/template,$$(1),modules/$(1))
249         $(call Package/luci-mod-$(1)/extra-install)
250   endef
251
252   ifneq ($(CONFIG_PACKAGE_luci-mod-$(1)),)
253     LUCI_SELECTED_MODULES+=modules/$(1)
254   endif
255
256   LUCI_BUILD_PACKAGES += luci-mod-$(1)
257 endef
258
259
260 define Package/luci-mod-admin-core/extra-install
261         touch $(1)/etc/init.d/luci_fixtime || true
262 endef
263
264 $(eval $(call module,admin-core,Web UI Core module,+luci-lib-web +luci-proto-core +luci-i18n-english))
265 $(eval $(call module,admin-mini,LuCI Essentials - stripped down and user-friendly,+luci-mod-admin-core @BROKEN))
266 $(eval $(call module,admin-full,LuCI Administration - full-featured for full control,+luci-mod-admin-core +luci-lib-ipkg))
267 $(eval $(call module,failsafe,LuCI Fail-Safe - Fail-Safe sysupgrade module,+luci-mod-admin-core))
268 $(eval $(call module,rpc,LuCI RPC - JSON-RPC API,+luci-lib-json))
269 $(eval $(call module,freifunk,LuCI Freifunk module,+luci-mod-admin-full +luci-lib-json +PACKAGE_luci-mod-freifunk:freifunk-firewall +freifunk-common))
270 $(eval $(call module,niu,NIU - Next Generation Interface,+luci-mod-admin-core @BROKEN))
271
272
273 ### Applications ###
274 define application
275   define Package/luci-app-$(1)
276     SECTION:=luci
277     CATEGORY:=LuCI
278     TITLE:=LuCI - Lua Configuration Interface
279     URL:=http://luci.subsignal.org/
280     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
281     SUBMENU:=3. Applications
282     TITLE:=$(if $(2),$(2),LuCI $(1) application)
283         DEPENDS:=$(3)
284   endef
285
286   define Package/luci-app-$(1)/install
287         $(call Package/luci/install/template,$$(1),applications/luci-$(1))
288   endef
289
290   ifneq ($(CONFIG_PACKAGE_luci-app-$(1)),)
291     LUCI_SELECTED_MODULES+=applications/luci-$(1)
292   endif
293
294   LUCI_BUILD_PACKAGES += luci-app-$(1)
295 endef
296
297 define Package/luci-app-splash/conffiles
298 /etc/config/luci_splash
299 /usr/lib/luci-splash/splashtext.html
300 /usr/lib/luci-splash/splashtextinclude.html
301 endef
302
303 define Package/luci-app-statistics/conffiles
304 /etc/config/luci_statistics
305 endef
306
307 define Package/luci-app-diag-devinfo/conffiles
308 /etc/config/luci_devinfo
309 endef
310
311
312 $(eval $(call application,siitwizard,SIIT IPv4-over-IPv6 configuration wizard,\
313         +PACKAGE_luci-app-siitwizard:kmod-siit))
314
315 $(eval $(call application,firewall,Firewall and Portforwarding application,\
316         +PACKAGE_luci-app-firewall:firewall))
317
318 $(eval $(call application,freifunk-policyrouting,Policy routing for mesh traffic,\
319         +PACKAGE_luci-app-freifunk-policyrouting:freifunk-policyrouting))
320
321 $(eval $(call application,freifunk-widgets,Widgets for the Freifunk index page,\
322         +PACKAGE_luci-app-freifunk-widgets:luci-mod-freifunk))
323
324 $(eval $(call application,meshwizard, Shellscript based wizard to setup mesh networks,\
325         +PACKAGE_luci-app-freifunk-meshwizard:meshwizard))
326
327 $(eval $(call application,olsr,OLSR configuration and status module,\
328         +olsrd +olsrd-mod-jsoninfo +luci-lib-luaneightbl))
329
330 $(eval $(call application,olsr-viz,OLSR Visualisation,\
331         luci-app-olsr +olsrd-mod-txtinfo))
332
333 $(eval $(call application,freifunk-diagnostics,Tools for network diagnosis like traceroute and ping))
334
335 $(eval $(call application,olsr-services,Show services announced with the nameservice plugin,\
336         luci-app-olsr +olsrd-mod-nameservice))
337
338 $(eval $(call application,qos,Quality of Service configuration module,\
339         +PACKAGE_luci-app-qos:qos-scripts))
340
341 $(eval $(call application,splash,Freifunk DHCP-Splash application,\
342         +luci-lib-nixio +tc +kmod-sched +iptables-mod-nat-extra +iptables-mod-ipopt))
343
344 $(eval $(call application,statistics,LuCI Statistics Application,\
345         +PACKAGE_luci-app-statistics:collectd \
346         +PACKAGE_luci-app-statistics:rrdtool1 \
347         +PACKAGE_luci-app-statistics:collectd-mod-rrdtool \
348         +PACKAGE_luci-app-statistics:collectd-mod-iwinfo \
349         +PACKAGE_luci-app-statistics:collectd-mod-interface \
350         +PACKAGE_luci-app-statistics:collectd-mod-load)) \
351         +PACKAGE_luci-app-statistics:collectd-mod-network))
352
353
354 $(eval $(call application,diag-core,LuCI Diagnostics Tools (Core)))
355
356 $(eval $(call application,diag-devinfo,LuCI Diagnostics Tools (Device Info),\
357         +luci-app-diag-core \
358         +PACKAGE_luci-app-diag-devinfo:smap \
359         +PACKAGE_luci-app-diag-devinfo:netdiscover \
360         +PACKAGE_luci-app-diag-devinfo:mac-to-devinfo \
361         +PACKAGE_luci-app-diag-devinfo:httping \
362         +PACKAGE_luci-app-diag-devinfo:smap-to-devinfo \
363         +PACKAGE_luci-app-diag-devinfo:netdiscover-to-devinfo))
364
365 $(eval $(call application,voice-core,LuCI Voice Software (Core)))
366
367 $(eval $(call application,voice-diag,LuCI Voice Software (Diagnostics),\
368         luci-app-diag-devinfo))
369
370 $(eval $(call application,commands,LuCI Shell Command Module))
371
372 $(eval $(call application,upnp,Universal Plug & Play configuration module,\
373         +PACKAGE_luci-app-upnp:miniupnpd))
374
375 $(eval $(call application,ntpc,NTP time synchronisation configuration module,\
376         +PACKAGE_luci-app-ntpc:ntpclient))
377
378 $(eval $(call application,ddns,Dynamic DNS configuration module,\
379         +PACKAGE_luci-app-ddns:ddns-scripts))
380
381 $(eval $(call application,samba,Network Shares - Samba SMB/CIFS module,\
382         +PACKAGE_luci-app-samba:samba36-server))
383
384 $(eval $(call application,mmc-over-gpio,MMC-over-GPIO configuration module,\
385         +PACKAGE_luci-app-mmc-over-gpio:kmod-mmc-over-gpio))
386
387 $(eval $(call application,p910nd,p910nd - Printer server module,\
388         +PACKAGE_luci-app-p910nd:p910nd))
389
390 $(eval $(call application,ushare,uShare - UPnP A/V & DLNA Media Server,\
391         +PACKAGE_luci-app-ushare:ushare))
392
393 $(eval $(call application,hd-idle,Hard Disk Idle Spin-Down module,\
394         +PACKAGE_luci-app-hd-idle:hd-idle))
395
396 $(eval $(call application,tinyproxy,Tinyproxy - HTTP(S)-Proxy configuration,\
397         +PACKAGE_luci-app-tinyproxy:tinyproxy))
398
399 $(eval $(call application,polipo,LuCI Support for the Polipo Proxy,\
400         +PACKAGE_luci-app-polipo:polipo))
401
402 $(eval $(call application,openvpn,LuCI Support for OpenVPN,\
403         +PACKAGE_luci-app-openvpn:openvpn @BROKEN))
404
405 $(eval $(call application,p2pblock,LuCI Support for the Freifunk P2P-Block addon,\
406         luci-app-firewall +PACKAGE_luci-app-p2pblock:freifunk-p2pblock))
407
408 $(eval $(call application,multiwan,LuCI Support for the OpenWrt MultiWAN agent,\
409         luci-app-firewall +PACKAGE_luci-app-multiwan:multiwan))
410
411 $(eval $(call application,wol,LuCI Support for Wake-on-LAN,\
412         +PACKAGE_luci-app-wol:etherwake))
413
414 $(eval $(call application,vnstat,LuCI Support for VnStat,\
415         +PACKAGE_luci-app-vnstat:vnstat \
416     +PACKAGE_luci-app-vnstat:vnstati))
417
418 $(eval $(call application,radvd,LuCI Support for Radvd,\
419         +PACKAGE_luci-app-radvd:radvd))
420
421 $(eval $(call application,ahcp,LuCI Support for AHCPd,\
422         +PACKAGE_luci-app-ahcp:ahcpd))
423
424 $(eval $(call application,wshaper,LuCI Support for wshaper,\
425         +PACKAGE_luci-app-wshaper:wshaper))
426
427 $(eval $(call application,pbx,LuCI PBX Administration,\
428         +PACKAGE_luci-app-pbx:asterisk18 \
429         +PACKAGE_luci-app-pbx:asterisk18-app-authenticate \
430         +PACKAGE_luci-app-pbx:asterisk18-app-disa \
431         +PACKAGE_luci-app-pbx:asterisk18-app-setcallerid \
432         +PACKAGE_luci-app-pbx:asterisk18-app-system \
433         +PACKAGE_luci-app-pbx:asterisk18-chan-gtalk \
434         +PACKAGE_luci-app-pbx:asterisk18-codec-a-mu \
435         +PACKAGE_luci-app-pbx:asterisk18-codec-alaw \
436         +PACKAGE_luci-app-pbx:asterisk18-func-cut \
437         +PACKAGE_luci-app-pbx:asterisk18-res-clioriginate \
438         +PACKAGE_luci-app-pbx:asterisk18-func-channel \
439         +PACKAGE_luci-app-pbx:asterisk18-chan-local \
440         +PACKAGE_luci-app-pbx:asterisk18-app-record \
441         +PACKAGE_luci-app-pbx:asterisk18-app-senddtmf \
442         +PACKAGE_luci-app-pbx:asterisk18-res-crypto))
443
444 $(eval $(call application,pbx-voicemail,LuCI PBX Administration Voicemail Support,\
445         luci-app-pbx +PACKAGE_luci-app-pbx-voicemail:msmtp \
446         +PACKAGE_luci-app-pbx-voicemail:coreutils-base64))
447
448 $(eval $(call application,ltqtapi,Lantiq voip))
449
450 $(eval $(call application,minidlna,LuCI Support for miniDLNA,\
451         +PACKAGE_luci-app-minidlna:minidlna))
452
453 $(eval $(call application,transmission,LuCI Support for Transmission,\
454         +PACKAGE_luci-app-transmission:transmission-daemon))
455
456 $(eval $(call application,watchcat,LuCI Support for Watchcat,\
457         +PACKAGE_luci-app-watchcat:watchcat))
458
459 ### Server Gateway Interfaces ###
460 define sgi
461   define Package/luci-sgi-$(1)
462     SECTION:=luci
463     CATEGORY:=LuCI
464     TITLE:=LuCI - Lua Configuration Interface
465     URL:=http://luci.subsignal.org/
466     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
467     SUBMENU:=7. Server Interfaces
468     TITLE:=$(if $(2),$(2),LuCI $(1) server gateway interface)
469         DEPENDS:=$(3)
470   endef
471
472   define Package/luci-sgi-$(1)/install
473         $(call Package/luci/install/template,$$(1),libs/sgi-$(1))
474   endef
475
476   ifneq ($(CONFIG_PACKAGE_luci-sgi-$(1)),)
477     LUCI_SELECTED_MODULES+=libs/sgi-$(1)
478   endif
479
480   LUCI_BUILD_PACKAGES += luci-sgi-$(1)
481 endef
482
483 $(eval $(call sgi,cgi,CGI Gateway behind existing Webserver))
484 $(eval $(call sgi,uhttpd,Binding for the uHTTPd server,+uhttpd +uhttpd-mod-lua))
485
486
487 ### Themes ###
488 define theme
489   define Package/luci-theme-$(1)
490     SECTION:=luci
491     CATEGORY:=LuCI
492     TITLE:=LuCI - Lua Configuration Interface
493     URL:=http://luci.subsignal.org/
494     SUBMENU:=4. Themes
495     TITLE:=$(if $(2),$(2),LuCI $(1) theme)
496         MAINTAINER:=$(if $(3),$(3),LuCI Development Team <luci@lists.subsignal.org>)
497         DEPENDS:=$(if $(filter-out base,$(1)),+luci-theme-base) $(4)
498         $(if $(5),DEFAULT:=PACKAGE_luci-lib-core)
499   endef
500
501   define Package/luci-theme-$(1)/install
502         $(call Package/luci/install/template,$$(1),themes/$(1))
503   endef
504
505   ifneq ($(CONFIG_PACKAGE_luci-theme-$(1)),)
506     LUCI_SELECTED_MODULES+=themes/$(1)
507   endif
508
509   LUCI_BUILD_PACKAGES += luci-theme-$(1)
510 endef
511
512 $(eval $(call theme,base,Common base for all themes))
513 $(eval $(call theme,openwrt,OpenWrt.org))
514 $(eval $(call theme,bootstrap,Bootstrap Theme (default),,,1))
515
516 $(eval $(call theme,freifunk-bno,Freifunk Berlin Nordost Theme,\
517         Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>))
518
519 $(eval $(call theme,freifunk-generic,Freifunk Generic Theme,\
520         Manuel Munz <freifunk-at-somakoma-dot-de>))
521
522 ### Translations ###
523 define translation
524   define Package/luci-i18n-$(1)
525     SECTION:=luci
526     CATEGORY:=LuCI
527     TITLE:=LuCI - Lua Configuration Interface
528     URL:=http://luci.subsignal.org/
529     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
530     SUBMENU:=5. Translations
531     TITLE:=$(if $(2),$(2),$(1))
532   endef
533
534   define Package/luci-i18n-$(1)/install
535         $(call Package/luci/install/template,$$(1),i18n/$(1))
536   endef
537
538   ifneq ($(CONFIG_PACKAGE_luci-i18n-$(1)),)
539     LUCI_SELECTED_MODULES+=i18n/$(1)
540   endif
541
542   LUCI_BUILD_PACKAGES += luci-i18n-$(1)
543 endef
544
545 $(eval $(call translation,german,German))
546 $(eval $(call translation,english,English))
547 $(eval $(call translation,french,French (by Florian Fainelli)))
548 $(eval $(call translation,italian,Italian (by Matteo Croce)))
549 $(eval $(call translation,russian,Russian (by Skryabin Dmitry)))
550 $(eval $(call translation,portuguese-brazilian,Portuguese (Brazilian) (by Carlos Cesario)))
551 $(eval $(call translation,chinese,Chinese (by Chinese Translators)))
552 $(eval $(call translation,japanese,Japanese (by Tsukasa Hamano)))
553 $(eval $(call translation,greek,Greek (by Vasilis Tsiligiannis)))
554 $(eval $(call translation,catalan,Catalan (by Eduard Duran)))
555 $(eval $(call translation,portuguese,Portuguese (by Jose Monteiro)))
556 $(eval $(call translation,spanish,Spanish (by Guillermo Javier Nardoni)))
557 $(eval $(call translation,vietnamese,Vietnamese (by Hong Phuc Dang)))
558 $(eval $(call translation,malay,Malay (by Teow Wai Chet)))
559 $(eval $(call translation,norwegian,Norwegian (by Lars Hardy)))
560 $(eval $(call translation,hebrew,Hebrew))
561 $(eval $(call translation,romanian,Romanian))
562 $(eval $(call translation,ukrainian,Ukrainian))
563 $(eval $(call translation,hungarian,Hungarian))
564 $(eval $(call translation,polish,Polish))
565
566
567 ### Collections ###
568 define collection
569   define Package/luci$(if $(1),-$(1))
570     SECTION:=luci
571     CATEGORY:=LuCI
572     TITLE:=LuCI - Lua Configuration Interface
573     URL:=http://luci.subsignal.org/
574     MAINTAINER:=LuCI Development Team <luci@lists.subsignal.org>
575     SUBMENU:=1. Collections
576     TITLE:=$(if $(2),$(2),LuCI $(if $(1),$(1),general) collection)
577     $(if $(3),DEPENDS:=$(3))
578   endef
579
580   define Package/luci$(if $(1),-$(1))/install
581         true
582   endef
583
584   LUCI_BUILD_PACKAGES += luci$(if $(1),-$(1))
585 endef
586
587 $(eval $(call collection,,\
588         Standard OpenWrt set including full admin with ppp support and the \
589         default OpenWrt theme,\
590         +uhttpd +uhttpd-mod-ubus +luci-mod-admin-full +luci-theme-bootstrap \
591         +luci-app-firewall +luci-proto-core +luci-proto-ppp +libiwinfo-lua))
592
593 $(eval $(call collection,ssl,\
594         Standard OpenWrt set with HTTPS support,\
595         +luci +libustream-cyassl +px5g))
596
597 $(eval $(call collection,light,\
598         Minimum package set using only admin mini and the standard theme,\
599         +uhttpd +luci-mod-admin-mini +luci-theme-openwrt @BROKEN))
600
601
602 ### Compile ###
603 PKG_CONFIG_DEPENDS=$(patsubst %,CONFIG_PACKAGE_%,$(LUCI_BUILD_PACKAGES))
604
605 include $(INCLUDE_DIR)/package.mk
606
607 define Build/Prepare
608         @if [ ! -x $(LUCI_TOPDIR)/build/mkrevision.sh ]; then \
609                 echo "*** Repository layout changed!" >&2; \
610                 echo "*** Please change the LuCI url in feeds.conf to http://svn.luci.subsignal.org/luci/trunk and reinstall the feed with" >&2; \
611                 echo "*** ./scripts/feeds update luci; ./scripts/feeds install -a -p luci" >&2; \
612                 exit 1; \
613         fi
614         mkdir -p $(PKG_BUILD_DIR)
615         $(TAR) c -C $(LUCI_TOPDIR) . \
616                 --exclude=.pc --exclude=.svn --exclude=.git \
617                 --exclude='boa-0*' --exclude='*.o' --exclude='*.so' \
618                 --exclude=dist | \
619                         tar x -C $(PKG_BUILD_DIR)/
620 endef
621
622 define Build/Configure
623 endef
624
625 MAKE_FLAGS += \
626         MODULES="$(LUCI_SELECTED_MODULES)" \
627         LUA_TARGET="$(LUA_TARGET)" \
628         LUA_SHLIBS="-llua -lm -ldl -lcrypt" \
629         CFLAGS="$(TARGET_CFLAGS) $(LUCI_CFLAGS) -I$(STAGING_DIR)/usr/include" \
630         LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
631         NIXIO_TLS="$(NIXIO_TLS)" OS="Linux"
632
633
634 $(foreach b,$(LUCI_BUILD_PACKAGES),$(eval $(call BuildPackage,$(b))))