2011-01-11 14:46:12 +01:00
|
|
|
# Template file for 'util-linux'
|
|
|
|
pkgname=util-linux
|
2012-10-12 12:32:37 +02:00
|
|
|
version=2.22.1
|
2012-09-05 07:02:19 +02:00
|
|
|
revision=1
|
2012-07-27 11:16:29 +02:00
|
|
|
depends="coreutils shadow>=4.1.5.1_3"
|
|
|
|
makedepends="pkg-config zlib-devel ncurses-devel pam-devel"
|
2012-07-27 11:41:46 +02:00
|
|
|
replaces="util-linux-ng>=0 e2fsprogs<=1.41.14_1 eject>=0 shadow<4.1.5.1_3"
|
2012-07-27 11:29:42 +02:00
|
|
|
provides="eject-${version}"
|
2012-05-27 20:40:57 +02:00
|
|
|
subpackages="libmount libmount-devel libblkid libblkid-devel libuuid libuuid-devel"
|
2008-10-31 02:09:14 +01:00
|
|
|
short_desc="Miscellaneous linux utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-08-30 09:37:43 +02:00
|
|
|
homepage="http://userweb.kernel.org/~kzak/util-linux-ng"
|
|
|
|
license="GPL-2"
|
2012-09-05 07:02:19 +02:00
|
|
|
distfiles="${KERNEL_SITE}/utils/${pkgname}/v2.22/${pkgname}-${version}.tar.xz"
|
2012-10-12 12:32:37 +02:00
|
|
|
checksum=c6de9f59882d7adedc2d2e7fdb940e8cdb256080491f632cabe7edde5764d82f
|
2008-10-31 02:09:14 +01:00
|
|
|
long_desc="
|
2011-01-11 14:46:12 +01:00
|
|
|
The ${pkgname} package contains miscellaneous utility programs. Among
|
2008-10-31 02:09:14 +01:00
|
|
|
them are utilities for handling file systems, consoles, partitions,
|
|
|
|
and messages."
|
|
|
|
|
2012-08-16 18:26:22 +02:00
|
|
|
# Create uuidd system account for uuidd.
|
|
|
|
system_accounts="uuidd"
|
|
|
|
uuidd_homedir="/run/uuidd"
|
2012-07-27 11:29:42 +02:00
|
|
|
systemd_services="uuidd.socket on"
|
2012-07-27 11:16:29 +02:00
|
|
|
|
|
|
|
conf_files="
|
|
|
|
/etc/pam.d/chfn
|
|
|
|
/etc/pam.d/chsh
|
|
|
|
/etc/pam.d/su
|
|
|
|
/etc/pam.d/login"
|
|
|
|
|
2012-01-23 11:04:59 +01:00
|
|
|
do_configure() {
|
2012-07-27 11:16:29 +02:00
|
|
|
./configure --prefix=/usr --exec-prefix=/usr --libdir=/usr/lib \
|
|
|
|
--bindir=/usr/bin --sbindir=/usr/sbin \
|
2011-07-03 00:24:33 +02:00
|
|
|
--enable-libuuid --disable-makeinstall-chown \
|
2011-10-10 23:00:02 +02:00
|
|
|
--enable-libblkid --enable-fsck --disable-rpath \
|
2012-02-29 11:51:35 +01:00
|
|
|
--enable-fs-paths-extra=/usr/sbin:/usr/bin \
|
2012-07-27 11:16:29 +02:00
|
|
|
--enable-vipw --enable-newgrp --enable-chfn-chsh \
|
|
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system \
|
|
|
|
--without-udev --enable-write --disable-kill \
|
2012-10-12 12:32:37 +02:00
|
|
|
--enable-socket-activation --disable-static \
|
2012-01-23 11:04:59 +01:00
|
|
|
SUID_CFLAGS="-fPIE" SUID_LDFLAGS="-pie"
|
2011-10-10 23:00:02 +02:00
|
|
|
}
|
2011-07-03 00:24:33 +02:00
|
|
|
|
2012-01-23 11:04:59 +01:00
|
|
|
do_build() {
|
2011-07-03 00:24:33 +02:00
|
|
|
make ${makejobs}
|
2009-03-05 04:24:00 +01:00
|
|
|
}
|
|
|
|
|
2012-01-23 11:04:59 +01:00
|
|
|
do_install() {
|
2011-07-03 00:24:33 +02:00
|
|
|
make DESTDIR=${DESTDIR} install
|
2012-07-27 11:16:29 +02: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 11:29:42 +02:00
|
|
|
|
|
|
|
# Provide sg(1) symlink.
|
2012-08-28 10:53:47 +02:00
|
|
|
cd ${DESTDIR}/usr/bin && ln -sf newgrp sg
|
2008-10-31 02:09:14 +01:00
|
|
|
}
|