2003-02-15 11:23:19 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# tar
|
|
|
|
#
|
|
|
|
#############################################################
|
2005-01-05 16:29:37 +01:00
|
|
|
GNUTAR_VER:=1.15.1
|
2004-10-08 18:03:22 +02:00
|
|
|
GNUTAR_SOURCE:=tar-$(GNUTAR_VER).tar.bz2
|
2005-01-05 16:29:37 +01:00
|
|
|
GNUTAR_SITE:=http://ftp.gnu.org/gnu/tar/
|
2004-10-08 18:03:22 +02:00
|
|
|
GNUTAR_DIR:=$(BUILD_DIR)/tar-$(GNUTAR_VER)
|
|
|
|
GNUTAR_CAT:=bzcat
|
2003-02-15 11:23:19 +01:00
|
|
|
GNUTAR_BINARY:=src/tar
|
|
|
|
GNUTAR_TARGET_BINARY:=bin/tar
|
|
|
|
|
|
|
|
$(DL_DIR)/$(GNUTAR_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(GNUTAR_SITE)/$(GNUTAR_SOURCE)
|
|
|
|
|
|
|
|
tar-source: $(DL_DIR)/$(GNUTAR_SOURCE)
|
|
|
|
|
|
|
|
$(GNUTAR_DIR)/.unpacked: $(DL_DIR)/$(GNUTAR_SOURCE)
|
2004-10-09 23:19:47 +02:00
|
|
|
$(GNUTAR_CAT) $(DL_DIR)/$(GNUTAR_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2005-06-24 10:36:13 +02:00
|
|
|
toolchain/patch-kernel.sh $(GNUTAR_DIR) package/tar/ tar\*.patch
|
2003-02-15 11:23:19 +01:00
|
|
|
touch $(GNUTAR_DIR)/.unpacked
|
|
|
|
|
|
|
|
$(GNUTAR_DIR)/.configured: $(GNUTAR_DIR)/.unpacked
|
|
|
|
(cd $(GNUTAR_DIR); rm -rf config.cache; \
|
2003-03-04 20:16:19 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2003-11-01 06:34:41 +01:00
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
2005-09-13 22:40:59 +02:00
|
|
|
ac_cv_func_chown_works=yes \
|
2005-09-30 22:47:40 +02:00
|
|
|
gl_cv_func_chown_follows_symlink=yes \
|
2003-02-15 11:23:19 +01:00
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
2003-03-04 20:16:19 +01:00
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
2003-02-15 11:23:19 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--datadir=/usr/share \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--infodir=/usr/info \
|
2003-09-03 09:18:18 +02:00
|
|
|
$(DISABLE_NLS) \
|
2003-11-17 02:31:38 +01:00
|
|
|
$(DISABLE_LARGEFILE) \
|
2003-02-15 11:23:19 +01:00
|
|
|
);
|
2005-11-24 07:53:24 +01:00
|
|
|
touch $(GNUTAR_DIR)/.configured
|
2003-02-15 11:23:19 +01:00
|
|
|
|
|
|
|
$(GNUTAR_DIR)/$(GNUTAR_BINARY): $(GNUTAR_DIR)/.configured
|
|
|
|
$(MAKE) -C $(GNUTAR_DIR)
|
|
|
|
|
2003-03-06 19:24:00 +01:00
|
|
|
# This stuff is needed to work around GNU make deficiencies
|
|
|
|
tar-target_binary: $(GNUTAR_DIR)/$(GNUTAR_BINARY)
|
|
|
|
@if [ -L $(TARGET_DIR)/$(GNUTAR_TARGET_BINARY) ] ; then \
|
|
|
|
rm -f $(TARGET_DIR)/$(GNUTAR_TARGET_BINARY); fi;
|
2003-12-20 01:22:39 +01:00
|
|
|
@if [ ! -f $(GNUTAR_DIR)/$(GNUTAR_BINARY) -o $(TARGET_DIR)/$(GNUTAR_TARGET_BINARY) \
|
|
|
|
-ot $(GNUTAR_DIR)/$(GNUTAR_BINARY) ] ; then \
|
2003-03-06 19:24:00 +01:00
|
|
|
set -x; \
|
|
|
|
rm -f $(TARGET_DIR)/$(GNUTAR_TARGET_BINARY); \
|
|
|
|
cp -a $(GNUTAR_DIR)/$(GNUTAR_BINARY) $(TARGET_DIR)/$(GNUTAR_TARGET_BINARY); fi ;
|
|
|
|
|
|
|
|
tar: uclibc tar-target_binary
|
2003-02-15 11:23:19 +01:00
|
|
|
|
|
|
|
tar-clean:
|
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(GNUTAR_DIR) uninstall
|
|
|
|
-$(MAKE) -C $(GNUTAR_DIR) clean
|
|
|
|
|
|
|
|
tar-dirclean:
|
|
|
|
rm -rf $(GNUTAR_DIR)
|
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_TAR)),y)
|
|
|
|
TARGETS+=tar
|
|
|
|
endif
|