fix numerous typos in Makefile

git-svn-id: svn://svn.openwrt.org/openwrt/packages@4574 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2006-08-16 23:52:14 +00:00
parent c7d053f574
commit 3b576c8cef

View File

@ -48,56 +48,24 @@ endef
define Package/mini-httpd-htpasswd define Package/mini-httpd-htpasswd
$(call Package/mini-httpd) $(call Package/mini-httpd)
TITLE:=Utility to generate HTTP access files TITLE:=Utility to generate HTTP access files
DESCRIPTION:=This file generates .htaccess/.htpasswd files to use HTTP access authentication\\\ DESCRIPTION+=This package generates .htaccess/.htpasswd files to use HTTP access authentication
endef endef
define Package/mini-httpd-matrixssl define Package/mini-httpd-matrixssl
$(call Package/mini-httpd) $(call Package/mini-httpd)
TITLE:=A small web server, built with SSL support using MatrixSSL TITLE:=A small web server, built with SSL support using MatrixSSL
DESCRIPTION:=mini_httpd is a small HTTP server. Its performance is not great, but for\\\ DESCRIPTION+=This package adds SSL/HTTPS. (MatrixSSL)
low or medium traffic sites it's quite adequate. It implements all the\\\
basic features of an HTTP server, including:\\\
\\\
* GET, HEAD, and POST methods.\\\
* CGI.\\\
* Basic authentication.\\\
* Security against ".." filename snooping.\\\
* The common MIME types.\\\
* Trailing-slash redirection.\\\
* index.html, index.htm, index.cgi\\\
* Directory listings.\\\
* Multihoming / virtual hosting.\\\
* Standard logging.\\\
* Custom error pages.\\\
\\\
It can also be configured to do SSL/HTTPS and IPv6.\\\
endef endef
define Package/mini-httpd-openssl define Package/mini-httpd-openssl
$(call BuildPackage,mini-httpd) $(call BuildPackage,mini-httpd)
TITLE:=A small web server, built with SSL support using OpenSSL TITLE:=A small web server, built with SSL support using OpenSSL
DESCRIPTION:=mini_httpd is a small HTTP server. Its performance is not great, but for\\\ DESCRIPTION+=This package adds SSL/HTTPS. (OpenSSL)
low or medium traffic sites it's quite adequate. It implements all the\\\
basic features of an HTTP server, including:\\\
\\\
* GET, HEAD, and POST methods.\\\
* CGI.\\\
* Basic authentication.\\\
* Security against ".." filename snooping.\\\
* The common MIME types.\\\
* Trailing-slash redirection.\\\
* index.html, index.htm, index.cgi\\\
* Directory listings.\\\
* Multihoming / virtual hosting.\\\
* Standard logging.\\\
* Custom error pages.\\\
\\\
It can also be configured to do SSL/HTTPS and IPv6.\\\
endef endef
define Build/Configure define Build/Configure
$(CP) ./files/matrixssl_helper.{c,h} $(PKG_BUILD_DIR)/ $(CP) ./files/matrixssl_helper.{c,h} $(PKG_BUILD_DIR)/
enddef endef
define Build/Compile define Build/Compile
# with MatrixSSL # with MatrixSSL
@ -177,3 +145,4 @@ $(IPKG_MINI_HTTPD_OPENSSL):
install -m0755 $(PKG_BUILD_DIR)/mini_httpd-openssl $(IDIR_MINI_HTTPD_OPENSSL)/usr/sbin/mini_httpd install -m0755 $(PKG_BUILD_DIR)/mini_httpd-openssl $(IDIR_MINI_HTTPD_OPENSSL)/usr/sbin/mini_httpd
$(RSTRIP) $(IDIR_MINI_HTTPD_OPENSSL) $(RSTRIP) $(IDIR_MINI_HTTPD_OPENSSL)
$(IPKG_BUILD) $(IDIR_MINI_HTTPD_OPENSSL) $(PACKAGE_DIR) $(IPKG_BUILD) $(IDIR_MINI_HTTPD_OPENSSL) $(PACKAGE_DIR)
endef