mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-14 07:28:28 +02:00
Added mini-http-htpasswd package, closes request #251
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3129 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b170badffd
commit
0796bca534
@ -31,6 +31,14 @@ config BR2_PACKAGE_MINI_HTTPD
|
|||||||
|
|
||||||
http://www.acme.com/software/mini_httpd/
|
http://www.acme.com/software/mini_httpd/
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MINI_HTTPD_HTPASSWD
|
||||||
|
prompt "mini-httpd-htpasswd............... Utility to generate HTTP access files"
|
||||||
|
tristate
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
select BR2_PACKAGE_MINI_HTTPD
|
||||||
|
help
|
||||||
|
This file generates .htaccess/.htpasswd files to use HTTP access authentication
|
||||||
|
|
||||||
config BR2_PACKAGE_MINI_HTTPD_MATRIXSSL
|
config BR2_PACKAGE_MINI_HTTPD_MATRIXSSL
|
||||||
prompt "mini-httpd-matrixssl.............. A small web server, built with SSL support using MatrixSSL"
|
prompt "mini-httpd-matrixssl.............. A small web server, built with SSL support using MatrixSSL"
|
||||||
tristate
|
tristate
|
||||||
|
@ -16,6 +16,7 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/mini_httpd-$(PKG_VERSION)
|
|||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
$(eval $(call PKG_template,MINI_HTTPD,mini-httpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
$(eval $(call PKG_template,MINI_HTTPD,mini-httpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,MINI_HTTPD_HTPASSWD,mini-httpd-htpasswd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
$(eval $(call PKG_template,MINI_HTTPD_MATRIXSSL,mini-httpd-matrixssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
$(eval $(call PKG_template,MINI_HTTPD_MATRIXSSL,mini-httpd-matrixssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
$(eval $(call PKG_template,MINI_HTTPD_OPENSSL,mini-httpd-openssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
$(eval $(call PKG_template,MINI_HTTPD_OPENSSL,mini-httpd-openssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
@ -71,6 +72,12 @@ $(IPKG_MINI_HTTPD):
|
|||||||
$(RSTRIP) $(IDIR_MINI_HTTPD)
|
$(RSTRIP) $(IDIR_MINI_HTTPD)
|
||||||
$(IPKG_BUILD) $(IDIR_MINI_HTTPD) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_MINI_HTTPD) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
$(IPKG_MINI_HTTPD_HTPASSWD):
|
||||||
|
install -d -m0755 $(IDIR_MINI_HTTPD_HTPASSWD)/usr/sbin
|
||||||
|
install -m0755 $(PKG_BUILD_DIR)/htpasswd $(IDIR_MINI_HTTPD_HTPASSWD)/usr/sbin/
|
||||||
|
$(RSTRIP) $(IDIR_MINI_HTTPD_HTPASSWD)
|
||||||
|
$(IPKG_BUILD) $(IDIR_MINI_HTTPD_HTPASSWD) $(PACKAGE_DIR)
|
||||||
|
|
||||||
$(IPKG_MINI_HTTPD_MATRIXSSL):
|
$(IPKG_MINI_HTTPD_MATRIXSSL):
|
||||||
install -d -m0755 $(IDIR_MINI_HTTPD_MATRIXSSL)/etc
|
install -d -m0755 $(IDIR_MINI_HTTPD_MATRIXSSL)/etc
|
||||||
install -m0644 ./files/mini_httpd-ssl.conf $(IDIR_MINI_HTTPD_MATRIXSSL)/etc/mini_httpd.conf
|
install -m0644 ./files/mini_httpd-ssl.conf $(IDIR_MINI_HTTPD_MATRIXSSL)/etc/mini_httpd.conf
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
Package: mini-httpd-htpasswd
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Description: utility to generate HTTP access authentication files
|
Loading…
Reference in New Issue
Block a user