Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > 407a694ab163c972518861d5b25637c0 > files > 2

mm-1.4.2-6.fc12.src.rpm

Summary: Shared memory allocation library
Name: mm
Version: 1.4.2
Release: 6%{?dist}
License: BSD with advertising
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 {} \;

# Fix the installed mm-config script to remove unnecessary flags and
# prevent a multilib conflict
sed -i -e 's#^mm_libdir=.*#mm_libdir=#; s# -L$mm_libdir##; s# -m[36][24]##' %{buildroot}%{_bindir}/mm-config


%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
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

* Thu Oct 23 2008 Andreas Thienemann <andreas@bawue.net> - 1.4.2-5
- Updated mm-config file to remove multilib conflict.

* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.2-4
- Autorebuild for GCC 4.3

* Mon Feb 18 2008 Andreas Thienemann <andreas@bawue.net> - 1.4.2-3
- Rebuilt against gcc43

* Fri Sep 08 2006 Andreas Thienemann <andreas@bawue.net> - 1.4.2-2
- FE6 Rebuild

* Thu Aug 17 2006 Andreas Thienemann <andreas@bawue.net> 1.4.2-1
- Updated to 1.4.2

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

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

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