2011-01-11 14:46:12 +01:00
|
|
|
# Template file for 'util-linux'
|
|
|
|
pkgname=util-linux
|
|
|
|
_distver=2.19
|
2011-02-11 17:34:46 +01:00
|
|
|
#_patchver=rc3
|
2011-01-11 14:46:12 +01:00
|
|
|
version=${_distver}${_patchver}
|
2011-02-11 17:34:46 +01:00
|
|
|
wrksrc=${pkgname}-${_distver}
|
|
|
|
distfiles="${KERNEL_SITE}/utils/${pkgname}-ng/v${_distver}/${pkgname}-${_distver}.tar.bz2"
|
2008-10-31 02:09:14 +01:00
|
|
|
build_style=gnu_configure
|
2010-02-17 04:04:58 +01:00
|
|
|
configure_args="--enable-partx --enable-write --enable-libuuid
|
2010-04-23 15:31:29 +02:00
|
|
|
--enable-libblkid --disable-fsck --disable-rpath --with-gnu-ld
|
|
|
|
--disable-makeinstall-chown"
|
2008-10-31 02:09:14 +01:00
|
|
|
short_desc="Miscellaneous linux utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-02-11 17:34:46 +01:00
|
|
|
checksum=d8189ba6dfb508d5c36f50103a7b84943d893e51e6d7a314155a82f68efb33b6
|
2008-10-31 02:09:14 +01:00
|
|
|
long_desc="
|
2011-01-11 14:46:12 +01:00
|
|
|
The ${pkgname} package contains miscellaneous utility programs. Among
|
2008-10-31 02:09:14 +01:00
|
|
|
them are utilities for handling file systems, consoles, partitions,
|
|
|
|
and messages."
|
|
|
|
|
2011-01-11 14:46:12 +01:00
|
|
|
replaces="util-linux-ng>=0"
|
|
|
|
subpackages="libmount libmount-devel libblkid libblkid-devel libuuid libuuid-devel"
|
2009-10-17 03:12:48 +02:00
|
|
|
# Required by /var/lib/hwclock
|
|
|
|
keep_empty_dirs=yes
|
|
|
|
|
2010-01-07 21:43:57 +01:00
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run coreutils
|
|
|
|
Add_dependency run zlib
|
|
|
|
Add_dependency run libuuid
|
|
|
|
Add_dependency run libblkid
|
2010-10-22 18:34:57 +02:00
|
|
|
Add_dependency run libmount
|
2010-02-17 04:04:58 +01:00
|
|
|
Add_dependency run ncursesw
|
2010-04-23 15:31:29 +02:00
|
|
|
Add_dependency run shadow
|
2010-01-07 21:43:57 +01:00
|
|
|
Add_dependency build pkg-config
|
|
|
|
Add_dependency build gettext
|
|
|
|
Add_dependency build zlib-devel
|
2010-02-17 04:04:58 +01:00
|
|
|
Add_dependency build ncursesw-devel
|
2008-10-31 02:09:14 +01:00
|
|
|
|
2009-03-05 04:24:00 +01:00
|
|
|
post_configure()
|
|
|
|
{
|
|
|
|
cd $wrksrc
|
2009-03-18 10:02:43 +01:00
|
|
|
for f in $(grep -rl '/etc/adjtime' .); do
|
|
|
|
sed -i -e 's@etc/adjtime@var/lib/hwclock/adjtime@g' $f
|
|
|
|
done
|
2009-03-05 04:24:00 +01:00
|
|
|
}
|
|
|
|
|
2008-10-31 02:09:14 +01:00
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Move logger to /bin.
|
2009-03-11 06:31:56 +01:00
|
|
|
install -d -m 755 ${DESTDIR}/bin
|
|
|
|
mv ${DESTDIR}/usr/bin/logger ${DESTDIR}/bin
|
|
|
|
mkdir -p ${DESTDIR}/var/lib/hwclock
|
2009-03-28 18:49:46 +01:00
|
|
|
|
|
|
|
# Install the cron daily job.
|
2009-03-29 07:23:39 +02:00
|
|
|
install -D -m744 ${FILESDIR}/adjtime.cron-hourly \
|
2009-03-28 18:49:46 +01:00
|
|
|
${DESTDIR}/etc/cron.hourly/adjtime
|
2008-10-31 02:09:14 +01:00
|
|
|
}
|