buildrootschalter/package/lighttpd/lighttpd.mk

42 lines
1.1 KiB
Makefile
Raw Normal View History

#############################################################
#
# lighttpd
#
#############################################################
2008-04-24 15:18:50 +02:00
LIGHTTPD_VERSION:=1.4.19
LIGHTTPD_SOURCE:=lighttpd-$(LIGHTTPD_VERSION).tar.bz2
LIGHTTPD_SITE:=http://www.lighttpd.net/download
LIGHTTPD_INSTALL_STAGING = NO
LIGHTTPD_INSTALL_TARGET = YES
LIGHTTPD_DEPENDENCIES = uclibc
LIGHTTPD_CONF_ENV =
LIGHTTPD_CONF_OPT = \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--prefix=/usr \
--libdir=/usr/lib/lighttpd \
--libexecdir=/usr/lib \
--sysconfdir=/etc \
--localstatedir=/var \
--program-prefix="" \
$(DISABLE_IPV6) \
$(DISABLE_LARGEFILE)
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_OPENSSL)),y)
2008-04-24 15:18:50 +02:00
LIGHTTPD_DEPENDENCIES += openssl
LIGHTTPD_CONF_OPT += --with-openssl
else
2008-04-24 15:18:50 +02:00
LIGHTTPD_CONF_OPT += --without-openssl
endif
2008-04-24 15:18:50 +02:00
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_PCRE)),y)
LIGHTTPD_CONF_ENV += PCRE_LIB="-lpcre"
LIGHTTPD_DEPENDENCIES += pcre
LIGHTTPD_CONF_OPT += --with-pcre
else
2008-04-24 15:18:50 +02:00
LIGHTTPD_CONF_OPT += --without-pcre
endif
2008-04-24 15:18:50 +02:00
$(eval $(call AUTOTARGETS,package,lighttpd))