2006-06-27 08:35:46 +08:00
|
|
|
#
|
2007-03-16 07:57:18 +08:00
|
|
|
# Copyright (C) 2006,2007 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-03-16 07:57:18 +08:00
|
|
|
|
|
|
|
all: $(if $(DUMP),dumpinfo,compile)
|
2006-04-14 11:03:32 +08:00
|
|
|
|
2006-07-29 19:30:06 +08:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
2006-10-11 05:22:35 +08:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2006-10-14 08:40:27 +08:00
|
|
|
include $(INCLUDE_DIR)/unpack.mk
|
2007-03-16 07:57:18 +08:00
|
|
|
include $(INCLUDE_DIR)/package-defaults.mk
|
|
|
|
include $(INCLUDE_DIR)/package-dumpinfo.mk
|
|
|
|
include $(INCLUDE_DIR)/package-ipkg.mk
|
2006-07-29 19:30:06 +08:00
|
|
|
|
2006-10-19 23:25:58 +08:00
|
|
|
export CONFIG_SITE:=$(INCLUDE_DIR)/site/$(REAL_GNU_TARGET_NAME)
|
|
|
|
|
2006-04-14 11:03:32 +08:00
|
|
|
define Build/DefaultTargets
|
2007-03-16 07:57:18 +08:00
|
|
|
ifneq ($(strip $(PKG_SOURCE_URL)),)
|
|
|
|
download: $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
|
|
|
|
$(DL_DIR)/$(PKG_SOURCE):
|
|
|
|
mkdir -p $(DL_DIR)
|
|
|
|
$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
|
|
|
|
|
|
|
|
$(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
endif
|
|
|
|
|
2006-05-16 04:30:26 +08:00
|
|
|
ifeq ($(DUMP),)
|
2006-07-26 09:01:09 +08:00
|
|
|
ifeq ($(CONFIG_AUTOREBUILD),y)
|
2007-01-12 19:09:05 +08:00
|
|
|
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) . $(PKG_FILE_DEPEND)),$(PKG_BUILD_DIR))
|
2007-01-20 09:35:13 +08:00
|
|
|
$$(info Forcing package rebuild)
|
2007-03-16 07:57:18 +08:00
|
|
|
$(PKG_BUILD_DIR)/.prepared: clean
|
2006-06-03 00:17:56 +08:00
|
|
|
endif
|
2006-06-04 22:40:47 +08:00
|
|
|
endif
|
2006-05-14 17:30:29 +08:00
|
|
|
endif
|
|
|
|
|
2006-06-21 07:40:02 +08:00
|
|
|
$(PKG_BUILD_DIR)/.prepared:
|
2006-05-11 08:18:12 +08:00
|
|
|
@-rm -rf $(PKG_BUILD_DIR)
|
|
|
|
@mkdir -p $(PKG_BUILD_DIR)
|
2007-03-16 07:57:18 +08:00
|
|
|
$(Build/Prepare)
|
2006-05-12 07:14:04 +08:00
|
|
|
touch $$@
|
2006-04-14 11:03:32 +08:00
|
|
|
|
2006-05-12 07:14:04 +08:00
|
|
|
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
2007-03-16 07:57:18 +08:00
|
|
|
$(Build/Configure)
|
2006-04-14 11:03:32 +08:00
|
|
|
touch $$@
|
|
|
|
|
2006-05-14 17:30:29 +08:00
|
|
|
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
|
2007-03-16 07:57:18 +08:00
|
|
|
$(Build/Compile)
|
2006-05-14 17:30:29 +08:00
|
|
|
touch $$@
|
2006-06-01 00:20:27 +08:00
|
|
|
|
2006-08-02 20:07:14 +08:00
|
|
|
ifdef Build/InstallDev
|
2006-09-07 20:48:22 +08:00
|
|
|
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed $(PKG_BUILD_DIR)),$(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed)
|
|
|
|
$(PKG_BUILD_DIR)/.built: package-rebuild
|
|
|
|
endif
|
|
|
|
|
2006-08-02 20:07:14 +08:00
|
|
|
$(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed: $(PKG_BUILD_DIR)/.built
|
2006-07-19 04:17:05 +08:00
|
|
|
mkdir -p $(STAGING_DIR)/stampfiles
|
2007-03-16 07:57:18 +08:00
|
|
|
$(Build/InstallDev)
|
2006-05-24 15:12:59 +08:00
|
|
|
touch $$@
|
2006-06-01 08:06:16 +08:00
|
|
|
|
2007-03-16 07:57:18 +08:00
|
|
|
compile: $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
|
2006-06-01 08:06:16 +08:00
|
|
|
endif
|
2006-06-01 00:20:27 +08:00
|
|
|
|
2006-05-14 17:30:29 +08:00
|
|
|
package-rebuild: FORCE
|
2006-06-17 05:39:42 +08:00
|
|
|
@-rm -f $(PKG_BUILD_DIR)/.built
|
2006-05-14 17:30:29 +08:00
|
|
|
|
2006-05-12 06:36:20 +08:00
|
|
|
define Build/DefaultTargets
|
|
|
|
endef
|
2006-04-14 11:03:32 +08:00
|
|
|
endef
|
2005-07-25 03:58:14 +08:00
|
|
|
|
2006-04-20 07:56:04 +08:00
|
|
|
define BuildPackage
|
2007-03-16 07:57:18 +08:00
|
|
|
$(eval $(Package/Default))
|
|
|
|
$(eval $(Package/$(1)))
|
|
|
|
|
|
|
|
# <HACK> Support obsolete DESCRIPTION field>
|
|
|
|
ifndef Package/$(1)/description
|
|
|
|
define Package/$(1)/description
|
|
|
|
$(TITLE)$(subst \,
|
|
|
|
,\ $(DESCRIPTION))
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
# </HACK>
|
2006-04-14 09:22:55 +08:00
|
|
|
|
2006-09-25 05:17:17 +08:00
|
|
|
$(foreach FIELD, TITLE CATEGORY PRIORITY SECTION VERSION,
|
2006-05-12 06:36:20 +08:00
|
|
|
ifeq ($($(FIELD)),)
|
|
|
|
$$(error Package/$(1) is missing the $(FIELD) field)
|
|
|
|
endif
|
|
|
|
)
|
2006-05-11 08:18:12 +08:00
|
|
|
|
2007-03-16 07:57:18 +08:00
|
|
|
$(call shexport,Package/$(1)/description)
|
|
|
|
$(call shexport,Package/$(1)/config)
|
2006-10-10 23:45:36 +08:00
|
|
|
|
2007-03-16 07:57:18 +08:00
|
|
|
$(Dumpinfo)
|
|
|
|
$(BuildIPKG)
|
2006-04-14 11:03:32 +08:00
|
|
|
endef
|
2005-10-22 09:40:50 +08:00
|
|
|
|
2006-04-14 11:03:32 +08:00
|
|
|
define Build/Prepare
|
2006-09-19 05:56:07 +08:00
|
|
|
$(call Build/Prepare/Default,)
|
2006-04-14 11:03:32 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-05-12 06:36:20 +08:00
|
|
|
$(call Build/Configure/Default,)
|
2006-04-14 11:03:32 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2006-05-16 04:30:26 +08:00
|
|
|
$(call Build/Compile/Default,)
|
2006-04-14 11:03:32 +08:00
|
|
|
endef
|
2005-04-18 14:17:39 +08:00
|
|
|
|
2007-03-16 07:57:18 +08:00
|
|
|
$(PACKAGE_DIR):
|
2006-05-11 04:32:22 +08:00
|
|
|
mkdir -p $@
|
2006-06-21 07:40:02 +08:00
|
|
|
|
2007-03-16 07:57:18 +08:00
|
|
|
dumpinfo:
|
|
|
|
download:
|
|
|
|
prepare: $(PKG_BUILD_DIR)/.prepared
|
|
|
|
configure: $(PKG_BUILD_DIR)/.configured
|
|
|
|
compile:
|
|
|
|
install:
|
|
|
|
clean: FORCE
|
|
|
|
$(Build/UninstallDev)
|
|
|
|
@rm -f $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
|
|
|
|
@rm -rf $(PKG_BUILD_DIR)
|