2008-09-13 00:29:13 +00:00
|
|
|
#
|
2010-02-18 23:50:44 +00:00
|
|
|
# Copyright (C) 2007-2010 OpenWrt.org
|
2007-12-27 02:11:07 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2010-03-29 03:38:40 +00:00
|
|
|
autoconf_bool = $(patsubst %,$(if $($(1)),--enable,--disable)-%,$(2))
|
2007-12-27 02:11:07 +00:00
|
|
|
|
2010-12-04 13:44:43 +00:00
|
|
|
# delete *.la-files from staging_dir - we can not yet remove respective lines within all package
|
|
|
|
# Makefiles, since backfire still uses libtool v1.5.x which (may) require those files
|
|
|
|
define libtool_remove_files
|
2010-12-08 00:54:14 +00:00
|
|
|
find $(1) -name '*.la' | $(XARGS) rm -f;
|
|
|
|
endef
|
|
|
|
|
2010-12-15 00:19:08 +00:00
|
|
|
|
|
|
|
AM_TOOL_PATHS:= \
|
|
|
|
AUTOM4TE=$(STAGING_DIR_HOST)/bin/autom4te \
|
|
|
|
AUTOCONF=$(STAGING_DIR_HOST)/bin/autoconf \
|
|
|
|
AUTOMAKE=$(STAGING_DIR_HOST)/bin/automake \
|
|
|
|
ACLOCAL=$(STAGING_DIR_HOST)/bin/aclocal \
|
|
|
|
AUTOHEADER=$(STAGING_DIR_HOST)/bin/autoheader \
|
|
|
|
LIBTOOLIZE=$(STAGING_DIR_HOST)/bin/libtoolize \
|
2010-12-26 02:06:50 +00:00
|
|
|
LIBTOOL=$(STAGING_DIR_HOST)/bin/libtool \
|
2010-12-18 13:19:59 +00:00
|
|
|
M4=$(STAGING_DIR_HOST)/bin/m4 \
|
|
|
|
AUTOPOINT=true
|
2010-12-15 00:19:08 +00:00
|
|
|
|
2010-12-13 19:04:33 +00:00
|
|
|
# 1: build dir
|
|
|
|
# 2: remove files
|
|
|
|
# 3: automake paths
|
|
|
|
# 4: libtool paths
|
|
|
|
# 5: extra m4 dirs
|
2010-12-08 00:54:14 +00:00
|
|
|
define autoreconf
|
2010-12-13 19:04:33 +00:00
|
|
|
(cd $(1); \
|
|
|
|
$(patsubst %,rm -f %;,$(2)) \
|
|
|
|
$(foreach p,$(3), \
|
2010-12-15 01:14:14 +00:00
|
|
|
if [ -f $(p)/configure.ac ] || [ -f $(p)/configure.in ]; then \
|
2010-12-13 01:44:28 +00:00
|
|
|
[ -d $(p)/autom4te.cache ] && rm -rf autom4te.cache; \
|
2010-12-15 06:05:41 +00:00
|
|
|
touch NEWS AUTHORS COPYING ChangeLog; \
|
2010-12-15 00:19:08 +00:00
|
|
|
$(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
|
2010-12-13 01:44:28 +00:00
|
|
|
-B $(STAGING_DIR_HOST)/share/aclocal \
|
2011-02-02 18:18:38 +00:00
|
|
|
$(patsubst %,-I %,$(5)) \
|
2010-12-26 02:06:50 +00:00
|
|
|
$(patsubst %,-I %,$(4)) $(4) || true; \
|
2011-02-27 15:39:27 +00:00
|
|
|
[ -e $(p)/config.rpath ] || \
|
|
|
|
ln -s $(SCRIPT_DIR)/config.rpath $(p)/config.rpath;
|
2010-12-13 01:44:28 +00:00
|
|
|
fi; \
|
|
|
|
) \
|
2010-12-08 01:15:38 +00:00
|
|
|
);
|
2010-12-04 13:44:43 +00:00
|
|
|
endef
|
|
|
|
|
2010-12-13 19:04:33 +00:00
|
|
|
|
|
|
|
PKG_LIBTOOL_PATHS?=$(CONFIGURE_PATH)
|
|
|
|
PKG_AUTOMAKE_PATHS?=$(CONFIGURE_PATH)
|
2010-12-26 02:06:50 +00:00
|
|
|
PKG_MACRO_PATHS?=m4
|
2010-12-13 19:04:33 +00:00
|
|
|
PKG_REMOVE_FILES?=aclocal.m4
|
|
|
|
|
2010-12-04 13:44:43 +00:00
|
|
|
Hooks/InstallDev/Post += libtool_remove_files
|
|
|
|
|
2010-12-13 19:04:33 +00:00
|
|
|
define autoreconf_target
|
|
|
|
$(strip $(call autoreconf, \
|
|
|
|
$(PKG_BUILD_DIR), $(PKG_REMOVE_FILES), \
|
|
|
|
$(PKG_AUTOMAKE_PATHS), $(PKG_LIBTOOL_PATHS), \
|
2010-12-26 02:06:50 +00:00
|
|
|
$(STAGING_DIR)/host/share/aclocal $(STAGING_DIR)/usr/share/aclocal $(PKG_MACRO_PATHS)))
|
2010-12-13 19:04:33 +00:00
|
|
|
endef
|
|
|
|
|
2010-12-04 19:56:47 +00:00
|
|
|
ifneq ($(filter libtool,$(PKG_FIXUP)),)
|
2010-12-19 04:41:18 +00:00
|
|
|
PKG_BUILD_DEPENDS += libtool libintl libiconv
|
2010-12-08 02:24:21 +00:00
|
|
|
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
|
2010-12-13 19:04:33 +00:00
|
|
|
Hooks/Configure/Pre += autoreconf_target
|
2010-12-08 02:24:21 +00:00
|
|
|
endif
|
2010-12-04 19:56:47 +00:00
|
|
|
endif
|
2010-12-13 19:04:33 +00:00
|
|
|
|
2010-12-04 19:56:47 +00:00
|
|
|
ifneq ($(filter libtool-ucxx,$(PKG_FIXUP)),)
|
2010-12-19 04:41:18 +00:00
|
|
|
PKG_BUILD_DEPENDS += libtool libintl libiconv
|
2010-12-08 02:24:21 +00:00
|
|
|
ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),)
|
2010-12-13 19:04:33 +00:00
|
|
|
Hooks/Configure/Pre += autoreconf_target
|
2010-12-08 02:24:21 +00:00
|
|
|
endif
|
2010-12-04 19:56:47 +00:00
|
|
|
endif
|
2009-06-04 00:20:01 +00:00
|
|
|
|
2010-12-10 15:20:51 +00:00
|
|
|
ifneq ($(filter autoreconf,$(PKG_FIXUP)),)
|
|
|
|
ifeq ($(filter autoreconf,$(Hooks/Configure/Pre)),)
|
2010-12-13 19:04:33 +00:00
|
|
|
Hooks/Configure/Pre += autoreconf_target
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
HOST_FIXUP?=$(PKG_FIXUP)
|
|
|
|
HOST_LIBTOOL_PATHS?=$(if $(PKG_LIBTOOL_PATHS),$(PKG_LIBTOOL_PATHS),.)
|
|
|
|
HOST_AUTOMAKE_PATHS?=$(if $(PKG_AUTOMAKE_PATHS),$(PKG_AUTOMAKE_PATHS),.)
|
2010-12-26 02:06:50 +00:00
|
|
|
HOST_MACRO_PATHS?=$(if $(PKG_MACRO_PATHS),$(PKG_MACRO_PATHS),m4)
|
2010-12-13 19:04:33 +00:00
|
|
|
HOST_REMOVE_FILES?=$(PKG_REMOVE_FILES)
|
|
|
|
|
|
|
|
define autoreconf_host
|
|
|
|
$(strip $(call autoreconf, \
|
|
|
|
$(HOST_BUILD_DIR), $(HOST_REMOVE_FILES), \
|
2010-12-26 02:06:50 +00:00
|
|
|
$(HOST_AUTOMAKE_PATHS), $(HOST_LIBTOOL_PATHS), \
|
|
|
|
$(HOST_MACRO_PATHS)))
|
2010-12-13 19:04:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(filter libtool,$(HOST_FIXUP)),)
|
|
|
|
ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
|
|
|
|
Hooks/HostConfigure/Pre += autoreconf_host
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(filter libtool-ucxx,$(HOST_FIXUP)),)
|
|
|
|
ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
|
|
|
|
Hooks/HostConfigure/Pre += autoreconf_host
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(filter autoreconf,$(HOST_FIXUP)),)
|
|
|
|
ifeq ($(filter autoreconf,$(Hooks/HostConfigure/Pre)),)
|
|
|
|
Hooks/HostConfigure/Pre += autoreconf_host
|
2010-12-10 15:20:51 +00:00
|
|
|
endif
|
|
|
|
endif
|