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