Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > 50d8fd6b8c128dd79b63e71f52b463a0 > files > 2

libgcroots-0.2.3-1.fc13.src.rpm

Name:		libgcroots
Version:	0.2.3
Release:	1%{?dist}
License:	MIT
URL:		http://code.google.com/p/sigscheme/wiki/libgcroots
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

Source0:	http://sigscheme.googlecode.com/files/%{name}-%{version}.tar.bz2


Summary:	Roots acquisition library for Garbage Collector
Group:		Development/Libraries

%description
libgcroots abstracts architecture-dependent part of garbage collector
roots acquisition such as register windows of SPARC and register stack
backing store of IA-64.
This library encourages to have own GC such as for small-footprint,
some application-specific optimizations, just learning or to test
experimental ideas.

%package devel
Summary:	Development files for libgcroots
Group:		Development/Libraries
Requires:	%{name} = %{version}-%{release}
Requires:	pkgconfig

%description devel
libgcroots abstracts architecture-dependent part of garbage collector
roots acquisition such as register windows of SPARC and register stack
backing store of IA-64.

This package contains a header file and development library to help you
to develop any own GC.

%prep
%setup -q

%build
%configure --disable-static
make %{?_smp_mflags}

%install
rm -rf $RPM_BUILD_ROOT

make install DESTDIR=$RPM_BUILD_ROOT

# Remove unnecessary files
rmdir $RPM_BUILD_ROOT%{_includedir}/libgcroots
rm $RPM_BUILD_ROOT%{_libdir}/*.la

%clean
rm -rf $RPM_BUILD_ROOT

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%files
%defattr (-, root, root, -)
%doc COPYING ChangeLog README
%{_libdir}/libgcroots.so.*

%files devel
%defattr (-, root, root, -)
%doc COPYING ChangeLog README
%{_includedir}/gcroots.h
%{_libdir}/libgcroots.so
%{_libdir}/pkgconfig/gcroots.pc

%changelog
* Tue Apr 12 2011 Akira TAGOH <tagoh@redhat.com> - 0.2.3-1
- New upstream release. (#695292)

* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

* Wed Dec  8 2010 Akira TAGOH <tagoh@redhat.com> - 0.2.2-1
- New upstream release.

* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

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

* Wed Mar  5 2008 Akira TAGOH <tagoh@redhat.com> - 0.2.1-3
- Get rid of explicit dependency of ldconfig.
- Correct License.

* Wed Feb 27 2008 Akira TAGOH <tagoh@redhat.com> - 0.2.1-2
- Add the appropriate requires.

* Thu Feb 21 2008 Akira TAGOH <tagoh@redhat.com> - 0.2.1-1
- Initial packaging.