void-packages/srcpkgs/util-linux/template

65 lines
2.0 KiB
Plaintext
Raw Normal View History

# Template file for 'util-linux'
pkgname=util-linux
2012-07-27 11:16:29 +02:00
_distver=2.22
2012-08-16 17:33:09 +02:00
_patchver=rc2
2012-07-27 11:16:29 +02:00
wrksrc=${pkgname}-${_distver}-${_patchver}
version=${_distver}${_patchver}
2012-08-28 10:53:47 +02:00
revision=4
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"
provides="eject-${version}"
2012-05-27 20:40:57 +02:00
subpackages="libmount libmount-devel libblkid libblkid-devel libuuid libuuid-devel"
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-07-27 11:16:29 +02:00
distfiles="${KERNEL_SITE}/utils/${pkgname}/v2.22/${pkgname}-${_distver}-${_patchver}.tar.xz"
2012-08-16 17:33:09 +02:00
checksum=fd5258428e63935b4d04ae4bccf9e1e8fcdf1f93feb38f4b546b23f5713403e3
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"
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"
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 \
--enable-libuuid --disable-makeinstall-chown \
--enable-libblkid --enable-fsck --disable-rpath \
--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 \
--enable-socket-activation \
SUID_CFLAGS="-fPIE" SUID_LDFLAGS="-pie"
}
do_build() {
make ${makejobs}
}
do_install() {
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
# Provide sg(1) symlink.
2012-08-28 10:53:47 +02:00
cd ${DESTDIR}/usr/bin && ln -sf newgrp sg
}