65 lines
2.1 KiB
Text
65 lines
2.1 KiB
Text
# Template file for 'util-linux'
|
|
pkgname=util-linux
|
|
version=2.22.2
|
|
revision=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}"
|
|
subpackages="libmount libmount-devel libblkid libblkid-devel libuuid libuuid-devel"
|
|
short_desc="Miscellaneous linux utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://userweb.kernel.org/~kzak/util-linux-ng"
|
|
license="GPL-2"
|
|
distfiles="${KERNEL_SITE}/utils/${pkgname}/v2.22/${pkgname}-${version}.tar.xz"
|
|
checksum=929b517fa39b16a61ec536514e08940a381b92befc629d0348e3097920dd2f12
|
|
long_desc="
|
|
The ${pkgname} package contains miscellaneous utility programs. Among
|
|
them are utilities for handling file systems, consoles, partitions,
|
|
and messages."
|
|
|
|
# Create uuidd system account for uuidd.
|
|
system_accounts="uuidd"
|
|
uuidd_homedir="/run/uuidd"
|
|
systemd_services="uuidd.socket on"
|
|
|
|
conf_files="
|
|
/etc/pam.d/chfn
|
|
/etc/pam.d/chsh
|
|
/etc/pam.d/su
|
|
/etc/pam.d/su-l
|
|
/etc/pam.d/login"
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --exec-prefix=/usr --libdir=/usr/lib \
|
|
--bindir=/usr/bin --sbindir=/usr/sbin \
|
|
--enable-libuuid --disable-makeinstall-chown \
|
|
--enable-libblkid --enable-fsck --disable-rpath \
|
|
--enable-fs-paths-extra=/usr/sbin:/usr/bin \
|
|
--enable-vipw --enable-newgrp --enable-chfn-chsh \
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system \
|
|
--without-udev --enable-write --disable-kill \
|
|
--enable-socket-activation --disable-static \
|
|
SUID_CFLAGS="-fPIE" SUID_LDFLAGS="-pie"
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
# Correct perms for newgrp, chfn, chsh, wall and write.
|
|
chmod u+s $DESTDIR/usr/bin/{newgrp,chsh,chfn}
|
|
|
|
# pam login utils.
|
|
vinstall $FILESDIR/login.pam 644 etc/pam.d login
|
|
vinstall $FILESDIR/su.pam 644 etc/pam.d su
|
|
vinstall $FILESDIR/su.pam 644 etc/pam.d su-l
|
|
vinstall $FILESDIR/common.pam 644 etc/pam.d chfn
|
|
vinstall $FILESDIR/common.pam 644 etc/pam.d chsh
|
|
|
|
# Provide sg(1) symlink.
|
|
ln -sfr ${DESTDIR}/usr/bin/newgrp ${DESTDIR}/usr/bin/sg
|
|
}
|