b52a982c50
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
98 lines
2.8 KiB
Makefile
98 lines
2.8 KiB
Makefile
#############################################################
|
|
#
|
|
# lighttpd
|
|
#
|
|
#############################################################
|
|
|
|
LIGHTTPD_VERSION = 1.4.30
|
|
LIGHTTPD_SITE = http://download.lighttpd.net/lighttpd/releases-1.4.x
|
|
LIGHTTPD_DEPENDENCIES = host-pkg-config
|
|
LIGHTTPD_CONF_OPT = \
|
|
--libdir=/usr/lib/lighttpd \
|
|
--libexecdir=/usr/lib \
|
|
--localstatedir=/var \
|
|
$(if $(BR2_LARGEFILE),,--disable-lfs)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTTPD_OPENSSL),y)
|
|
LIGHTTPD_DEPENDENCIES += openssl
|
|
LIGHTTPD_CONF_OPT += --with-openssl
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTTPD_ZLIB),y)
|
|
LIGHTTPD_DEPENDENCIES += zlib
|
|
LIGHTTPD_CONF_OPT += --with-zlib
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTTPD_BZIP2),y)
|
|
LIGHTTPD_DEPENDENCIES += bzip2
|
|
LIGHTTPD_CONF_OPT += --with-bzip2
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-bzip2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTTPD_PCRE),y)
|
|
LIGHTTPD_CONF_ENV = PCRECONFIG=$(STAGING_DIR)/usr/bin/pcre-config
|
|
LIGHTTPD_DEPENDENCIES += pcre
|
|
LIGHTTPD_CONF_OPT += --with-pcre
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-pcre
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTTPD_WEBDAV),y)
|
|
LIGHTTPD_DEPENDENCIES += libxml2 sqlite
|
|
LIGHTTPD_CONF_OPT += --with-webdav-props --with-webdav-locks
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-webdav-props --without-webdav-locks
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIGHTTPD_LUA),y)
|
|
LIGHTTPD_DEPENDENCIES += lua
|
|
LIGHTTPD_CONF_OPT += --with-lua
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-lua
|
|
endif
|
|
|
|
define LIGHTTPD_INSTALL_CONFIG
|
|
mkdir -p $(TARGET_DIR)/etc/lighttpd
|
|
mkdir -p $(TARGET_DIR)/etc/lighttpd/conf.d
|
|
mkdir -p $(TARGET_DIR)/srv/www/htdocs
|
|
|
|
[ -f $(TARGET_DIR)/etc/lighttpd/lighttpd.conf ] || \
|
|
$(INSTALL) -D -m 755 $(@D)/doc/config/lighttpd.conf \
|
|
$(TARGET_DIR)/etc/lighttpd/lighttpd.conf
|
|
|
|
[ -f $(TARGET_DIR)/etc/lighttpd/modules.conf ] || \
|
|
$(INSTALL) -D -m 755 $(@D)/doc/config/modules.conf \
|
|
$(TARGET_DIR)/etc/lighttpd/modules.conf
|
|
|
|
[ -f $(TARGET_DIR)/etc/lighttpd/conf.d/access_log.conf ] || \
|
|
$(INSTALL) -D -m 755 $(@D)/doc/config/conf.d/access_log.conf \
|
|
$(TARGET_DIR)/etc/lighttpd/conf.d/access_log.conf
|
|
|
|
[ -f $(TARGET_DIR)/etc/lighttpd/conf.d/debug.conf ] || \
|
|
$(INSTALL) -D -m 755 $(@D)/doc/config/conf.d/debug.conf \
|
|
$(TARGET_DIR)/etc/lighttpd/conf.d/debug.conf
|
|
|
|
[ -f $(TARGET_DIR)/etc/lighttpd/conf.d/dirlisting.conf ] || \
|
|
$(INSTALL) -D -m 755 $(@D)/doc/config/conf.d/dirlisting.conf \
|
|
$(TARGET_DIR)/etc/lighttpd/conf.d/dirlisting.conf
|
|
|
|
[ -f $(TARGET_DIR)/etc/lighttpd/conf.d/mime.conf ] || \
|
|
$(INSTALL) -D -m 755 $(@D)/doc/config/conf.d/mime.conf \
|
|
$(TARGET_DIR)/etc/lighttpd/conf.d/mime.conf
|
|
endef
|
|
|
|
LIGHTTPD_POST_INSTALL_TARGET_HOOKS += LIGHTTPD_INSTALL_CONFIG
|
|
|
|
define LIGHTTPD_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/lighttpd
|
|
rm -f $(TARGET_DIR)/usr/sbin/lighttpd-angel
|
|
rm -rf $(TARGET_DIR)/usr/lib/lighttpd
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS))
|