# -*-makefile-*- # $Id$ # # Copyright (C) 2003 by Benedikt Spranger # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # HOST_PACKAGES-$(PTXCONF_HOST_FAKEROOT) += host-fakeroot # # Paths and names # HOST_FAKEROOT_VERSION = 1.5.1 HOST_FAKEROOT = fakeroot-$(HOST_FAKEROOT_VERSION) HOST_FAKEROOT_SUFFIX = tar.gz HOST_FAKEROOT_URL = $(PTXCONF_SETUP_DEBMIRROR)/pool/main/f/fakeroot/fakeroot_$(HOST_FAKEROOT_VERSION).$(HOST_FAKEROOT_SUFFIX) HOST_FAKEROOT_SOURCE = $(SRCDIR)/fakeroot_$(HOST_FAKEROOT_VERSION).$(HOST_FAKEROOT_SUFFIX) HOST_FAKEROOT_DIR = $(HOST_BUILDDIR)/$(HOST_FAKEROOT) -include $(call package_depfile) # ---------------------------------------------------------------------------- # Get # ---------------------------------------------------------------------------- host-fakeroot_get: $(STATEDIR)/host-fakeroot.get host-fakeroot_get_deps = $(HOST_FAKEROOT_SOURCE) $(STATEDIR)/host-fakeroot.get: $(host-fakeroot_get_deps) @$(call targetinfo, $@) @$(call touch, $@) $(HOST_FAKEROOT_SOURCE): @$(call targetinfo, $@) @$(call get, $(HOST_FAKEROOT_URL)) # ---------------------------------------------------------------------------- # Extract # ---------------------------------------------------------------------------- host-fakeroot_extract: $(STATEDIR)/host-fakeroot.extract host-fakeroot_extract_deps = $(STATEDIR)/host-fakeroot.get $(STATEDIR)/host-fakeroot.extract: $(host-fakeroot_extract_deps) @$(call targetinfo, $@) @$(call clean, $(HOST_FAKEROOT_DIR)) @$(call extract, $(HOST_FAKEROOT_SOURCE), $(HOST_BUILDDIR)) @$(call touch, $@) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- host-fakeroot_prepare: $(STATEDIR)/host-fakeroot.prepare # # dependencies # host-fakeroot_prepare_deps = \ $(STATEDIR)/host-fakeroot.extract HOST_FAKEROOT_PATH = PATH=$(CROSS_PATH) HOST_FAKEROOT_ENV = $(HOSTCC_ENV) # # autoconf # HOST_FAKEROOT_AUTOCONF = $(HOST_AUTOCONF) $(STATEDIR)/host-fakeroot.prepare: $(host-fakeroot_prepare_deps) @$(call targetinfo, $@) @$(call clean, $(HOST_FAKEROOT_DIR)/config.cache) cd $(HOST_FAKEROOT_DIR) && \ $(HOST_FAKEROOT_PATH) $(HOST_FAKEROOT_ENV) \ ./configure $(HOST_FAKEROOT_AUTOCONF) @$(call touch, $@) # ---------------------------------------------------------------------------- # Compile # ---------------------------------------------------------------------------- host-fakeroot_compile: $(STATEDIR)/host-fakeroot.compile host-fakeroot_compile_deps = $(STATEDIR)/host-fakeroot.prepare $(STATEDIR)/host-fakeroot.compile: $(host-fakeroot_compile_deps) @$(call targetinfo, $@) cd $(HOST_FAKEROOT_DIR) && $(HOST_FAKEROOT_PATH) make @$(call touch, $@) # ---------------------------------------------------------------------------- # Install # ---------------------------------------------------------------------------- host-fakeroot_install: $(STATEDIR)/host-fakeroot.install $(STATEDIR)/host-fakeroot.install: $(STATEDIR)/host-fakeroot.compile @$(call targetinfo, $@) @$(call install, HOST_FAKEROOT,,h) @$(call touch, $@) # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- host-fakeroot_targetinstall: $(STATEDIR)/host-fakeroot.targetinstall host-fakeroot_targetinstall_deps = $(STATEDIR)/host-fakeroot.compile $(STATEDIR)/host-fakeroot.targetinstall: $(host-fakeroot_targetinstall_deps) @$(call targetinfo, $@) @$(call touch, $@) # ---------------------------------------------------------------------------- # Clean # ---------------------------------------------------------------------------- host-fakeroot_clean: rm -rf $(STATEDIR)/host-fakeroot.* rm -rf $(HOST_FAKEROOT_DIR) # vim: syntax=make