2013-02-19 23:51:50 +01:00
|
|
|
# Template file for 'procps-ng'
|
|
|
|
pkgname=procps-ng
|
|
|
|
version=3.3.5
|
2013-02-20 00:22:04 +01:00
|
|
|
revision=3
|
2013-02-19 23:51:50 +01:00
|
|
|
wrksrc="procps-procps"
|
|
|
|
build_style=gnu-configure
|
2013-02-20 00:05:29 +01:00
|
|
|
configure_args="--exec-prefix=/ --prefix=/usr --libdir=/usr/lib --disable-static"
|
2013-02-19 23:51:50 +01:00
|
|
|
short_desc="Utilities for monitoring your system and its processes"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="GPL-2, LGPL-2.1"
|
|
|
|
homepage="http://gitorious.org/procps"
|
|
|
|
distfiles="http://xbps.nopcode.org/distfiles/${pkgname}-${version}.tar.gz"
|
|
|
|
checksum=d3ac6611af888ef8e4f32f4b60718af77d32d8e3abe07f63d985b3abca332d53
|
|
|
|
|
|
|
|
conf_files="/etc/sysctl.conf"
|
|
|
|
replaces="procps>=0"
|
|
|
|
makedepends="automake gettext-devel pkg-config ncurses-devel"
|
|
|
|
crossmakedepends="ncurses-devel"
|
|
|
|
|
2013-02-20 00:05:29 +01:00
|
|
|
if [ -n "$XBPS_CROSS_TRIPLET" ]; then
|
|
|
|
configure_args="${configure_args} ac_cv_func_malloc_0_nonnull=yes
|
|
|
|
ac_cv_func_realloc_0_nonnull=yes"
|
|
|
|
fi
|
|
|
|
|
2013-02-19 23:51:50 +01:00
|
|
|
pre_configure() {
|
|
|
|
echo ${version} > .tarball-version
|
|
|
|
./autogen.sh
|
|
|
|
}
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
vinstall ${FILESDIR}/sysctl.conf 644 etc
|
|
|
|
|
|
|
|
# provided by coreutils
|
2013-02-20 00:25:11 +01:00
|
|
|
rm ${DESTDIR}/bin/kill
|
|
|
|
rm ${DESTDIR}/usr/bin/uptime
|
2013-02-20 00:22:04 +01:00
|
|
|
rm ${DESTDIR}/usr/share/man/man1/{uptime,kill}.1
|
2013-02-19 23:51:50 +01:00
|
|
|
|
2013-02-20 00:05:29 +01:00
|
|
|
vmove "bin/*" usr/bin
|
|
|
|
vmkdir usr/sbin
|
|
|
|
vmove "sbin/*" usr/sbin
|
|
|
|
|
2013-02-19 23:51:50 +01:00
|
|
|
# Create pidof symlink.
|
|
|
|
ln -sfr ${DESTDIR}/usr/bin/pgrep ${DESTDIR}/usr/bin/pidof
|
|
|
|
|
|
|
|
# Remove devel and docs.
|
|
|
|
rm -rf ${DESTDIR}/usr/share/doc \
|
|
|
|
${DESTDIR}/usr/include ${DESTDIR}/usr/lib/pkgconfig
|
|
|
|
|
|
|
|
}
|