2011-01-11 13:46:12 +00:00
|
|
|
# Template file for 'util-linux'
|
|
|
|
pkgname=util-linux
|
2012-09-05 05:02:19 +00:00
|
|
|
version=2.22
|
|
|
|
revision=1
|
2012-07-27 09:16:29 +00:00
|
|
|
depends="coreutils shadow>=4.1.5.1_3"
|
|
|
|
makedepends="pkg-config zlib-devel ncurses-devel pam-devel"
|
2012-07-27 09:41:46 +00:00
|
|
|
replaces="util-linux-ng>=0 e2fsprogs<=1.41.14_1 eject>=0 shadow<4.1.5.1_3"
|
2012-07-27 09:29:42 +00:00
|
|
|
provides="eject-${version}"
|
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"
|
|
|
|
checksum=32b329aa72c2ea546378bf81f08e30cf30440196c2edf7777b4f509a3fdbe5a2
|
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."
|
|
|
|
|
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
|
|
|
|
/etc/pam.d/login"
|
|
|
|
|
2012-01-23 10:04:59 +00:00
|
|
|
do_configure() {
|
2012-07-27 09:16:29 +00:00
|
|
|
./configure --prefix=/usr --exec-prefix=/usr --libdir=/usr/lib \
|
|
|
|
--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 \
|
|
|
|
--without-udev --enable-write --disable-kill \
|
2012-08-16 16:30:21 +00:00
|
|
|
--enable-socket-activation \
|
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
|
|
|
|
|
|
|
# pam login utils.
|
|
|
|
vinstall $FILESDIR/login.pam 644 etc/pam.d login
|
|
|
|
vinstall $FILESDIR/su.pam 644 etc/pam.d su
|
|
|
|
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-08-28 08:53:47 +00:00
|
|
|
cd ${DESTDIR}/usr/bin && ln -sf newgrp sg
|
2008-10-31 01:09:14 +00:00
|
|
|
}
|