2002-10-23 14:54:42 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# coreutils
|
|
|
|
#
|
|
|
|
#############################################################
|
2003-06-25 23:22:00 +02:00
|
|
|
COREUTILS_SOURCE:=coreutils-5.0.tar.bz2
|
|
|
|
COREUTILS_SITE:=ftp://ftp.gnu.org/gnu/coreutils/
|
2002-10-23 14:54:42 +02:00
|
|
|
COREUTILS_CAT:=bzcat
|
2003-06-25 23:22:00 +02:00
|
|
|
COREUTILS_DIR:=$(BUILD_DIR)/coreutils-5.0
|
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)
|
|
|
|
$(COREUTILS_CAT) $(DL_DIR)/$(COREUTILS_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
|
|
|
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-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 \
|
|
|
|
--disable-nls \
|
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
|
|
|
|
perl -i -p -e 's,.*UTILS_OPEN_MAX.*,#define UTILS_OPEN_MAX 1019,g' \
|
|
|
|
$(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-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
|
|
|
|
|
|
|
coreutils: uclibc $(TARGET_DIR)/$(COREUTILS_TARGET_BINARY)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|