104 lines
3.0 KiB
RPMSpec
104 lines
3.0 KiB
RPMSpec
|
Name: lsof
|
||
|
Version: 4.87
|
||
|
Release: 1mamba
|
||
|
Summary: Lists open files for running UNIX processes
|
||
|
Group: System/Tools
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Aleph0 <aleph0@openmamba.org>
|
||
|
URL: http://people.freebsd.org/~abe/
|
||
|
Source: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_%{version}.tar.bz2
|
||
|
#Patch from ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/patches/%{version}/linux.patch
|
||
|
Patch: %{name}-4.77-linux.patch
|
||
|
License: no OSI Approved
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||
|
|
||
|
%description
|
||
|
Lsof is a Unix-specific diagnostic tool.
|
||
|
Its name stands for LiSt Open Files, and it does just that.
|
||
|
It lists information about any files that are open by processes currently running on the system.
|
||
|
It can also list communications open by each process.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{name}_%{version}
|
||
|
tar -xf %{name}_%{version}_src.tar
|
||
|
cd %{name}_%{version}_src/dialects/linux
|
||
|
#% patch -p2
|
||
|
|
||
|
%build
|
||
|
cd %{name}_%{version}_src
|
||
|
|
||
|
chmod 644 dialects/linux/machine.h &&
|
||
|
echo "
|
||
|
#undef HASSECURITY
|
||
|
#undef HASNOSOCKSECURITY
|
||
|
#define HASSECURITY 1
|
||
|
#define HASNOSOCKSECURITY 1
|
||
|
#undef WARNINGSTATE
|
||
|
#undef HASDCACHE
|
||
|
#undef HASENVDC
|
||
|
#undef HASPERSDC
|
||
|
#undef HASPERSDCPATH
|
||
|
#undef HASSYSDC
|
||
|
#undef HASKERNIDCK" >> dialects/linux/machine.h
|
||
|
|
||
|
LSOF_VSTR="2.6.22" \
|
||
|
LINUX_BASE=/proc \
|
||
|
./Configure -n linux
|
||
|
|
||
|
make DEBUG="" CDEF="%{optflags}" CFGL="-L./lib -llsof -lselinux -ltirpc"
|
||
|
#make -C tests test opt
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
cd %{name}_%{version}_src
|
||
|
|
||
|
install -D -m755 %{name} %{buildroot}%{_bindir}/%{name}
|
||
|
install -D -m644 %{name}.8 %{buildroot}%{_mandir}/man8/%{name}.8
|
||
|
|
||
|
rm -fr %{name}_docs
|
||
|
install -d %{name}_docs
|
||
|
for f in 00{CREDITS,DIST,FAQ,LSOF-L,PORTING,QUICKSTART,README,TEST,XCONFIG}; do
|
||
|
install $f %{name}_docs/${f/00/}
|
||
|
done
|
||
|
|
||
|
%clean
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%{_bindir}/%{name}
|
||
|
%{_mandir}/man8/%{name}.*
|
||
|
%doc %{name}_%{version}_src/%{name}_docs/*
|
||
|
|
||
|
%changelog
|
||
|
* Mon Jan 14 2013 Automatic Build System <autodist@mambasoft.it> 4.87-1mamba
|
||
|
- automatic version update by autodist
|
||
|
|
||
|
* Fri Jun 15 2012 Automatic Build System <autodist@mambasoft.it> 4.86-1mamba
|
||
|
- automatic version update by autodist
|
||
|
|
||
|
* Mon Oct 03 2011 Automatic Build System <autodist@mambasoft.it> 4.85-1mamba
|
||
|
- automatic version update by autodist
|
||
|
|
||
|
* Sat Jul 31 2010 Automatic Build System <autodist@mambasoft.it> 4.84-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Sat Jan 23 2010 Automatic Build System <autodist@mambasoft.it> 4.83-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Wed Apr 08 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 4.82-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Sun Nov 02 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 4.81-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Tue Nov 13 2007 Aleph0 <aleph0@openmamba.org> 4.77-2mamba
|
||
|
- force LINUX_BASE environment
|
||
|
|
||
|
* Wed Jun 28 2006 Stefano Cotta Ramusino <stefano.cotta@qilinux.it> 4.77-1qilnx
|
||
|
- update to version 4.77 by autospec
|
||
|
|
||
|
* Wed May 11 2005 Davide Madrisan <davide.madrisan@qilinux.it> 4.74-1qilnx
|
||
|
- package created by autospec
|