2006-12-19 00:17:33 +01:00
|
|
|
#
|
2011-06-22 13:36:15 +02:00
|
|
|
# spec file for package psmisc
|
2006-12-19 00:17:33 +01:00
|
|
|
#
|
2012-01-09 10:21:03 +01:00
|
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-19 00:17:33 +01:00
|
|
|
#
|
2008-08-08 02:14:10 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2006-12-19 00:17:33 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-01-09 10:21:03 +01:00
|
|
|
|
2006-12-19 00:17:33 +01:00
|
|
|
Name: psmisc
|
2011-12-01 21:11:49 +01:00
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: glibc-devel
|
2008-08-22 20:17:12 +02:00
|
|
|
BuildRequires: libselinux-devel
|
2011-12-01 21:11:49 +01:00
|
|
|
BuildRequires: ncurses-devel
|
2011-06-22 13:36:15 +02:00
|
|
|
Url: http://sourceforge.net/projects/psmisc/
|
2006-12-19 00:17:33 +01:00
|
|
|
PreReq: %fillup_prereq %insserv_prereq
|
2012-02-27 18:46:23 +01:00
|
|
|
Version: 22.16
|
2012-03-13 16:28:38 +01:00
|
|
|
Release: 0
|
2006-12-19 00:17:33 +01:00
|
|
|
Provides: ps:/usr/bin/killall
|
|
|
|
Summary: Utilities for managing processes on your system
|
2012-03-13 16:28:38 +01:00
|
|
|
License: GPL-2.0+
|
|
|
|
Group: System/Monitoring
|
2011-06-22 13:36:15 +02:00
|
|
|
Source: http://sourceforge.net/projects/psmisc/files/psmisc/%{name}-%{version}.tar.gz
|
2012-02-27 18:46:23 +01:00
|
|
|
Patch0: %name-22.16.dif
|
2010-07-13 18:50:33 +02:00
|
|
|
Patch1: %name-22.12-tigetstr.patch
|
2011-09-12 17:50:38 +02:00
|
|
|
Patch2: %name-22.12-pstree.patch
|
2012-03-13 16:28:38 +01:00
|
|
|
Patch42: pstree-segfault.patch
|
|
|
|
Patch43: %name-22.16-timeout.patch
|
2010-07-13 18:50:33 +02:00
|
|
|
|
2006-12-19 00:17:33 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-07-13 18:50:33 +02:00
|
|
|
%define nopeek s390 s390x ia64 %sparc hppa
|
2006-12-19 00:17:33 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
The psmisc package contains utilities for managing processes on your
|
|
|
|
system: pstree, killall and fuser. The pstree command displays a tree
|
|
|
|
structure of all of the running processes on your system. The killall
|
|
|
|
command sends a specified signal (SIGTERM if nothing is specified) to
|
|
|
|
processes identified by name. The fuser command identifies the PIDs of
|
|
|
|
processes that are using specified files or filesystems.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2012-03-13 16:28:38 +01:00
|
|
|
%patch42 -p1 -b .to
|
|
|
|
%patch43 -p1 -b .comm
|
2010-07-13 18:50:33 +02:00
|
|
|
%patch1 -p0 -b .tigetstr
|
2011-09-12 17:50:38 +02:00
|
|
|
%patch2 -p0 -b .pstree
|
2011-02-08 17:55:25 +01:00
|
|
|
%patch0 -p0 -b .0
|
2006-12-19 00:17:33 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
autoreconf -fi
|
2010-07-13 18:50:33 +02:00
|
|
|
CFLAGS="-D_GNU_SOURCE ${RPM_OPT_FLAGS} -pipe"
|
2007-04-26 15:51:55 +02:00
|
|
|
CXXFLAGS="$CFLAGS"
|
2006-12-19 00:17:33 +01:00
|
|
|
CC=gcc
|
2007-04-26 15:51:55 +02:00
|
|
|
CXX=g++
|
|
|
|
export CFLAGS CXXFLAGS CC CXX
|
2011-09-12 17:50:38 +02:00
|
|
|
sh ./configure --prefix=%{_prefix} --mandir=%{_mandir} \
|
|
|
|
--disable-rpath \
|
|
|
|
--with-gnu-ld \
|
|
|
|
--enable-selinux \
|
|
|
|
--enable-timeout-stat
|
2010-06-28 23:24:20 +02:00
|
|
|
make %{?_smp_mflags} CFLAGS="$CFLAGS" "CC=$CC"
|
2006-12-19 00:17:33 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/bin/
|
|
|
|
mv $RPM_BUILD_ROOT/usr/bin/fuser $RPM_BUILD_ROOT/bin/
|
2007-04-26 18:58:12 +02:00
|
|
|
%ifarch %nopeek
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/peekfd.1*
|
|
|
|
%endif
|
2006-12-19 00:17:33 +01:00
|
|
|
%find_lang psmisc
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files -f psmisc.lang
|
|
|
|
%defattr (-,root,root,755)
|
|
|
|
/bin/fuser
|
|
|
|
%{_bindir}/killall
|
2007-04-26 18:58:12 +02:00
|
|
|
%ifnarch %nopeek
|
2007-04-26 15:51:55 +02:00
|
|
|
%{_bindir}/peekfd
|
2007-04-26 18:58:12 +02:00
|
|
|
%endif
|
2010-07-13 18:50:33 +02:00
|
|
|
%{_bindir}/prtstat
|
2006-12-19 00:17:33 +01:00
|
|
|
%{_bindir}/pstree
|
|
|
|
%{_bindir}/pstree.x11
|
|
|
|
%{_mandir}/man1/fuser.1*
|
|
|
|
%{_mandir}/man1/killall.1*
|
2007-04-26 18:58:12 +02:00
|
|
|
%ifnarch %nopeek
|
2007-04-26 15:51:55 +02:00
|
|
|
%{_mandir}/man1/peekfd.1*
|
2007-04-26 18:58:12 +02:00
|
|
|
%endif
|
2010-07-13 18:50:33 +02:00
|
|
|
%{_mandir}/man1/prtstat.1*
|
2006-12-19 00:17:33 +01:00
|
|
|
%{_mandir}/man1/pstree.1*
|
2007-12-19 22:14:01 +01:00
|
|
|
|
2007-03-29 18:26:08 +02:00
|
|
|
%changelog
|