auto-import changelog data from psmisc-21.4-2.src.rpm
Mon Mar 15 2004 Mike A. Harris <mharris@redhat.com> 21.4-2 - Re-enabled SELINUX support - Removed gcc33 patch, no longer needed it seems. Mon Mar 15 2004 Mike A. Harris <mharris@redhat.com> 21.4-1 - Updated to new upstream version 21.4 - Ported SELinux patch forward as psmisc-21.4-redhat-selinux-psmisc.patch, but disabled SELINUX support temporarily until other build problems are resolved - Remove MKINSTALLDIRS-./mkinstalldirs from "make install" as that causes the build to fail when "./" changes. If this option is ever added back, make it relative to $RPM_BUILD_DIR instead of ./ so that things do not break - Added pstree.x11 to file list after rpm reported it present in buildroot but not packaged Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 21.3-8 - rebuilt
This commit is contained in:
parent
43764cf008
commit
cf1a2ddbbc
@ -1 +1 @@
|
|||||||
psmisc-21.3.tar.gz
|
psmisc-21.4.tar.gz
|
||||||
|
35
psmisc.spec
35
psmisc.spec
@ -5,14 +5,13 @@
|
|||||||
|
|
||||||
Summary: Utilities for managing processes on your system.
|
Summary: Utilities for managing processes on your system.
|
||||||
Name: psmisc
|
Name: psmisc
|
||||||
Version: 21.3
|
Version: 21.4
|
||||||
Release: 7
|
Release: 2
|
||||||
License: BSD/GPL
|
License: BSD/GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Source: ftp://ftp.sf.net/pub/sourceforge/psmisc/psmisc-%{version}.tar.gz
|
Source: ftp://ftp.sf.net/pub/sourceforge/psmisc/psmisc-%{version}.tar.gz
|
||||||
Patch0: psmisc-20.2-56186.patch
|
Patch0: psmisc-20.2-56186.patch
|
||||||
Patch1: psmisc-21.2-gcc33.patch
|
Patch2: psmisc-21.4-redhat-selinux-psmisc.patch
|
||||||
Patch2: psmisc-selinux.patch
|
|
||||||
URL: http://psmisc.sourceforge.net
|
URL: http://psmisc.sourceforge.net
|
||||||
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
||||||
BuildRequires: libtermcap-devel
|
BuildRequires: libtermcap-devel
|
||||||
@ -29,16 +28,14 @@ of processes that are using specified files or filesystems.
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .56186
|
%patch0 -p1 -b .56186
|
||||||
%if %{WITH_SELINUX}
|
%if %{WITH_SELINUX}
|
||||||
#SELinux
|
%patch2 -p1 -b .redhat-selinux-psmisc
|
||||||
%patch2 -p1 -b .selinux
|
|
||||||
%endif
|
%endif
|
||||||
#%patch1 -p1 -b .gcc33
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
perl -pi -e "s,^CFLAGS =,CFLAGS = $RPM_OPT_FLAGS -D_GNU_SOURCE,g" */Makefile.*
|
perl -pi -e "s,^CFLAGS =,CFLAGS = $RPM_OPT_FLAGS -D_GNU_SOURCE,g" */Makefile.*
|
||||||
|
|
||||||
# Is --prefix actually necessary here? I think it's redundant... test later...
|
# FIXME: Is --prefix actually necessary here? I think it's redundant... test later...
|
||||||
%if %{WITH_SELINUX}
|
%if %{WITH_SELINUX}
|
||||||
%configure --prefix=/usr --enable-selinux
|
%configure --prefix=/usr --enable-selinux
|
||||||
%else
|
%else
|
||||||
@ -48,8 +45,9 @@ make
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
# The rpm makeinstall macro breaks the build, so we do it the old way
|
||||||
|
make install DESTDIR="$RPM_BUILD_ROOT"
|
||||||
|
|
||||||
make install DESTDIR="$RPM_BUILD_ROOT" MKINSTALLDIRS=./mkinstalldirs
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/sbin
|
mkdir -p $RPM_BUILD_ROOT/sbin
|
||||||
mv $RPM_BUILD_ROOT%{_bindir}/fuser $RPM_BUILD_ROOT/sbin
|
mv $RPM_BUILD_ROOT%{_bindir}/fuser $RPM_BUILD_ROOT/sbin
|
||||||
%if ! %{with_pidof}
|
%if ! %{with_pidof}
|
||||||
@ -66,6 +64,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/sbin/fuser
|
/sbin/fuser
|
||||||
%{_bindir}/killall
|
%{_bindir}/killall
|
||||||
%{_bindir}/pstree
|
%{_bindir}/pstree
|
||||||
|
%{_bindir}/pstree.x11
|
||||||
%{_mandir}/man1/fuser.1*
|
%{_mandir}/man1/fuser.1*
|
||||||
%{_mandir}/man1/killall.1*
|
%{_mandir}/man1/killall.1*
|
||||||
%{_mandir}/man1/pstree.1*
|
%{_mandir}/man1/pstree.1*
|
||||||
@ -74,6 +73,24 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Mar 15 2004 Mike A. Harris <mharris@redhat.com> 21.4-2
|
||||||
|
- Re-enabled SELINUX support
|
||||||
|
- Removed gcc33 patch, no longer needed it seems.
|
||||||
|
|
||||||
|
* Sun Mar 15 2004 Mike A. Harris <mharris@redhat.com> 21.4-1
|
||||||
|
- Updated to new upstream version 21.4
|
||||||
|
- Ported SELinux patch forward as psmisc-21.4-redhat-selinux-psmisc.patch,
|
||||||
|
but disabled SELINUX support temporarily until other build problems are
|
||||||
|
resolved
|
||||||
|
- Remove MKINSTALLDIRS-./mkinstalldirs from "make install" as that causes the
|
||||||
|
build to fail when "./" changes. If this option is ever added back, make
|
||||||
|
it relative to $RPM_BUILD_DIR instead of ./ so that things do not break
|
||||||
|
- Added pstree.x11 to file list after rpm reported it present in buildroot but
|
||||||
|
not packaged
|
||||||
|
|
||||||
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 21.3-8
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 21.3-7
|
* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 21.3-7
|
||||||
- fix is_selinux_enabled call
|
- fix is_selinux_enabled call
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user