2009-05-31 14:35:13 +03:00
|
|
|
# remember the provided package version
|
2007-12-21 00:20:32 +02:00
|
|
|
PKG_VERSION_ORGINAL:=$(PKG_VERSION)
|
|
|
|
|
2009-05-31 14:35:13 +03:00
|
|
|
# in case that another version is provided, overwrite the original
|
|
|
|
ifeq ($(CONFIG_$(PKG_NAME)_USE_CUSTOM_VERSION),y)
|
2010-04-29 03:32:44 +03:00
|
|
|
PKG_VERSION:=$(call qstrip,$(CONFIG_$(PKG_NAME)_CUSTOM_VERSION))
|
2007-12-21 00:20:32 +02:00
|
|
|
PKG_SOURCE:=$(subst $(PKG_VERSION_ORGINAL),$(PKG_VERSION),$(PKG_SOURCE))
|
2009-05-31 14:35:13 +03:00
|
|
|
PKG_MD5SUM:=
|
2007-12-21 00:20:32 +02:00
|
|
|
endif
|
|
|
|
|
2009-05-31 14:35:13 +03:00
|
|
|
# package specific configuration
|
|
|
|
# if includeded the package version can be overwritten within the .config file (instead of changing the package specific Makefile)
|
|
|
|
define Package/$(PKG_NAME)/override_version
|
2007-12-21 00:20:32 +02:00
|
|
|
menu "overwrite package version"
|
|
|
|
depends on PACKAGE_$(PKG_NAME)
|
2009-05-31 14:35:13 +03:00
|
|
|
config $(PKG_NAME)_USE_CUSTOM_VERSION
|
2007-12-21 00:20:32 +02:00
|
|
|
depends on PACKAGE_$(PKG_NAME)
|
2009-05-31 14:35:13 +03:00
|
|
|
bool "Use custom package version"
|
2007-12-21 00:20:32 +02:00
|
|
|
default n
|
2009-05-31 14:35:13 +03:00
|
|
|
config $(PKG_NAME)_CUSTOM_VERSION
|
|
|
|
depends on $(PKG_NAME)_USE_CUSTOM_VERSION
|
2007-12-21 00:20:32 +02:00
|
|
|
string "$(PKG_BASE_NAME) version as string (default version: $(PKG_VERSION_ORGINAL))"
|
|
|
|
default "$(PKG_VERSION_ORGINAL)"
|
|
|
|
endmenu
|
|
|
|
endef
|
2009-05-31 14:35:13 +03:00
|
|
|
|
|
|
|
# in case that an customer source path is provided, set the acc. default variable
|
|
|
|
ifeq ($(CONFIG_$(PKG_NAME)_USE_CUSTOM_SOURCE_DIR),y)
|
2010-04-29 03:32:44 +03:00
|
|
|
PKG_DEFAULT_CUSTOM_SOURCE_DIR:= $(call qstrip,$(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR))
|
2009-05-31 14:35:13 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
# package specific configuration
|
|
|
|
# if includeded the package source path can be overwritten within the .config file (instead of changing the package specific Makefile)
|
|
|
|
# instead of using a source ball (eg tar.gz) the specified path will point to the location of the sources
|
|
|
|
define Package/$(PKG_NAME)/override_source_path
|
|
|
|
menu "custom source directory"
|
|
|
|
depends on PACKAGE_$(PKG_NAME)
|
|
|
|
config $(PKG_NAME)_USE_CUSTOM_SOURCE_DIR
|
|
|
|
depends on PACKAGE_$(PKG_NAME)
|
|
|
|
bool "Use custom source directory"
|
|
|
|
default n
|
|
|
|
config $(PKG_NAME)_CUSTOM_SOURCE_DIR
|
|
|
|
depends on $(PKG_NAME)_USE_CUSTOM_SOURCE_DIR
|
|
|
|
string "Custom source directory"
|
|
|
|
default "$(PKG_DEFAULT_CUSTOM_SOURCE_DIR)"
|
|
|
|
endmenu
|
|
|
|
endef
|
|
|
|
|
|
|
|
# default:
|
|
|
|
# include both configurations as long this file is included before package.mk
|
|
|
|
# in case that you're defining your own onfiguration within the package Makefile just include the stuff by yourself
|
|
|
|
define Package/$(PKG_NAME)/config
|
|
|
|
$(call Package/$(PKG_NAME)/override_version)
|
|
|
|
$(call Package/$(PKG_NAME)/override_source_path)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# hook for custom source path
|
|
|
|
# in case that the specified path is valid a link to the PKG_SOURCE_DIR is created
|
|
|
|
# otherwise the make is stopped
|
|
|
|
define prepare_custom_source_directory
|
|
|
|
if [ -d $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR) ]; then \
|
|
|
|
rm -Rf $(PKG_BUILD_DIR); \
|
|
|
|
echo "Preparing Custom Source Directory link: $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR)"; \
|
|
|
|
ln -snf $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR) $(PKG_BUILD_DIR); \
|
|
|
|
( cd $(PKG_BUILD_DIR); autoreconf -i; ) \
|
|
|
|
else \
|
|
|
|
echo "Custom Source Directory $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR) is invalid"; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|