0518a98ac3
While the autotools infrastructure was using FOO_MAKE_OPT, generic packages were typically using FOO_MAKE_OPTS. This inconsistency becomes a problem when a new infrastructure is introduced that wants to make use of FOO_MAKE_OPT(S), and can live alongside either generic-package or autotools-package. The new infrastructure will have to choose between either OPT or OPTS, and thus rule out transparent usage by respectively generic packages or generic packages. An example of such an infrastructure is kconfig-package, which provides kconfig-related make targets. The OPTS variant is more logical, as there are typically multiple options. This patch renames all occurrences of FOO_MAKE_OPT in FOO_MAKE_OPTS. Sed command used: find * -type f | xargs sed -i 's#_MAKE_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
115 lines
3.0 KiB
Makefile
115 lines
3.0 KiB
Makefile
################################################################################
|
|
#
|
|
# dnsmasq
|
|
#
|
|
################################################################################
|
|
|
|
DNSMASQ_VERSION = 2.72
|
|
DNSMASQ_SOURCE = dnsmasq-$(DNSMASQ_VERSION).tar.xz
|
|
DNSMASQ_SITE = http://thekelleys.org.uk/dnsmasq
|
|
DNSMASQ_MAKE_ENV = $(TARGET_MAKE_ENV) CC="$(TARGET_CC)"
|
|
DNSMASQ_MAKE_OPTS = COPTS="$(DNSMASQ_COPTS)" PREFIX=/usr CFLAGS="$(TARGET_CFLAGS)"
|
|
DNSMASQ_MAKE_OPTS += DESTDIR=$(TARGET_DIR) LDFLAGS="$(TARGET_LDFLAGS)"
|
|
DNSMASQ_DEPENDENCIES = host-pkgconf
|
|
DNSMASQ_LICENSE = Dual GPLv2/GPLv3
|
|
DNSMASQ_LICENSE_FILES = COPYING COPYING-v3
|
|
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
DNSMASQ_COPTS += -DNO_IPV6
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_DNSMASQ_DHCP),y)
|
|
DNSMASQ_COPTS += -DNO_DHCP
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DNSMASQ_DNSSEC),y)
|
|
DNSMASQ_DEPENDENCIES += gmp nettle
|
|
DNSMASQ_COPTS += -DHAVE_DNSSEC
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
DNSMASQ_COPTS += -DHAVE_DNSSEC_STATIC
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_DNSMASQ_TFTP),y)
|
|
DNSMASQ_COPTS += -DNO_TFTP
|
|
endif
|
|
|
|
# NLS requires IDN so only enable it (i18n) when IDN is true
|
|
ifeq ($(BR2_PACKAGE_DNSMASQ_IDN),y)
|
|
DNSMASQ_DEPENDENCIES += libidn $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) host-gettext
|
|
DNSMASQ_MAKE_OPTS += LIBS+="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)"
|
|
DNSMASQ_COPTS += -DHAVE_IDN
|
|
DNSMASQ_I18N = $(if $(BR2_ENABLE_LOCALE),-i18n)
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DNSMASQ_CONNTRACK),y)
|
|
DNSMASQ_DEPENDENCIES += libnetfilter_conntrack
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DNSMASQ_CONNTRACK),y)
|
|
define DNSMASQ_ENABLE_CONNTRACK
|
|
$(SED) 's^.*#define HAVE_CONNTRACK.*^#define HAVE_CONNTRACK^' \
|
|
$(DNSMASQ_DIR)/src/config.h
|
|
endef
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DNSMASQ_LUA),y)
|
|
DNSMASQ_DEPENDENCIES += lua
|
|
|
|
# liblua uses dlopen when dynamically linked
|
|
ifneq ($(BR2_PREFER_STATIC_LIB),y)
|
|
DNSMASQ_MAKE_OPTS += LIBS+="-ldl"
|
|
endif
|
|
|
|
define DNSMASQ_ENABLE_LUA
|
|
$(SED) 's/lua5.1/lua/g' $(DNSMASQ_DIR)/Makefile
|
|
$(SED) 's^.*#define HAVE_LUASCRIPT.*^#define HAVE_LUASCRIPT^' \
|
|
$(DNSMASQ_DIR)/src/config.h
|
|
endef
|
|
endif
|
|
|
|
ifneq ($(BR2_LARGEFILE),y)
|
|
DNSMASQ_COPTS += -DNO_LARGEFILE
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
DNSMASQ_DEPENDENCIES += dbus
|
|
endif
|
|
|
|
define DNSMASQ_FIX_PKGCONFIG
|
|
$(SED) 's^PKG_CONFIG = pkg-config^PKG_CONFIG = $(PKG_CONFIG_HOST_BINARY)^' \
|
|
$(DNSMASQ_DIR)/Makefile
|
|
endef
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
define DNSMASQ_ENABLE_DBUS
|
|
$(SED) 's^.*#define HAVE_DBUS.*^#define HAVE_DBUS^' \
|
|
$(DNSMASQ_DIR)/src/config.h
|
|
endef
|
|
else
|
|
define DNSMASQ_ENABLE_DBUS
|
|
$(SED) 's^.*#define HAVE_DBUS.*^/* #define HAVE_DBUS */^' \
|
|
$(DNSMASQ_DIR)/src/config.h
|
|
endef
|
|
endif
|
|
|
|
define DNSMASQ_BUILD_CMDS
|
|
$(DNSMASQ_FIX_PKGCONFIG)
|
|
$(DNSMASQ_ENABLE_DBUS)
|
|
$(DNSMASQ_ENABLE_LUA)
|
|
$(DNSMASQ_ENABLE_CONNTRACK)
|
|
$(DNSMASQ_MAKE_ENV) $(MAKE1) -C $(@D) $(DNSMASQ_MAKE_OPTS) all$(DNSMASQ_I18N)
|
|
endef
|
|
|
|
define DNSMASQ_INSTALL_TARGET_CMDS
|
|
$(DNSMASQ_MAKE_ENV) $(MAKE) -C $(@D) $(DNSMASQ_MAKE_OPTS) install$(DNSMASQ_I18N)
|
|
mkdir -p $(TARGET_DIR)/var/lib/misc/
|
|
endef
|
|
|
|
define DNSMASQ_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/dnsmasq/S80dnsmasq \
|
|
$(TARGET_DIR)/etc/init.d/S80dnsmasq
|
|
endef
|
|
|
|
$(eval $(generic-package))
|