update lighttpd to 1.4.15

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6993 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-04-18 00:44:47 +00:00
parent 8e881eae8f
commit 79361e73b7

View File

@ -9,20 +9,27 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=lighttpd PKG_NAME:=lighttpd
PKG_VERSION:=1.4.13 PKG_VERSION:=1.4.15
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.lighttpd.net/download/ PKG_SOURCE_URL:=http://www.lighttpd.net/download/
PKG_MD5SUM:=d775d6478391b95d841a1018c8db0b95 PKG_MD5SUM:=b994b8c359da578dec073cae52c4924f
PKG_CAT:=zcat PKG_CAT:=bzcat
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Package/lighttpd/Default
SECTION:=net
CATEGORY:=Network
URL:=http://www.lighttpd.net/
endef
define Package/lighttpd define Package/lighttpd
$(call Package/lighttpd/Default)
MENU:=1 MENU:=1
SECTION:=net SECTION:=net
CATEGORY:=Network CATEGORY:=Network
@ -38,144 +45,124 @@ define Package/lighttpd/conffiles
endef endef
define Package/lighttpd-mod-accesslog define Package/lighttpd-mod-accesslog
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Access logging module TITLE:=Access logging module
endef endef
define Package/lighttpd-mod-alias define Package/lighttpd-mod-alias
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Directory alias module TITLE:=Directory alias module
endef endef
define Package/lighttpd-mod-auth define Package/lighttpd-mod-auth
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Authentication module TITLE:=Authentication module
endef endef
define Package/lighttpd-mod-cgi define Package/lighttpd-mod-cgi
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=CGI module TITLE:=CGI module
endef endef
define Package/lighttpd-mod-evasive define Package/lighttpd-mod-evasive
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Evasive module TITLE:=Evasive module
endef endef
define Package/lighttpd-mod-expire define Package/lighttpd-mod-expire
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Expire module TITLE:=Expire module
endef endef
define Package/lighttpd-mod-fastcgi define Package/lighttpd-mod-fastcgi
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=FastCGI module TITLE:=FastCGI module
endef endef
define Package/lighttpd-mod-proxy define Package/lighttpd-mod-proxy
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Proxy module TITLE:=Proxy module
endef endef
define Package/lighttpd-mod-redirect define Package/lighttpd-mod-redirect
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=URL redirection module TITLE:=URL redirection module
endef endef
define Package/lighttpd-mod-rewrite define Package/lighttpd-mod-rewrite
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=URL rewriting module TITLE:=URL rewriting module
endef endef
define Package/lighttpd-mod-setenv define Package/lighttpd-mod-setenv
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Environment variable setting module TITLE:=Environment variable setting module
endef endef
define Package/lighttpd-mod-simple-vhost define Package/lighttpd-mod-simple-vhost
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Simple virtual hosting module TITLE:=Simple virtual hosting module
endef endef
define Package/lighttpd-mod-ssi define Package/lighttpd-mod-ssi
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=SSI module TITLE:=SSI module
endef endef
define Package/lighttpd-mod-status define Package/lighttpd-mod-status
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=Server status display module TITLE:=Server status display module
endef endef
define Package/lighttpd-mod-usertrack define Package/lighttpd-mod-usertrack
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=User tracking module TITLE:=User tracking module
endef endef
define Package/lighttpd-mod-webdav define Package/lighttpd-mod-webdav
$(call Package/lighttpd) $(call Package/lighttpd/Default)
DEPENDS:=lighttpd DEPENDS:=lighttpd
TITLE:=WebDAV module TITLE:=WebDAV module
endef endef
define Build/Configure define Build/Configure
(cd $(PKG_BUILD_DIR); rm -f config.cache; \ $(call Build/Configure/Default, \
$(TARGET_CONFIGURE_OPTS) \ --libdir=/usr/lib/lighttpd \
CFLAGS="$(TARGET_CFLAGS)" \ --sysconfdir=/etc/lighttpd \
CPPFLAGS="-I$(STAGING_DIR)/usr/include/libxml2 -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ --enable-shared \
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ --enable-static \
--disable-rpath \
--without-attr \
--without-bzip2 \
--without-fam \
--without-gdbm \
--without-ldap \
--without-lua \
--without-memcache \
--without-mysql \
--with-openssl="$(STAGING_DIR)/usr" \
--with-pcre \
--without-valgrind \
--with-webdav-props \
, \
CPPFLAGS="-I$(STAGING_DIR)/usr/include/libxml2 $$$$CPPFLAGS" \
PCRE_LIB="-lpcre" \ PCRE_LIB="-lpcre" \
PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--program-prefix="" \
--program-suffix="" \
--prefix=/usr \
--exec-prefix=/usr \
--bindir=/usr/bin \
--datadir=/usr/share \
--includedir=/usr/include \
--infodir=/usr/share/info \
--libdir=/usr/lib/lighttpd \
--libexecdir=/usr/lib \
--localstatedir=/var \
--mandir=/usr/share/man \
--sbindir=/usr/sbin \
--sysconfdir=/etc/lighttpd \
$(DISABLE_LARGEFILE) \
$(DISABLE_NLS) \
--enable-shared \
--enable-static \
--disable-rpath \
--without-attr \
--without-bzip2 \
--without-fam \
--without-gdbm \
--without-ldap \
--without-lua \
--without-memcache \
--without-mysql \
--with-openssl="$(STAGING_DIR)/usr" \
--with-pcre \
--without-valgrind \
--with-webdav-props \
); );
endef endef