1 include $(TOPDIR)/rules.mk
6 USELOCAL:=$(shell grep luci ../../../.project 2>/dev/null >/dev/null && echo 1)
15 PKG_SOURCE_URL:=http://svn.luci.subsignal.org/luci/$(PKG_BRANCH)
17 PKG_REV:=$(shell LC_ALL=C svn info $(CURDIR) | sed -ne's/^Revision: //p')
18 PKG_VERSION:=0.9+svn$(PKG_REV)
20 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
21 PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
23 PKG_SOURCE_VERSION:=$(PKG_REV)
26 PKG_BUILD_DEPENDS:=$(if $(STAGING_DIR_ROOT),lua/host)
27 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
28 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
32 PKG_SELECTED_MODULES:=
34 ifeq ($(BOARD),brcm-2.4)
35 MAKE_FLAGS += CRAP="1"
39 include $(INCLUDE_DIR)/package.mk
43 mkdir -p $(PKG_BUILD_DIR)
44 $(TAR) c -C ../../../ . \
45 --exclude=.pc --exclude=.svn --exclude=.git \
46 --exclude='boa-0*' --exclude='*.o' --exclude='*.so' \
48 tar x -C $(PKG_BUILD_DIR)/
52 define Build/Configure
57 define Package/luci/libtemplate
60 TITLE:=LuCI - Lua Configuration Interface
61 URL:=http://luci.freifunk-halle.net/
62 MAINTAINER:=Steven Barth <steven-at-midlink-dot-org>
63 SUBMENU:=Internal Libraries
67 define Package/luci/webservertemplate
68 $(call Package/luci/libtemplate)
72 define Package/luci/fftemplate
73 $(call Package/luci/libtemplate)
75 DEPENDS:=+luci-mod-freifunk
78 define Package/luci/i18ntemplate
79 $(call Package/luci/libtemplate)
84 define Package/luci/thtemplate
85 $(call Package/luci/libtemplate)
90 define Package/luci/maintemplate
91 $(call Package/luci/libtemplate)
95 define Package/luci/webtemplate
96 $(call Package/luci/libtemplate)
100 define Package/luci/collectiontemplate
101 $(call Package/luci/libtemplate)
106 define Package/luci/install/template
107 $(CP) -a $(PKG_BUILD_DIR)/$(2)/dist/* $(1)/ -R
108 $(CP) -a $(PKG_BUILD_DIR)/$(2)/ipkg/* $(1)/CONTROL/ 2>/dev/null || true
115 define Package/luci-core
116 $(call Package/luci/libtemplate)
117 DEPENDS:=+lua +luci-nixio
118 TITLE:=LuCI core libraries
121 define Package/luci-core/install
122 $(call Package/luci/install/template,$(1),libs/core)
123 $(PKG_BUILD_DIR)/build/mkversion.sh $(1)/usr/lib/lua/luci/version.lua \
125 "$(OPENWRTVERSION)" \
130 define Package/luci-core/config
132 prompt "Build Target"
133 default PACKAGE_luci-core_source
135 config PACKAGE_luci-core_compile
138 config PACKAGE_luci-core_stripped
141 config PACKAGE_luci-core_source
147 ifneq ($(CONFIG_PACKAGE_luci-core_compile),)
151 ifneq ($(CONFIG_PACKAGE_luci-core_stripped),)
155 ifneq ($(CONFIG_PACKAGE_luci-core_zipped),)
161 define Package/luci-cbi
162 $(call Package/luci/libtemplate)
163 DEPENDS+=+luci-web +luci-uvl +luci-uci
164 TITLE:=Configuration Binding Interface
167 define Package/luci-cbi/install
168 $(call Package/luci/install/template,$(1),libs/cbi)
172 define Package/luci-uci
173 $(call Package/luci/libtemplate)
175 TITLE:=High-Level UCI API
178 define Package/luci-uci/install
179 $(call Package/luci/install/template,$(1),libs/uci)
183 define Package/luci-fastindex
184 $(call Package/luci/libtemplate)
185 TITLE:=Fastindex indexing module
188 define Package/luci-fastindex/install
189 $(call Package/luci/install/template,$(1),libs/fastindex)
193 define Package/luci-http
194 $(call Package/luci/libtemplate)
195 TITLE:=HTTP Protocol implementation
198 define Package/luci-http/install
199 $(call Package/luci/install/template,$(1),libs/http)
203 define Package/luci-httpclient
204 $(call Package/luci/libtemplate)
205 TITLE:=HTTP(S) client library
206 DEPENDS+=+luci-http +luci-nixio
209 define Package/luci-httpclient/install
210 $(call Package/luci/install/template,$(1),libs/httpclient)
214 define Package/luci-ipkg
215 $(call Package/luci/libtemplate)
216 TITLE:=LuCI IPKG/OPKG call abstraction library
219 define Package/luci-ipkg/install
220 $(call Package/luci/install/template,$(1),libs/ipkg)
224 define Package/luci-json
225 $(call Package/luci/libtemplate)
226 TITLE:=LuCI JSON Library
229 define Package/luci-json/install
230 $(call Package/luci/install/template,$(1),libs/json)
234 define Package/luci-lmo
235 $(call Package/luci/libtemplate)
239 define Package/luci-lmo/install
240 $(call Package/luci/install/template,$(1),libs/lmo)
244 define Package/luci-luanet
245 $(call Package/luci/libtemplate)
250 define Package/luci-luanet/install
251 $(call Package/luci/install/template,$(1),libs/luanet)
255 define Package/luci-iwinfo
256 $(call Package/luci/libtemplate)
257 TITLE:=Wireless abstration library
260 define Package/luci-iwinfo/install
261 $(call Package/luci/install/template,$(1),libs/iwinfo)
265 define Package/luci-lucid
266 $(call Package/luci/webservertemplate)
267 TITLE:=LuCId Full-Stack Webserver
268 DEPENDS+=+luci-nixio +luci-http +luci-px5g
271 define Package/luci-lucid/install
272 $(call Package/luci/install/template,$(1),libs/lucid)
273 $(call Package/luci/install/template,$(1),libs/lucid-http)
280 define Package/luci-nixio
281 $(call Package/luci/libtemplate)
282 TITLE:=NIXIO POSIX Library
283 DEPENDS:=+PACKAGE_luci-nixio_openssl:libopenssl +PACKAGE_luci-nixio_cyassl:libcyassl
286 define Package/luci-nixio/install
287 $(call Package/luci/install/template,$(1),libs/nixio)
290 define Package/luci-nixio/config
292 prompt "TLS Provider"
293 default PACKAGE_luci-nixio_cyassl
295 config PACKAGE_luci-nixio_axtls
296 bool "Builtin (axTLS)"
298 config PACKAGE_luci-nixio_cyassl
300 select PACKAGE_libcyassl
302 config PACKAGE_luci-nixio_openssl
304 select PACKAGE_libopenssl
308 ifneq ($(CONFIG_PACKAGE_luci-nixio_axtls),)
312 ifneq ($(CONFIG_PACKAGE_luci-nixio_openssl),)
316 ifneq ($(CONFIG_PACKAGE_luci-nixio_cyassl),)
318 LUCI_CFLAGS+=-I$(STAGING_DIR)/usr/include/cyassl
322 define Package/luci-px5g
323 $(call Package/luci/webservertemplate)
324 TITLE:=RSA/X.509 Key Generator (required for LuCId SSL support)
328 define Package/luci-px5g/install
329 $(call Package/luci/install/template,$(1),libs/px5g)
333 define Package/luci-sys
334 $(call Package/luci/libtemplate)
335 TITLE:=LuCI Linux/POSIX system library
336 DEPENDS:=+luci-iwinfo
339 define Package/luci-sys/install
340 $(call Package/luci/install/template,$(1),libs/sys)
344 define Package/luci-web
345 $(call Package/luci/libtemplate)
346 DEPENDS+=+luci-http +luci-sys +luci-nixio +luci-uci \
347 +luci-sgi-cgi +luci-sgi-uhttpd +luci-lmo
348 TITLE:=MVC Webframework
349 $(call Config,luci.main.lang,string,auto,Default Language)
352 define Package/luci-web/conffiles
356 define Package/luci-web/install
357 $(call Package/luci/install/template,$(1),libs/web)
361 define Package/luci-uvl
362 $(call Package/luci/libtemplate)
363 DEPENDS+=+luci-sys +luci-uci +luci-core
364 TITLE:=UVL - UCI Validation Layer
367 define Package/luci-uvl/install
368 $(call Package/luci/install/template,$(1),libs/uvl)
373 ### Community Packages ###
375 define Package/luci-freifunk-community
376 $(call Package/luci/fftemplate)
378 +luci-web +luci-app-splash \
379 +luci-app-ffwizard-leipzig \
381 +PACKAGE_luci-freifunk-community:olsrd-luci +PACKAGE_luci-freifunk-community:olsrd-luci-mod-dyn-gw-plain \
382 +PACKAGE_luci-freifunk-community:olsrd-luci-mod-txtinfo +PACKAGE_luci-freifunk-community:olsrd-luci-mod-nameservice \
383 +PACKAGE_luci-freifunk-community:olsrd-luci-mod-watchdog +PACKAGE_luci-freifunk-community:kmod-tun \
384 +PACKAGE_luci-freifunk-community:ip +PACKAGE_luci-freifunk-community:freifunk-watchdog +luci-app-olsr
385 TITLE:=Freifunk Community Meta-Package
388 define Package/luci-freifunk-community/install
389 $(call Package/luci/install/template,$(1),applications/freifunk-community)
394 define Package/luci-admin-core
395 $(call Package/luci/webtemplate)
396 DEPENDS+=+luci-web +luci-cbi +luci-i18n-english
397 TITLE:=Web UI Core Module
400 define Package/luci-admin-core/install
401 $(call Package/luci/install/template,$(1),modules/admin-core)
402 touch $(1)/etc/init.d/luci_fixtime || true
406 define Package/luci-niu
407 $(call Package/luci/maintemplate)
408 DEPENDS+=+luci-admin-core @BROKEN
409 TITLE:=NIU - Next Generation Interface
412 define Package/luci-niu/install
413 $(call Package/luci/install/template,$(1),modules/niu)
416 define Package/luci-admin-mini
417 $(call Package/luci/webtemplate)
418 DEPENDS+=+luci-admin-core
419 TITLE:=LuCI Essentials - stripped down and user-friendly
422 define Package/luci-admin-mini/install
423 $(call Package/luci/install/template,$(1),modules/admin-mini)
427 define Package/luci-admin-full
428 $(call Package/luci/webtemplate)
429 DEPENDS+=+luci-admin-core +luci-ipkg
430 TITLE:=LuCI Administration - full-featured for full control
433 define Package/luci-admin-full/install
434 $(call Package/luci/install/template,$(1),modules/admin-full)
438 define Package/luci-admin-rpc
439 $(call Package/luci/webtemplate)
441 TITLE:=LuCI RPC - JSON-RPC API
444 define Package/luci-admin-rpc/install
445 $(call Package/luci/install/template,$(1),modules/rpc)
449 define Package/luci-mod-freifunk
450 $(call Package/luci/fftemplate)
451 DEPENDS:=+luci-admin-full +luci-json +PACKAGE_luci-mod-freifunk:freifunk-firewall
452 TITLE:=LuCI Freifunk module
455 define Package/luci-mod-freifunk/conffiles
459 define Package/luci-mod-freifunk/install
460 $(call Package/luci/install/template,$(1),modules/freifunk)
467 define Package/luci-app-ffwizard-leipzig
468 $(call Package/luci/fftemplate)
469 TITLE:=Freifunk Leipzig configuration wizard
472 define Package/luci-app-ffwizard-leipzig/install
473 $(call Package/luci/install/template,$(1),applications/luci-ffwizard-leipzig)
477 define Package/luci-app-siitwizard
478 $(call Package/luci/fftemplate)
479 TITLE:=SIIT IPv4-over-IPv6 configuration wizard
480 DEPENDS:=+luci-admin-core +PACKAGE_luci-app-siitwizard:kmod-siit
483 define Package/luci-app-siitwizard/install
484 $(call Package/luci/install/template,$(1),applications/luci-siitwizard)
488 define Package/luci-app-firewall
489 $(call Package/luci/webtemplate)
490 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-firewall:firewall
491 TITLE:=Firewall and Portforwarding application
494 define Package/luci-app-firewall/install
495 $(call Package/luci/install/template,$(1),applications/luci-fw)
499 define Package/luci-app-olsr
500 $(call Package/luci/webtemplate)
501 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-olsr:olsrd-luci \
502 +PACKAGE_luci-app-olsr:olsrd-luci-mod-txtinfo
503 TITLE:=OLSR configuration and status module
506 define Package/luci-app-olsr/install
507 $(call Package/luci/install/template,$(1),applications/luci-olsr)
511 define Package/luci-app-qos
512 $(call Package/luci/webtemplate)
513 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-qos:qos-scripts
514 TITLE:=Quality of Service configuration module
517 define Package/luci-app-qos/install
518 $(call Package/luci/install/template,$(1),applications/luci-qos)
522 define Package/luci-app-splash
523 $(call Package/luci/fftemplate)
524 DEPENDS+=+PACKAGE_luci-app-splash:luci-nixio \
525 +PACKAGE_luci-app-splash:tc +PACKAGE_luci-app-splash:kmod-sched \
526 +PACKAGE_luci-app-splash:iptables-mod-nat-extra \
527 +PACKAGE_luci-app-splash:iptables-mod-ipopt
528 TITLE:=Freifunk DHCP-Splash application
531 define Package/luci-app-splash/conffiles
532 /etc/config/luci_splash
535 define Package/luci-app-splash/install
536 $(call Package/luci/install/template,$(1),applications/luci-splash)
540 define Package/luci-app-statistics
541 $(call Package/luci/webtemplate)
542 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-statistics:collectd \
543 +PACKAGE_luci-app-statistics:rrdtool1 \
544 +PACKAGE_luci-app-statistics:collectd-mod-rrdtool \
545 +PACKAGE_luci-app-statistics:collectd-mod-wireless \
546 +PACKAGE_luci-app-statistics:collectd-mod-interface \
547 +PACKAGE_luci-app-statistics:collectd-mod-load
548 TITLE:=LuCI Statistics Application
551 define Package/luci-app-statistics/conffiles
552 /etc/config/luci_statistics
555 define Package/luci-app-statistics/install
556 $(call Package/luci/install/template,$(1),applications/luci-statistics)
559 define Package/luci-app-diag-core
560 $(call Package/luci/webtemplate)
561 DEPENDS+=+luci-admin-core
562 TITLE:=LuCI Diagnostics Tools (Core)
565 define Package/luci-app-diag-devinfo
566 $(call Package/luci/webtemplate)
567 DEPENDS+=+PACKAGE_luci-app-diag-devinfo:luci-app-diag-core \
568 +PACKAGE_luci-app-diag-devinfo:smap \
569 +PACKAGE_luci-app-diag-devinfo:netdiscover \
570 +PACKAGE_luci-app-diag-devinfo:mac-to-devinfo \
571 +PACKAGE_luci-app-diag-devinfo:httping \
572 +PACKAGE_luci-app-diag-devinfo:smap-to-devinfo \
573 +PACKAGE_luci-app-diag-devinfo:netdiscover-to-devinfo
574 TITLE:=LuCI Diagnostics Tools (Device Info)
577 define Package/luci-app-voice-core
578 $(call Package/luci/webtemplate)
579 DEPENDS+=+luci-admin-core
580 TITLE:=LuCI Voice Software (Core)
583 define Package/luci-app-voice-diag
584 $(call Package/luci/webtemplate)
585 DEPENDS+=+PACKAGE_luci-app-voice-diag:luci-app-voice-core \
586 +PACKAGE_luci-app-voice-diag:luci-app-diag-devinfo
587 TITLE:=LuCI Voice Software (Diagnostics)
590 define Package/luci-app-diag-devinfo/conffiles
591 /etc/config/luci_devinfo
594 define Package/luci-app-diag-core/install
595 $(call Package/luci/install/template,$(1),applications/luci-diag-core)
598 define Package/luci-app-diag-devinfo/install
599 $(call Package/luci/install/template,$(1),applications/luci-diag-devinfo)
602 define Package/luci-app-voice-core/install
603 $(call Package/luci/install/template,$(1),applications/luci-voice-core)
606 define Package/luci-app-voice-diag/install
607 $(call Package/luci/install/template,$(1),applications/luci-voice-diag)
610 define Package/luci-app-upnp
611 $(call Package/luci/webtemplate)
612 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-upnp:miniupnpd
613 TITLE:=Universal Plug & Play configuration module
616 define Package/luci-app-upnp/install
617 $(call Package/luci/install/template,$(1),applications/luci-upnp)
621 define Package/luci-app-ntpc
622 $(call Package/luci/webtemplate)
623 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-ntpc:ntpclient
624 TITLE:=NTP time synchronisation client configuration module
627 define Package/luci-app-ntpc/install
628 $(call Package/luci/install/template,$(1),applications/luci-ntpc)
632 define Package/luci-app-ddns
633 $(call Package/luci/webtemplate)
634 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-ddns:ddns-scripts
635 TITLE:=Dynamic DNS configuration module
638 define Package/luci-app-ddns/install
639 $(call Package/luci/install/template,$(1),applications/luci-ddns)
643 define Package/luci-app-samba
644 $(call Package/luci/webtemplate)
645 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-samba:samba3
646 TITLE:=Network Shares - Samba SMB/CIFS module
649 define Package/luci-app-samba/install
650 $(call Package/luci/install/template,$(1),applications/luci-samba)
654 define Package/luci-app-mmc-over-gpio
655 $(call Package/luci/webtemplate)
656 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-mmc-over-gpio:kmod-mmc-over-gpio
660 define Package/luci-app-mmc-over-gpio/install
661 $(call Package/luci/install/template,$(1),applications/luci-mmc-over-gpio)
665 define Package/luci-app-p910nd
666 $(call Package/luci/webtemplate)
667 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-p910nd:p910nd
668 TITLE:=p910nd - Printer server module
671 define Package/luci-app-p910nd/install
672 $(call Package/luci/install/template,$(1),applications/luci-p910nd)
676 define Package/luci-app-ushare
677 $(call Package/luci/webtemplate)
678 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-ushare:ushare
679 TITLE:=ushare - UPnP A/V & DLNA Media Server
682 define Package/luci-app-ushare/install
683 $(call Package/luci/install/template,$(1),applications/luci-ushare)
686 define Package/luci-app-hd-idle
687 $(call Package/luci/webtemplate)
688 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-hd-idle:hd-idle
692 define Package/luci-app-hd-idle/install
693 $(call Package/luci/install/template,$(1),applications/luci-hd-idle)
696 define Package/luci-app-tinyproxy
697 $(call Package/luci/webtemplate)
698 DEPENDS+=+luci-admin-full +PACKAGE_luci-app-tinyproxy:tinyproxy
699 TITLE:=Tinyproxy - HTTP(S)-Proxy
702 define Package/luci-app-tinyproxy/install
703 $(call Package/luci/install/template,$(1),applications/luci-tinyproxy)
706 define Package/luci-app-initmgr
707 $(call Package/luci/webtemplate)
708 DEPENDS+=+luci-admin-full
709 TITLE:=LuCI Initscript Management
712 define Package/luci-app-initmgr/install
713 $(call Package/luci/install/template,$(1),applications/luci-initmgr)
716 define Package/luci-app-livestats
717 $(call Package/luci/webtemplate)
718 DEPENDS+=+luci-admin-core +luci-admin-rpc
719 TITLE:=LuCI Realtime Statistics
722 define Package/luci-app-livestats/install
723 $(call Package/luci/install/template,$(1),applications/luci-livestats)
726 define Package/luci-app-asterisk
727 $(call Package/luci/webtemplate)
728 TITLE:=LuCI Support for Asterisk PBX
729 DEPENDS+=@BROKEN +luci-admin-core +PACKAGE_luci-app-asterisk:asterisk14-xip-core
732 define Package/luci-app-asterisk/install
733 $(call Package/luci/install/template,$(1),applications/luci-asterisk)
736 define Package/luci-app-polipo
737 $(call Package/luci/webtemplate)
738 TITLE:=LuCI Support for the Polipo Proxy
739 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-polipo:polipo
742 define Package/luci-app-polipo/install
743 $(call Package/luci/install/template,$(1),applications/luci-polipo)
746 define Package/luci-app-openvpn
747 $(call Package/luci/webtemplate)
748 TITLE:=LuCI Support for OpenVPN
749 DEPENDS+=+luci-admin-core +PACKAGE_luci-app-openvpn:openvpn
752 define Package/luci-app-openvpn/install
753 $(call Package/luci/install/template,$(1),applications/luci-openvpn)
756 define Package/luci-app-p2pblock
757 $(call Package/luci/webtemplate)
758 TITLE:=LuCI Support for the Freifunk P2P-Block addon
759 DEPENDS+=+luci-admin-core +luci-app-firewall \
760 +PACKAGE_luci-app-p2pblock:freifunk-p2pblock
763 define Package/luci-app-p2pblock/install
764 $(call Package/luci/install/template,$(1),applications/luci-p2pblock)
768 ### Server Gateway Interfaces ###
770 define Package/luci-sgi-cgi
771 $(call Package/luci/webservertemplate)
772 TITLE:=CGI Gateway behind existing Webserver
775 define Package/luci-sgi-cgi/install
776 $(call Package/luci/install/template,$(1),libs/sgi-cgi)
779 define Package/luci-sgi-uhttpd
780 $(call Package/luci/webservertemplate)
781 TITLE:=Binding for the uHTTPd server
782 DEPENDS+=+uhttpd +uhttpd-mod-tls +uhttpd-mod-lua +px5g
785 define Package/luci-sgi-uhttpd/install
786 $(call Package/luci/install/template,$(1),libs/sgi-uhttpd)
791 define Package/luci-theme-base
792 $(call Package/luci/thtemplate)
794 TITLE:=Common base for all themes
797 define Package/luci-theme-base/install
798 $(call Package/luci/install/template,$(1),themes/base)
801 define Package/luci-theme-fledermaus
802 $(call Package/luci/fftemplate)
804 TITLE:=Fledermaus Theme
807 define Package/luci-theme-fledermaus/install
808 $(call Package/luci/install/template,$(1),themes/fledermaus)
811 define Package/luci-theme-freifunk
812 $(call Package/luci/fftemplate)
814 MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
815 TITLE:=alternative Freifunk Theme
818 define Package/luci-theme-freifunk/install
819 $(call Package/luci/install/template,$(1),themes/freifunk)
822 define Package/luci-theme-freifunk-bno
823 $(call Package/luci/fftemplate)
825 MAINTAINER:=Stefan Pirwitz <stefan-at-freifunk-bno-dot-de>
826 TITLE:=Freifunk Berlin Nordost Theme
829 define Package/luci-theme-freifunk-bno/install
830 $(call Package/luci/install/template,$(1),themes/freifunk-bno)
833 define Package/luci-theme-freifunk-hannover
834 $(call Package/luci/fftemplate)
836 MAINTAINER:=Mikolas Bingemer <mickey-at-freifunk-hannover-dot-de>
837 TITLE:=Freifunk Hannover Theme
840 define Package/luci-theme-freifunk-hannover/install
841 $(call Package/luci/install/template,$(1),themes/freifunk-hannover)
844 define Package/luci-theme-openwrt
845 $(call Package/luci/thtemplate)
846 TITLE:=OpenWrt.org (default)
847 DEPENDS:=+luci-theme-base luci-core
848 DEFAULT:=y if PACKAGE_luci-core
851 define Package/luci-theme-openwrt/install
852 $(call Package/luci/install/template,$(1),themes/openwrt.org)
855 define Package/luci-theme-openwrtlight
856 $(call Package/luci/thtemplate)
857 TITLE:=OpenWrt.org - light variant without images
858 DEPENDS:=+luci-theme-base
861 define Package/luci-theme-openwrtlight/install
862 $(call Package/luci/install/template,$(1),themes/openwrt-light)
867 define Package/luci-i18n-german
868 $(call Package/luci/i18ntemplate)
872 define Package/luci-i18n-german/install
873 $(call Package/luci/install/template,$(1),i18n/german)
877 define Package/luci-i18n-english
878 $(call Package/luci/i18ntemplate)
882 define Package/luci-i18n-english/install
883 $(call Package/luci/install/template,$(1),i18n/english)
887 define Package/luci-i18n-french
888 $(call Package/luci/i18ntemplate)
889 TITLE:=French (by Florian Fainelli)
892 define Package/luci-i18n-french/install
893 $(call Package/luci/install/template,$(1),i18n/french)
897 define Package/luci-i18n-italian
898 $(call Package/luci/i18ntemplate)
899 TITLE:=Italian (by Matteo Croce)
902 define Package/luci-i18n-italian/install
903 $(call Package/luci/install/template,$(1),i18n/italian)
907 define Package/luci-i18n-russian
908 $(call Package/luci/i18ntemplate)
909 TITLE:=Russian (by Skryabin Dmitry)
912 define Package/luci-i18n-russian/install
913 $(call Package/luci/install/template,$(1),i18n/russian)
917 define Package/luci-i18n-portuguese_brazilian
918 $(call Package/luci/i18ntemplate)
919 TITLE:=Portuguese (Brazilian) (by Carlos Cesario)
922 define Package/luci-i18n-portuguese_brazilian/install
923 $(call Package/luci/install/template,$(1),i18n/portuguese_brazilian)
927 define Package/luci-i18n-japanese
928 $(call Package/luci/i18ntemplate)
929 TITLE:=Japanese (by Tsukasa Hamano)
932 define Package/luci-i18n-japanese/install
933 $(call Package/luci/install/template,$(1),i18n/japanese)
937 define Package/luci-i18n-greek
938 $(call Package/luci/i18ntemplate)
939 TITLE:=Greek (by Vasilis Tsiligiannis)
942 define Package/luci-i18n-greek/install
943 $(call Package/luci/install/template,$(1),i18n/greek)
947 define Package/luci-i18n-catalan
948 $(call Package/luci/i18ntemplate)
949 TITLE:=Catalan (by Eduard Duran)
952 define Package/luci-i18n-catalan/install
953 $(call Package/luci/install/template,$(1),i18n/catalan)
957 define Package/luci-i18n-portuguese
958 $(call Package/luci/i18ntemplate)
959 TITLE:=Portuguese (by Jose Monteiro)
962 define Package/luci-i18n-portuguese/install
963 $(call Package/luci/install/template,$(1),i18n/portuguese)
967 define Package/luci-i18n-spanish
968 $(call Package/luci/i18ntemplate)
969 TITLE:=Spanish (by Guillermo Javier Nardoni)
972 define Package/luci-i18n-spanish/install
973 $(call Package/luci/install/template,$(1),i18n/spanish)
977 define Package/luci-i18n-vietnamese
978 $(call Package/luci/i18ntemplate)
979 TITLE:=Vietnamese (by Hong Phuc Dang)
982 define Package/luci-i18n-vietnamese/install
983 $(call Package/luci/install/template,$(1),i18n/vietnamese)
989 $(call Package/luci/collectiontemplate)
990 TITLE:=Standard OpenWrt Kamikaze set including full and mini admin and the standard theme
991 DEPENDS:=+luci-admin-full +luci-admin-mini +luci-theme-openwrt +luci-app-firewall +luci-app-initmgr
994 define Package/luci/install
999 define Package/luci-light
1000 $(call Package/luci/collectiontemplate)
1001 TITLE:=Minimum package set using only admin mini and a theme without grafics
1002 DEPENDS:=+luci-admin-mini +luci-theme-openwrtlight
1005 define Package/luci-light/install
1011 ifneq ($(CONFIG_PACKAGE_luci-core),)
1012 PKG_SELECTED_MODULES+=libs/core
1014 ifneq ($(CONFIG_PACKAGE_luci-cbi),)
1015 PKG_SELECTED_MODULES+=libs/cbi
1017 ifneq ($(CONFIG_PACKAGE_luci-fastindex),)
1018 PKG_SELECTED_MODULES+=libs/fastindex
1020 ifneq ($(CONFIG_PACKAGE_luci-http),)
1021 PKG_SELECTED_MODULES+=libs/http
1023 ifneq ($(CONFIG_PACKAGE_luci-httpclient),)
1024 PKG_SELECTED_MODULES+=libs/httpclient
1026 ifneq ($(CONFIG_PACKAGE_luci-ipkg),)
1027 PKG_SELECTED_MODULES+=libs/ipkg
1029 ifneq ($(CONFIG_PACKAGE_luci-json),)
1030 PKG_SELECTED_MODULES+=libs/json
1032 ifneq ($(CONFIG_PACKAGE_luci-lmo),)
1033 PKG_SELECTED_MODULES+=libs/lmo
1035 ifneq ($(CONFIG_PACKAGE_luci-luanet),)
1036 PKG_SELECTED_MODULES+=libs/luanet
1038 ifneq ($(CONFIG_PACKAGE_luci-iwinfo),)
1039 PKG_SELECTED_MODULES+=libs/iwinfo
1041 ifneq ($(CONFIG_PACKAGE_luci-lucid),)
1042 PKG_SELECTED_MODULES+=libs/lucid libs/lucid-http
1044 ifneq ($(CONFIG_PACKAGE_luci-nixio),)
1045 PKG_SELECTED_MODULES+=libs/nixio
1047 ifneq ($(CONFIG_PACKAGE_luci-px5g),)
1048 PKG_SELECTED_MODULES+=libs/px5g
1050 ifneq ($(CONFIG_PACKAGE_luci-uci),)
1051 PKG_SELECTED_MODULES+=libs/uci
1053 ifneq ($(CONFIG_PACKAGE_luci-sys),)
1054 PKG_SELECTED_MODULES+=libs/sys
1056 ifneq ($(CONFIG_PACKAGE_luci-web),)
1057 PKG_SELECTED_MODULES+=libs/web
1059 ifneq ($(CONFIG_PACKAGE_luci-uvl),)
1060 PKG_SELECTED_MODULES+=libs/uvl
1063 ifneq ($(CONFIG_PACKAGE_luci-admin-core),)
1064 PKG_SELECTED_MODULES+=modules/admin-core
1066 ifneq ($(CONFIG_PACKAGE_luci-admin-mini),)
1067 PKG_SELECTED_MODULES+=modules/admin-mini
1069 ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
1070 PKG_SELECTED_MODULES+=modules/admin-full
1072 ifneq ($(CONFIG_PACKAGE_luci-niu),)
1073 PKG_SELECTED_MODULES+=modules/niu
1075 ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
1076 PKG_SELECTED_MODULES+=modules/rpc
1078 ifneq ($(CONFIG_PACKAGE_luci-mod-freifunk),)
1079 PKG_SELECTED_MODULES+=modules/freifunk
1082 ifneq ($(CONFIG_PACKAGE_luci-freifunk-community),)
1083 PKG_SELECTED_MODULES+=applications/freifunk-community
1086 ifneq ($(CONFIG_PACKAGE_luci-app-ffwizard-leipzig),)
1087 PKG_SELECTED_MODULES+=applications/luci-ffwizard-leipzig
1089 ifneq ($(CONFIG_PACKAGE_luci-app-siitwizard),)
1090 PKG_SELECTED_MODULES+=applications/luci-siitwizard
1092 ifneq ($(CONFIG_PACKAGE_luci-app-firewall),)
1093 PKG_SELECTED_MODULES+=applications/luci-fw
1095 ifneq ($(CONFIG_PACKAGE_luci-app-olsr),)
1096 PKG_SELECTED_MODULES+=applications/luci-olsr
1098 ifneq ($(CONFIG_PACKAGE_luci-app-qos),)
1099 PKG_SELECTED_MODULES+=applications/luci-qos
1101 ifneq ($(CONFIG_PACKAGE_luci-app-splash),)
1102 PKG_SELECTED_MODULES+=applications/luci-splash
1104 ifneq ($(CONFIG_PACKAGE_luci-app-statistics),)
1105 PKG_SELECTED_MODULES+=applications/luci-statistics
1107 ifneq ($(CONFIG_PACKAGE_luci-app-voice-core),)
1108 PKG_SELECTED_MODULES+=applications/luci-voice-core
1110 ifneq ($(CONFIG_PACKAGE_luci-app-voice-diag),)
1111 PKG_SELECTED_MODULES+=applications/luci-voice-diag
1113 ifneq ($(CONFIG_PACKAGE_luci-app-diag-core),)
1114 PKG_SELECTED_MODULES+=applications/luci-diag-core
1116 ifneq ($(CONFIG_PACKAGE_luci-app-diag-devinfo),)
1117 PKG_SELECTED_MODULES+=applications/luci-diag-devinfo
1119 ifneq ($(CONFIG_PACKAGE_luci-app-upnp),)
1120 PKG_SELECTED_MODULES+=applications/luci-upnp
1122 ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),)
1123 PKG_SELECTED_MODULES+=applications/luci-ntpc
1125 ifneq ($(CONFIG_PACKAGE_luci-app-ddns),)
1126 PKG_SELECTED_MODULES+=applications/luci-ddns
1128 ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
1129 PKG_SELECTED_MODULES+=applications/luci-samba
1131 ifneq ($(CONFIG_PACKAGE_luci-app-mmc-over-gpio),)
1132 PKG_SELECTED_MODULES+=applications/luci-mmc-over-gpio
1134 ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
1135 PKG_SELECTED_MODULES+=applications/luci-p910nd
1137 ifneq ($(CONFIG_PACKAGE_luci-app-ushare),)
1138 PKG_SELECTED_MODULES+=applications/luci-ushare
1140 ifneq ($(CONFIG_PACKAGE_luci-app-hd-idle),)
1141 PKG_SELECTED_MODULES+=applications/luci-hd-idle
1143 ifneq ($(CONFIG_PACKAGE_luci-app-tinyproxy),)
1144 PKG_SELECTED_MODULES+=applications/luci-tinyproxy
1146 ifneq ($(CONFIG_PACKAGE_luci-app-initmgr),)
1147 PKG_SELECTED_MODULES+=applications/luci-initmgr
1149 ifneq ($(CONFIG_PACKAGE_luci-app-livestats),)
1150 PKG_SELECTED_MODULES+=applications/luci-livestats
1152 ifneq ($(CONFIG_PACKAGE_luci-app-asterisk),)
1153 PKG_SELECTED_MODULES+=applications/luci-asterisk
1155 ifneq ($(CONFIG_PACKAGE_luci-app-polipo),)
1156 PKG_SELECTED_MODULES+=applications/luci-polipo
1158 ifneq ($(CONFIG_PACKAGE_luci-app-openvpn),)
1159 PKG_SELECTED_MODULES+=applications/luci-openvpn
1161 ifneq ($(CONFIG_PACKAGE_luci-app-p2pblock),)
1162 PKG_SELECTED_MODULES+=applications/luci-p2pblock
1166 ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
1167 PKG_SELECTED_MODULES+=libs/sgi-cgi
1169 ifneq ($(CONFIG_PACKAGE_luci-sgi-uhttpd),)
1170 PKG_SELECTED_MODULES+=libs/sgi-uhttpd
1172 ifneq ($(CONFIG_PACKAGE_luci-sgi-luci),)
1173 PKG_SELECTED_MODULES+=libs/sgi-luci
1176 ifneq ($(CONFIG_PACKAGE_luci-theme-base),)
1177 PKG_SELECTED_MODULES+=themes/base
1179 ifneq ($(CONFIG_PACKAGE_luci-theme-fledermaus),)
1180 PKG_SELECTED_MODULES+=themes/fledermaus
1182 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-bno),)
1183 PKG_SELECTED_MODULES+=themes/freifunk-bno
1185 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk-hannover),)
1186 PKG_SELECTED_MODULES+=themes/freifunk-hannover
1188 ifneq ($(CONFIG_PACKAGE_luci-theme-freifunk),)
1189 PKG_SELECTED_MODULES+=themes/freifunk
1191 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrt),)
1192 PKG_SELECTED_MODULES+=themes/openwrt.org
1194 ifneq ($(CONFIG_PACKAGE_luci-theme-openwrtlight),)
1195 PKG_SELECTED_MODULES+=themes/openwrt-light
1198 ifneq ($(CONFIG_PACKAGE_luci-i18n-german),)
1199 PKG_SELECTED_MODULES+=i18n/german
1201 ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
1202 PKG_SELECTED_MODULES+=i18n/english
1204 ifneq ($(CONFIG_PACKAGE_luci-i18n-french),)
1205 PKG_SELECTED_MODULES+=i18n/french
1207 ifneq ($(CONFIG_PACKAGE_luci-i18n-italian),)
1208 PKG_SELECTED_MODULES+=i18n/italian
1210 ifneq ($(CONFIG_PACKAGE_luci-i18n-russian),)
1211 PKG_SELECTED_MODULES+=i18n/russian
1213 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese_brazilian),)
1214 PKG_SELECTED_MODULES+=i18n/portuguese_brazilian
1216 ifneq ($(CONFIG_PACKAGE_luci-i18n-japanese),)
1217 PKG_SELECTED_MODULES+=i18n/japanese
1219 ifneq ($(CONFIG_PACKAGE_luci-i18n-greek),)
1220 PKG_SELECTED_MODULES+=i18n/greek
1222 ifneq ($(CONFIG_PACKAGE_luci-i18n-catalan),)
1223 PKG_SELECTED_MODULES+=i18n/catalan
1225 ifneq ($(CONFIG_PACKAGE_luci-i18n-portuguese),)
1226 PKG_SELECTED_MODULES+=i18n/portuguese
1228 ifneq ($(CONFIG_PACKAGE_luci-i18n-spanish),)
1229 PKG_SELECTED_MODULES+=i18n/spanish
1231 ifneq ($(CONFIG_PACKAGE_luci-i18n-vietnamese),)
1232 PKG_SELECTED_MODULES+=i18n/vietnamese
1237 MODULES="$(PKG_SELECTED_MODULES)" \
1238 LUA_TARGET="$(LUA_TARGET)" \
1239 LUA_SHLIBS="-llua -lm -ldl -lcrypt" \
1240 CFLAGS="$(TARGET_CFLAGS) $(LUCI_CFLAGS) -I$(STAGING_DIR)/usr/include" \
1241 LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib" \
1242 NIXIO_TLS="$(NIXIO_TLS)" OS="Linux"
1245 $(eval $(call BuildPackage,luci-core))
1246 $(eval $(call BuildPackage,luci-cbi))
1247 $(eval $(call BuildPackage,luci-fastindex))
1248 $(eval $(call BuildPackage,luci-http))
1249 $(eval $(call BuildPackage,luci-httpclient))
1250 $(eval $(call BuildPackage,luci-ipkg))
1251 $(eval $(call BuildPackage,luci-json))
1252 $(eval $(call BuildPackage,luci-lmo))
1253 $(eval $(call BuildPackage,luci-luanet))
1254 $(eval $(call BuildPackage,luci-iwinfo))
1255 $(eval $(call BuildPackage,luci-lucid))
1256 $(eval $(call BuildPackage,luci-nixio))
1257 $(eval $(call BuildPackage,luci-px5g))
1258 $(eval $(call BuildPackage,luci-uci))
1259 $(eval $(call BuildPackage,luci-sys))
1260 $(eval $(call BuildPackage,luci-web))
1261 $(eval $(call BuildPackage,luci-uvl))
1263 $(eval $(call BuildPackage,luci-admin-core))
1264 $(eval $(call BuildPackage,luci-admin-mini))
1265 $(eval $(call BuildPackage,luci-admin-full))
1266 $(eval $(call BuildPackage,luci-niu))
1267 $(eval $(call BuildPackage,luci-admin-rpc))
1268 $(eval $(call BuildPackage,luci-mod-freifunk))
1270 $(eval $(call BuildPackage,luci-freifunk-community))
1272 $(eval $(call BuildPackage,luci-app-ffwizard-leipzig))
1273 $(eval $(call BuildPackage,luci-app-siitwizard))
1274 $(eval $(call BuildPackage,luci-app-firewall))
1275 $(eval $(call BuildPackage,luci-app-olsr))
1276 $(eval $(call BuildPackage,luci-app-qos))
1277 $(eval $(call BuildPackage,luci-app-splash))
1278 $(eval $(call BuildPackage,luci-app-statistics))
1279 $(eval $(call BuildPackage,luci-app-diag-core))
1280 $(eval $(call BuildPackage,luci-app-diag-devinfo))
1281 $(eval $(call BuildPackage,luci-app-voice-core))
1282 $(eval $(call BuildPackage,luci-app-voice-diag))
1283 $(eval $(call BuildPackage,luci-app-upnp))
1284 $(eval $(call BuildPackage,luci-app-ntpc))
1285 $(eval $(call BuildPackage,luci-app-ddns))
1286 $(eval $(call BuildPackage,luci-app-samba))
1287 $(eval $(call BuildPackage,luci-app-mmc-over-gpio))
1288 $(eval $(call BuildPackage,luci-app-p910nd))
1289 $(eval $(call BuildPackage,luci-app-ushare))
1290 $(eval $(call BuildPackage,luci-app-hd-idle))
1291 $(eval $(call BuildPackage,luci-app-tinyproxy))
1292 $(eval $(call BuildPackage,luci-app-initmgr))
1293 $(eval $(call BuildPackage,luci-app-livestats))
1294 $(eval $(call BuildPackage,luci-app-asterisk))
1295 $(eval $(call BuildPackage,luci-app-polipo))
1296 $(eval $(call BuildPackage,luci-app-openvpn))
1297 $(eval $(call BuildPackage,luci-app-p2pblock))
1299 $(eval $(call BuildPackage,luci-sgi-cgi))
1300 $(eval $(call BuildPackage,luci-sgi-uhttpd))
1302 $(eval $(call BuildPackage,luci-theme-base))
1303 $(eval $(call BuildPackage,luci-theme-fledermaus))
1304 $(eval $(call BuildPackage,luci-theme-freifunk))
1305 $(eval $(call BuildPackage,luci-theme-freifunk-bno))
1306 $(eval $(call BuildPackage,luci-theme-freifunk-hannover))
1307 $(eval $(call BuildPackage,luci-theme-openwrt))
1308 $(eval $(call BuildPackage,luci-theme-openwrtlight))
1310 $(eval $(call BuildPackage,luci-i18n-german))
1311 $(eval $(call BuildPackage,luci-i18n-english))
1312 $(eval $(call BuildPackage,luci-i18n-french))
1313 $(eval $(call BuildPackage,luci-i18n-italian))
1314 $(eval $(call BuildPackage,luci-i18n-russian))
1315 $(eval $(call BuildPackage,luci-i18n-portuguese_brazilian))
1316 $(eval $(call BuildPackage,luci-i18n-japanese))
1317 $(eval $(call BuildPackage,luci-i18n-greek))
1318 $(eval $(call BuildPackage,luci-i18n-catalan))
1319 $(eval $(call BuildPackage,luci-i18n-portuguese))
1320 $(eval $(call BuildPackage,luci-i18n-spanish))
1321 $(eval $(call BuildPackage,luci-i18n-vietnamese))
1323 $(eval $(call BuildPackage,luci))
1324 $(eval $(call BuildPackage,luci-light))