]> git.ipfire.org Git - people/stevee/ipfire-3.x.git/blame - pkgs/core/coreutils/coreutils.nm
Merge remote branch 'stevee/X' into next
[people/stevee/ipfire-3.x.git] / pkgs / core / coreutils / coreutils.nm
CommitLineData
166a6c21
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
a7c97434 25include $(PKGROOT)/Include
166a6c21
MT
26
27PKG_NAME = coreutils
bca980b6 28PKG_VER = 8.5
166a6c21
MT
29PKG_REL = 0
30
31PKG_MAINTAINER =
32PKG_GROUP = System/Base
33PKG_URL = http://www.gnu.org/software/coreutils/
34PKG_LICENSE = GPLv3+
35PKG_SUMMARY = A set of basic GNU tools commonly used in shell scripts.
36
37define PKG_DESCRIPTION
38 These are the GNU core utilities. This package is the combination of \
39 the old GNU fileutils, sh-utils, and textutils packages.
40endef
41
d077d8ae
MT
42PKG_BUILD_DEPS+= autoconf automake libacl-devel libattr-devel libcap \
43 ncurses-devel e2fsprogs pam-devel
166a6c21
MT
44
45PKG_TARBALL = $(THISAPP).tar.gz
46
166a6c21
MT
47CFLAGS += -D_GNU_SOURCE=1 -fno-strict-aliasing
48
42ce981f
SS
49CONFIGURE_OPTIONS += \
50 --enable-pam \
51 --enable-largefile \
52 --enable-install-program=arch,hostname,su \
53 --enable-no-install-program=kill,uptime
166a6c21 54
42ce981f
SS
55define STAGE_PREPARE_CMDS
56 cd $(DIR_APP) && aclocal -I m4
57 cd $(DIR_APP) && autoconf --force
17c0ee8a 58endef
166a6c21 59
a0427139
MT
60#define STAGE_TEST
61# cd $(DIR_APP) && make RUN_EXPENSIVE_TESTS=yes check
62#endef
e7a5bed3 63
42ce981f 64define STAGE_INSTALL_CMDS
cde35c12 65 -mkdir -pv $(BUILDROOT)/{bin,etc/profile.d,usr/sbin}
166a6c21
MT
66 mv -v $(BUILDROOT)/usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} $(BUILDROOT)/bin
67 mv -v $(BUILDROOT)/usr/bin/{false,hostname,ln,ls,mkdir,mknod,mv,pwd,readlink,rm} $(BUILDROOT)/bin
68 mv -v $(BUILDROOT)/usr/bin/{rmdir,stty,sync,touch,true,uname} $(BUILDROOT)/bin
69 mv -v $(BUILDROOT)/usr/bin/chroot $(BUILDROOT)/usr/sbin
70 mv -v $(BUILDROOT)/usr/bin/{head,sleep,nice} $(BUILDROOT)/bin
71
72 cd $(DIR_APP) && install -m 4755 src/su $(BUILDROOT)/bin
73
1034db5f
MT
74 # Dump /etc/DIR_COLORS
75 dircolors -p > $(BUILDROOT)/etc/DIR_COLORS
76 cp -vf $(DIR_SOURCE)/profile.d/* $(BUILDROOT)/etc/profile.d/
17c0ee8a 77endef