Changeset d419478 in freewrt for package/arpd


Ignore:
Timestamp:
Jul 21, 2006, 1:56:32 AM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
50d34d3
Parents:
2029b2e
Message:
  • whitespace cleanup, while here
  • move WRKDIR and DISTFILES definition into PKG_template
  • define WRKDIR via parent BUILD_DIR instead of going up from WRKSRC
  • use a sub-directory as WRKDIR, like BSD
  • rename PKG_BUILD_DIR into WRKBUILD
  • define WRKBUILD relative via WRKDIR
  • rename PKG_INSTALL_DIR into WRKINST
  • fix a few dependencies
  • make use of common cases in the definition of WRKBUILD and WRKINST, removing many redundant lines
  • use WRKDIR instead of BUILD_DIR in places where the latter was used previously
  • while here, remove PKG_CAT stuff

this only affects packages, for now

git-svn-id: svn://www.freewrt.org/trunk/freewrt@303 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/arpd/Makefile

    r2029b2e rd419478  
    1010PKG_SOURCE_URL:=http://niels.xtdnet.nl/honeyd
    1111PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
    12 PKG_CAT:=zcat
    13 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
     12WRKBUILD:=${WRKDIR}/$(PKG_NAME)
    1413
    1514include $(TOPDIR)/package/rules.mk
     
    1716$(eval $(call PKG_template,ARPD,arpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
    1817
    19 $(PKG_BUILD_DIR)/.configured:
    20         (cd $(PKG_BUILD_DIR); rm -rf config.cache; \
     18$(WRKBUILD)/.configured:
     19        (cd $(WRKBUILD); rm -rf config.cache; \
    2120                $(TARGET_CONFIGURE_OPTS) \
    2221                CFLAGS="$(TARGET_CFLAGS)" \
     
    5150        touch $@
    5251
    53 $(PKG_BUILD_DIR)/.built:
    54         $(MAKE) -C $(PKG_BUILD_DIR) \
     52$(WRKBUILD)/.built:
     53        $(MAKE) -C $(WRKBUILD) \
    5554                CCOPT="$(TARGET_CFLAGS)" \
    5655                INCLS="-I. -I$(STAGING_DIR)/usr/include" \
     
    6059$(IPKG_ARPD):
    6160        mkdir -p $(IDIR_ARPD)/usr/sbin
    62         $(CP)  $(PKG_BUILD_DIR)/arpd $(IDIR_ARPD)/usr/sbin/
     61        $(CP)  $(WRKBUILD)/arpd $(IDIR_ARPD)/usr/sbin/
    6362        $(STRIP) $(IDIR_ARPD)/usr/sbin/*
    6463        $(IPKG_BUILD) $(IDIR_ARPD) $(PACKAGE_DIR)
Note: See TracChangeset for help on using the changeset viewer.