X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fsed%2FMakefile;h=f15299c96c2b017573566cf6c49d7a70c1c5d973;hb=8abc063773dfb5f63b6a1bbc074d256fd7e5b661;hp=b3169918b4ff959dc9629adddac0838a97694d2b;hpb=44af1866aa41cfbbad48583106cb82201ded4fcb;p=openwrt-10.03%2F.git diff --git a/tools/sed/Makefile b/tools/sed/Makefile index b3169918b..f15299c96 100644 --- a/tools/sed/Makefile +++ b/tools/sed/Makefile @@ -10,54 +10,23 @@ PKG_NAME:=sed PKG_VERSION:=4.1.2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/$(PKG_NAME) +PKG_SOURCE_URL:=@GNU/$(PKG_NAME) PKG_MD5SUM:=928f0e06422f414091917401f1a834d0 PKG_CAT:=zcat - -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) - -HOST_SED_TARGET=$(strip $(shell ./sedcheck.sh)) - -ifneq ($(HOST_SED_TARGET),build-sed-host-binary) - PKG_SOURCE:= - PKG_CAT:= -endif +export SED:= include $(INCLUDE_DIR)/host-build.mk -ifeq ($(HOST_SED_TARGET),build-sed-host-binary) - define Build/Configure - (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ - ./configure \ - --prefix=$(STAGING_DIR) \ - --prefix=/usr \ - ); - endef +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" +endef - define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) - endef +define Host/Install + $(INSTALL_BIN) $(HOST_BUILD_DIR)/sed/sed $(STAGING_DIR_HOST)/bin/ +endef - define Build/Install - @if [ -L $(STAGING_DIR)/bin/sed ] ; then \ - rm -f $(STAGING_DIR)/bin/sed; fi; - @if [ ! -f $(STAGING_DIR)/bin/sed -o $(STAGING_DIR)/bin/sed -ot $(PKG_BUILD_DIR)/sed/sed ]; then \ - set -x; \ - mkdir -p $(STAGING_DIR)/bin; \ - $(MAKE) DESTDIR=$(STAGING_DIR) -C $(PKG_BUILD_DIR) install; \ - mv $(STAGING_DIR)/usr/bin/sed $(STAGING_DIR)/bin/; \ - rm -rf $(STAGING_DIR)/share/locale $(STAGING_DIR)/usr/info \ - $(STAGING_DIR)/usr/man $(STAGING_DIR)/usr/share/doc; \ - fi - endef -else - define Build/Compile - endef - define Build/Install - rm -rf $(STAGING_DIR)/bin/sed - mkdir -p $(STAGING_DIR)/bin - ln -s `which sed` $(STAGING_DIR)/bin/sed - endef -endif +define Host/Clean + rm -f $(STAGING_DIR_HOST)/bin/sed +endef $(eval $(call HostBuild))