9eb2562b3b
This way the su(1) session will always have a proper umask(2), set from /etc/login.defs by default.
128 lines
3.4 KiB
Text
128 lines
3.4 KiB
Text
# Template file for 'util-linux'
|
|
pkgname=util-linux
|
|
version=2.25.2
|
|
revision=4
|
|
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}/v${version%.*}/${pkgname}-${version}.tar.xz"
|
|
checksum=e0457f715b73f4a349e1acb08cb410bf0edc9a74a3f75c357070f31f70e33cd6
|
|
|
|
hostmakedepends="automake gettext-devel libtool pkg-config"
|
|
makedepends="zlib-devel ncurses-devel pam-devel>=1.1.8_4 libcap-ng-devel"
|
|
# Create uuidd system account for uuidd.
|
|
system_accounts="uuidd"
|
|
uuidd_homedir="/var/uuidd"
|
|
conf_files="
|
|
/etc/pam.d/chfn
|
|
/etc/pam.d/chsh
|
|
/etc/pam.d/su
|
|
/etc/pam.d/su-l
|
|
/etc/pam.d/login"
|
|
provides="eject-${version}_1"
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
do_configure() {
|
|
./configure ${configure_args} \
|
|
--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 \
|
|
--disable-vipw --enable-newgrp --enable-chfn-chsh \
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system \
|
|
--without-udev --enable-write --localstatedir=/run \
|
|
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 -sf newgrp ${DESTDIR}/usr/bin/sg
|
|
|
|
vsv uuidd
|
|
}
|
|
|
|
libmount_package() {
|
|
short_desc="A mount(8) library"
|
|
pkg_install() {
|
|
vmove "usr/lib/libmount.so.*"
|
|
}
|
|
}
|
|
libmount-devel_package() {
|
|
depends="libblkid-devel-${version}_${revision} libmount-${version}_${revision}"
|
|
short_desc="mount(8) library development files"
|
|
pkg_install() {
|
|
vmove usr/lib/libmount.a
|
|
vmove usr/lib/libmount.so
|
|
vmove "usr/lib/pkgconfig/*mount*"
|
|
vmove usr/include/libmount
|
|
}
|
|
}
|
|
libblkid_package() {
|
|
short_desc="Library to handle device identification"
|
|
pkg_install() {
|
|
vmove "usr/lib/libblkid.so.*"
|
|
}
|
|
}
|
|
libblkid-devel_package() {
|
|
depends="zlib-devel libuuid-devel-${version}_${revision} libblkid-${version}_${revision}"
|
|
short_desc="libblkid development files"
|
|
pkg_install() {
|
|
vmove usr/include/blkid
|
|
vmove usr/lib/libblkid.a
|
|
vmove usr/lib/libblkid.so
|
|
vmove usr/lib/pkgconfig/blkid.pc
|
|
vmove usr/share/man/man3/libblkid.3
|
|
}
|
|
}
|
|
libuuid_package() {
|
|
short_desc="UUID library"
|
|
pkg_install() {
|
|
vmove "usr/lib/libuuid.so.*"
|
|
}
|
|
}
|
|
libuuid-devel_package() {
|
|
depends="libuuid-${version}_${revision}"
|
|
short_desc="UUID library development files"
|
|
pkg_install() {
|
|
vmove usr/lib/libuuid.a
|
|
vmove usr/lib/libuuid.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/include/uuid
|
|
vmove usr/share/man/man3/uuid*
|
|
}
|
|
}
|
|
libsmartcols-devel_package() {
|
|
depends="libsmartcols>=${version}_${revision}"
|
|
short_desc="Table or Tree library from util-linux - development files"
|
|
pkg_install() {
|
|
vmove usr/lib/libsmartcols.a
|
|
vmove usr/lib/libsmartcols.so
|
|
vmove usr/include/libsmartcols
|
|
vmove usr/lib/pkgconfig/smartcols*
|
|
}
|
|
}
|
|
libsmartcols_package() {
|
|
short_desc="Table or Tree library from util-linux"
|
|
pkg_install() {
|
|
vmove usr/lib/libsmartcols.so.*
|
|
}
|
|
}
|
|
|