2008-10-22 14:11:22 +00:00
|
|
|
# Template file for 'coreutils'
|
|
|
|
pkgname=coreutils
|
2013-12-15 07:43:09 +00:00
|
|
|
version=8.22
|
2014-03-14 08:44:03 +00:00
|
|
|
revision=2
|
2013-04-11 08:33:01 +00:00
|
|
|
hostmakedepends="perl"
|
|
|
|
makedepends="gmp-devel acl-devel libcap-devel"
|
2014-01-01 15:10:11 +00:00
|
|
|
depends="coreutils-doc-${version}_${revision}"
|
|
|
|
conflicts="chroot-coreutils>=0 procps-ng<3.3.5_3"
|
2008-10-22 14:11:22 +00:00
|
|
|
short_desc="The GNU core utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-09-19 14:57:33 +00:00
|
|
|
homepage="http://www.gnu.org/software/coreutils"
|
|
|
|
license="GPL-3"
|
2013-01-13 19:59:00 +00:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/coreutils/${pkgname}-${version}.tar.xz"
|
2013-12-15 07:43:09 +00:00
|
|
|
checksum=5b3e94998152c017e6c75d56b9b994188eb71bf46d4038a642cb9141f6ff1212
|
2013-02-08 14:30:01 +00:00
|
|
|
|
|
|
|
do_configure() {
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-05-26 08:41:55 +00:00
|
|
|
configure_args+=" fu_cv_sys_stat_statfs2_bsize=yes
|
2013-02-08 14:30:01 +00:00
|
|
|
gl_cv_func_working_mkstemp=yes
|
2013-05-26 08:41:55 +00:00
|
|
|
gl_cv_func_working_acl_get_file=yes "
|
2013-02-08 14:30:01 +00:00
|
|
|
fi
|
2013-02-20 10:44:39 +00:00
|
|
|
#
|
|
|
|
# Do not install kill: provided by util-linux.
|
|
|
|
# Do not install uptime: provided by procps-ng.
|
|
|
|
#
|
2013-05-26 08:41:55 +00:00
|
|
|
./configure ${configure_args} \
|
2013-02-08 14:30:01 +00:00
|
|
|
--enable-install-program=hostname \
|
2013-02-20 10:44:39 +00:00
|
|
|
--enable-no-install-program=kill,uptime \
|
2013-05-26 08:41:55 +00:00
|
|
|
--disable-rpath
|
2013-02-08 14:30:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-02-08 14:30:01 +00:00
|
|
|
cp Makefile Makefile.orig
|
|
|
|
sed '/src_make_prime_list/d' Makefile.orig > Makefile
|
|
|
|
depbase=`echo src/make-prime-list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
|
2013-05-26 08:41:55 +00:00
|
|
|
cc -std=gnu99 -I. -I./lib -Ilib -I./lib -Isrc -I./src \
|
2013-02-08 14:30:01 +00:00
|
|
|
-fdiagnostics-show-option -funit-at-a-time -g -O2 -MT \
|
|
|
|
src/make-prime-list.o -MD -MP -MF $depbase.Tpo -c -o src/make-prime-list.o \
|
|
|
|
src/make-prime-list.c &&
|
|
|
|
mv -f $depbase.Tpo $depbase.Po
|
2013-05-26 08:41:55 +00:00
|
|
|
cc -std=gnu99 -fdiagnostics-show-option -funit-at-a-time -g -O2 \
|
2013-02-08 14:30:01 +00:00
|
|
|
-Wl,--as-needed -o src/make-prime-list src/make-prime-list.o
|
|
|
|
cp Makefile Makefile.bak
|
|
|
|
sed -e '/hostname.1/d' Makefile.bak > Makefile
|
|
|
|
fi
|
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-02-08 14:30:01 +00:00
|
|
|
rm -rf ${DESTDIR}/usr/share/info
|
|
|
|
fi
|
|
|
|
}
|
2013-04-11 08:33:01 +00:00
|
|
|
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
coreutils-doc_package() {
|
|
|
|
noarch=yes
|
2013-12-15 07:43:09 +00:00
|
|
|
short_desc+=" - documentation files"
|
2013-04-11 08:33:01 +00:00
|
|
|
replaces="coreutils<8.20_4"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/share/info
|
|
|
|
vmove usr/share/man
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fi
|