rpms/mm/devel .cvsignore,NONE,1.1 mm.spec,NONE,1.1

Andreas Thienemann (ixs) fedora-extras-commits at redhat.com
Mon Mar 6 09:12:46 UTC 2006


Author: ixs

Update of /cvs/extras/rpms/mm/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12185

Added Files:
	.cvsignore mm.spec 
Log Message:
Fixup for broken import



--- NEW FILE .cvsignore ---
mm-1.4.0.tar.gz


--- NEW FILE mm.spec ---
Summary: Shared memory allocation library
Name: mm
Version: 1.4.0
Release: 3%{?dist}
License: BSD
Group: System Environment/Libraries
Source0: ftp://ftp.ossp.org/pkg/lib/mm/mm-%{version}.tar.gz
URL: http://www.ossp.org/pkg/lib/mm/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

%description
OSSP mm is a 2-layer abstraction library which simplifies the usage of
shared memory between forked (and this way strongly related) processes
under Unix platforms. On the first layer it hides all platform dependent
implementation details (allocation and locking) when dealing with shared
memory segments and on the second layer it provides a high-level
malloc(3)-style API for a convenient and well known way to work with
data structures inside those shared memory segments.

%package devel
Summary: Header files and libraries for %{name} development
Group: Development/Libraries
Requires: %{name} = %{version}

%description devel
The %{name}-devel package contains the header files and libraries needed
to develop programs that use the %{name} library.

%prep
%setup -q

%build
%configure --enable-debug
%{__make} %{?_smp_mflags}

%install
rm -rf %{buildroot}
%{__make} install DESTDIR=%{buildroot}
find %{buildroot} -name "*.la" -exec rm -f {} \;
find %{buildroot} -name "*.a" -exec rm -f {} \;
# Fix permissions, so that find-debuginfo.sh picks up the libraries
find %{buildroot} -name *.so.* -type f -exec chmod 755 {} \;

%clean
rm -rf %{buildroot}

%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig

%files
%defattr(-,root,root,-)
%doc LICENSE THANKS README
%{_libdir}/*.so.*

%files devel
%doc ChangeLog
%defattr(-, root, root)
%{_bindir}/mm-config
%{_libdir}/*.so
%{_includedir}/mm.h
%{_mandir}/man1/mm-config.1*
%{_mandir}/man3/mm.3*

%changelog
* Thu Mar 02 2006 Andreas Thienemann <andreas at bawue.net> 1.4.0-3
- --enable-debug to finally fix the debuginfo package.

* Tue Feb 21 2006 Andreas Thienemann <andreas at bawue.net> 1.4.0-2
- Fix the debuginfo package.

* Sat Sep 13 2005 Andreas Thienemann <andreas at bawue.net> 1.4.0-1
- Initial spec.




More information about the fedora-extras-commits mailing list