2002-10-23 14:54:42 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# coreutils
|
|
|
|
#
|
|
|
|
#############################################################
|
2004-12-22 06:29:13 +01:00
|
|
|
COREUTILS_VER:=5.2.1
|
|
|
|
COREUTILS_SOURCE:=coreutils-$(COREUTILS_VER).tar.bz2
|
2003-06-25 23:22:00 +02:00
|
|
|
COREUTILS_SITE:=ftp://ftp.gnu.org/gnu/coreutils/
|
2002-10-23 14:54:42 +02:00
|
|
|
COREUTILS_CAT:=bzcat
|
2004-12-22 06:29:13 +01:00
|
|
|
COREUTILS_DIR:=$(BUILD_DIR)/coreutils-$(COREUTILS_VER)
|
2003-03-06 18:44:29 +01:00
|
|
|
COREUTILS_BINARY:=src/vdir
|
|
|
|
COREUTILS_TARGET_BINARY:=bin/vdir
|
2003-03-10 18:45:39 +01:00
|
|
|
BIN_PROGS:=cat chgrp chmod chown cp date dd df dir echo false hostname \
|
|
|
|
ln ls mkdir mknod mv pwd rm rmdir vdir sleep stty sync touch true uname
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
$(DL_DIR)/$(COREUTILS_SOURCE):
|
2002-11-21 00:16:10 +01:00
|
|
|
$(WGET) -P $(DL_DIR) $(COREUTILS_SITE)/$(COREUTILS_SOURCE)
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
coreutils-source: $(DL_DIR)/$(COREUTILS_SOURCE)
|
|
|
|
|
|
|
|
$(COREUTILS_DIR)/.unpacked: $(DL_DIR)/$(COREUTILS_SOURCE)
|
2004-10-09 23:19:47 +02:00
|
|
|
$(COREUTILS_CAT) $(DL_DIR)/$(COREUTILS_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2002-10-23 14:54:42 +02:00
|
|
|
touch $(COREUTILS_DIR)/.unpacked
|
|
|
|
|
|
|
|
$(COREUTILS_DIR)/.configured: $(COREUTILS_DIR)/.unpacked
|
2003-01-17 09:03:59 +01:00
|
|
|
(cd $(COREUTILS_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)" \
|
2004-05-28 19:50:07 +02:00
|
|
|
ac_cv_func_strtod=yes \
|
2003-01-17 09:03:59 +01:00
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
2003-03-04 20:16:19 +01:00
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
2003-01-17 09:03:59 +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-03-31 22:01:12 +02:00
|
|
|
--disable-rpath \
|
|
|
|
--disable-dependency-tracking \
|
2002-10-23 14:54:42 +02:00
|
|
|
);
|
2003-03-04 20:16:19 +01:00
|
|
|
#Fix up the max number of open files per process, which apparently
|
|
|
|
# is not set when cross compiling
|
2003-11-19 18:17:56 +01:00
|
|
|
$(SED) 's,.*UTILS_OPEN_MAX.*,#define UTILS_OPEN_MAX 1019,g' \
|
2003-03-04 20:16:19 +01:00
|
|
|
$(COREUTILS_DIR)/config.h
|
2003-09-03 09:18:18 +02:00
|
|
|
# This is undefined when crosscompiling...
|
2003-11-19 18:17:56 +01:00
|
|
|
$(SED) 's,.*HAVE_PROC_UPTIME.*,#define HAVE_PROC_UPTIME 1,g' \
|
2003-09-03 09:18:18 +02:00
|
|
|
$(COREUTILS_DIR)/config.h
|
2002-10-23 14:54:42 +02:00
|
|
|
touch $(COREUTILS_DIR)/.configured
|
|
|
|
|
|
|
|
$(COREUTILS_DIR)/$(COREUTILS_BINARY): $(COREUTILS_DIR)/.configured
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) CC=$(TARGET_CC) -C $(COREUTILS_DIR)
|
2003-03-06 18:44:29 +01:00
|
|
|
rm -f $(TARGET_DIR)/$(COREUTILS_TARGET_BINARY)
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
$(TARGET_DIR)/$(COREUTILS_TARGET_BINARY): $(COREUTILS_DIR)/$(COREUTILS_BINARY)
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(COREUTILS_DIR) install
|
2002-10-23 14:54:42 +02:00
|
|
|
# some things go in root rather than usr
|
|
|
|
for f in $(BIN_PROGS); do \
|
|
|
|
mv $(TARGET_DIR)/usr/bin/$$f $(TARGET_DIR)/bin/$$f; \
|
|
|
|
done
|
|
|
|
# link for archaic shells
|
|
|
|
ln -fs test $(TARGET_DIR)/usr/bin/[
|
|
|
|
# gnu thinks chroot is in bin, debian thinks it's in sbin
|
|
|
|
mv $(TARGET_DIR)/usr/bin/chroot $(TARGET_DIR)/usr/sbin/chroot
|
2003-11-01 06:34:41 +01:00
|
|
|
$(STRIP) $(TARGET_DIR)/usr/sbin/chroot > /dev/null 2>&1
|
2003-01-17 09:51:21 +01:00
|
|
|
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
|
|
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
2002-10-23 14:54:42 +02:00
|
|
|
|
2004-12-27 22:49:53 +01:00
|
|
|
#If both coreutils and busybox are selected, make certain coreutils
|
|
|
|
#wins the fight over who gets to have their utils actually installed
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
|
coreutils: uclibc busybox $(TARGET_DIR)/$(COREUTILS_TARGET_BINARY)
|
|
|
|
else
|
2002-10-23 14:54:42 +02:00
|
|
|
coreutils: uclibc $(TARGET_DIR)/$(COREUTILS_TARGET_BINARY)
|
2004-12-27 22:49:53 +01:00
|
|
|
endif
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
coreutils-clean:
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(COREUTILS_DIR) uninstall
|
2003-01-17 09:03:59 +01:00
|
|
|
-$(MAKE) -C $(COREUTILS_DIR) clean
|
2002-10-23 14:54:42 +02:00
|
|
|
|
|
|
|
coreutils-dirclean:
|
|
|
|
rm -rf $(COREUTILS_DIR)
|
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_COREUTILS)),y)
|
|
|
|
TARGETS+=coreutils
|
|
|
|
endif
|