Changeset d419478 in freewrt for package/ebtables


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/ebtables/Makefile

    r2029b2e rd419478  
    1010PKG_SOURCE_URL:=@SF/ebtables
    1111PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
    12 PKG_CAT:=zcat
    1312
    14 PKG_BUILD_DIR:=$(BUILD_DIR)/ebtables-v$(PKG_VERSION)
     13WRKBUILD:=${WRKDIR}/ebtables-v$(PKG_VERSION)
    1514
    1615include $(TOPDIR)/package/rules.mk
     
    1817$(eval $(call PKG_template,EBTABLES,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
    1918
    20 $(PKG_BUILD_DIR)/.configured:
     19$(WRKBUILD)/.configured:
    2120        touch $@
    2221
    23 $(PKG_BUILD_DIR)/.built:
    24         $(MAKE) -C $(PKG_BUILD_DIR) \
     22$(WRKBUILD)/.built:
     23        $(MAKE) -C $(WRKBUILD) \
    2524                CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
    2625                CFLAGS="$(TARGET_CFLAGS) -Wall"
     
    2928$(IPKG_EBTABLES):
    3029        install -d -m0755 $(IDIR_EBTABLES)/etc
    31         install -m0644 $(PKG_BUILD_DIR)/ethertypes $(IDIR_EBTABLES)/etc/
     30        install -m0644 $(WRKBUILD)/ethertypes $(IDIR_EBTABLES)/etc/
    3231        install -d -m0755 $(IDIR_EBTABLES)/usr/sbin
    33         install -m0755 $(PKG_BUILD_DIR)/ebtables $(IDIR_EBTABLES)/usr/sbin/
     32        install -m0755 $(WRKBUILD)/ebtables $(IDIR_EBTABLES)/usr/sbin/
    3433        $(RSTRIP) $(IDIR_EBTABLES)
    3534        $(IPKG_BUILD) $(IDIR_EBTABLES) $(PACKAGE_DIR)
Note: See TracChangeset for help on using the changeset viewer.