2011-01-11 13:46:12 +00:00
|
|
|
# Template file for 'util-linux'
|
|
|
|
pkgname=util-linux
|
2012-12-14 00:47:52 +00:00
|
|
|
version=2.22.2
|
2013-02-20 10:52:56 +00:00
|
|
|
revision=7
|
2012-05-27 18:40:57 +00:00
|
|
|
subpackages="libmount libmount-devel libblkid libblkid-devel libuuid libuuid-devel"
|
2008-10-31 01:09:14 +00:00
|
|
|
short_desc="Miscellaneous linux utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-08-30 07:37:43 +00:00
|
|
|
homepage="http://userweb.kernel.org/~kzak/util-linux-ng"
|
|
|
|
license="GPL-2"
|
2012-09-05 05:02:19 +00:00
|
|
|
distfiles="${KERNEL_SITE}/utils/${pkgname}/v2.22/${pkgname}-${version}.tar.xz"
|
2012-12-14 00:47:52 +00:00
|
|
|
checksum=929b517fa39b16a61ec536514e08940a381b92befc629d0348e3097920dd2f12
|
2008-10-31 01:09:14 +00:00
|
|
|
|
2013-02-20 10:52:56 +00:00
|
|
|
conflicts="chroot-util-linux>=0 coreutils<8.21_3"
|
|
|
|
depends="coreutils shadow>=4.1.5.1_3"
|
|
|
|
makedepends="pkg-config zlib-devel ncurses-devel pam-devel"
|
|
|
|
replaces="util-linux-ng>=0 e2fsprogs<=1.41.14_1 eject>=0 shadow<4.1.5.1_3"
|
|
|
|
provides="eject-${version}"
|
|
|
|
|
2012-08-16 16:26:22 +00:00
|
|
|
# Create uuidd system account for uuidd.
|
|
|
|
system_accounts="uuidd"
|
|
|
|
uuidd_homedir="/run/uuidd"
|
2012-07-27 09:29:42 +00:00
|
|
|
systemd_services="uuidd.socket on"
|
2012-07-27 09:16:29 +00:00
|
|
|
|
|
|
|
conf_files="
|
|
|
|
/etc/pam.d/chfn
|
|
|
|
/etc/pam.d/chsh
|
|
|
|
/etc/pam.d/su
|
2012-12-19 13:49:46 +00:00
|
|
|
/etc/pam.d/su-l
|
2012-07-27 09:16:29 +00:00
|
|
|
/etc/pam.d/login"
|
|
|
|
|
2013-02-08 12:15:23 +00:00
|
|
|
if [ -n "$XBPS_CROSS_TRIPLET" ]; then
|
|
|
|
makedepends="automake gettext-devel pkg-config"
|
|
|
|
crossmakedepends="zlib-devel ncurses-devel pam-devel>=1.1.6_3"
|
|
|
|
_confargs="PKG_CONFIG_LIB_DIR=/usr/$XBPS_CROSS_TRIPLET/lib/pkgconfig"
|
|
|
|
pre_configure() {
|
|
|
|
./autogen.sh
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2012-01-23 10:04:59 +00:00
|
|
|
do_configure() {
|
2013-02-08 12:15:23 +00:00
|
|
|
./configure ${CONFIGURE_SHARED_ARGS} \
|
|
|
|
--exec-prefix=/usr --libdir=/usr/lib \
|
2012-07-27 09:16:29 +00:00
|
|
|
--bindir=/usr/bin --sbindir=/usr/sbin \
|
2011-07-02 22:24:33 +00:00
|
|
|
--enable-libuuid --disable-makeinstall-chown \
|
2011-10-10 21:00:02 +00:00
|
|
|
--enable-libblkid --enable-fsck --disable-rpath \
|
2012-02-29 10:51:35 +00:00
|
|
|
--enable-fs-paths-extra=/usr/sbin:/usr/bin \
|
2012-07-27 09:16:29 +00:00
|
|
|
--enable-vipw --enable-newgrp --enable-chfn-chsh \
|
|
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system \
|
2013-02-20 10:52:56 +00:00
|
|
|
--without-udev --enable-write \
|
2013-02-08 12:15:23 +00:00
|
|
|
--enable-socket-activation --disable-static ${_confargs} \
|
2012-01-23 10:04:59 +00:00
|
|
|
SUID_CFLAGS="-fPIE" SUID_LDFLAGS="-pie"
|
2011-10-10 21:00:02 +00:00
|
|
|
}
|
2011-07-02 22:24:33 +00:00
|
|
|
|
2012-01-23 10:04:59 +00:00
|
|
|
do_build() {
|
2011-07-02 22:24:33 +00:00
|
|
|
make ${makejobs}
|
2009-03-05 03:24:00 +00:00
|
|
|
}
|
|
|
|
|
2012-01-23 10:04:59 +00:00
|
|
|
do_install() {
|
2011-07-02 22:24:33 +00:00
|
|
|
make DESTDIR=${DESTDIR} install
|
2012-07-27 09:16:29 +00:00
|
|
|
|
2012-12-19 13:49:46 +00:00
|
|
|
# Correct perms for newgrp, chfn, chsh, wall and write.
|
|
|
|
chmod u+s $DESTDIR/usr/bin/{newgrp,chsh,chfn}
|
|
|
|
|
2012-07-27 09:16:29 +00:00
|
|
|
# pam login utils.
|
|
|
|
vinstall $FILESDIR/login.pam 644 etc/pam.d login
|
|
|
|
vinstall $FILESDIR/su.pam 644 etc/pam.d su
|
2012-12-19 13:49:46 +00:00
|
|
|
vinstall $FILESDIR/su.pam 644 etc/pam.d su-l
|
2012-07-27 09:16:29 +00:00
|
|
|
vinstall $FILESDIR/common.pam 644 etc/pam.d chfn
|
|
|
|
vinstall $FILESDIR/common.pam 644 etc/pam.d chsh
|
2012-07-27 09:29:42 +00:00
|
|
|
|
|
|
|
# Provide sg(1) symlink.
|
2012-12-19 13:49:46 +00:00
|
|
|
ln -sfr ${DESTDIR}/usr/bin/newgrp ${DESTDIR}/usr/bin/sg
|
2008-10-31 01:09:14 +00:00
|
|
|
}
|