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