source: projects/specs/branches/6/lib/libs/libsigsegv/libsigsegv-vl.spec @ 3526

Revision 3526, 1.9 KB checked in by owa, 13 years ago (diff)

rebuilt

Line 
1Name: libsigsegv
2Summary: Library for handling page faults in user mode
3Version: 2.8
4Release: 2%{?_dist_release}
5License: GPLv2
6Group: System Environment/Libraries
7URL: http://libsigsegv.sourceforge.net/
8Source0: ftp://ftp.gnu.org/pub/gnu/libsigsegv/libsigsegv-%{version}.tar.gz
9BuildRoot: %{_tmppath}/%{name}-%{version}-root
10
11Vendor: Project Vine
12Distribution: Vine Linux
13
14%description
15This is a library for handling page faults in user mode. A page fault
16occurs when a program tries to access to a region of memory that is
17currently not available. Catching and handling a page fault is a useful
18technique for implementing:
19
20  - pageable virtual memory,
21  - memory-mapped access to persistent databases,
22  - generational garbage collectors,
23  - stack overflow handlers,
24  - distributed shared memory,
25  - ...
26
27%package devel
28Summary: Development libraries and headers for %{name}
29Group: Development/Libraries
30Requires: %{name} = %{version}-%{release}
31
32%description devel
33Development libraries and headers for %{name}.
34
35%prep
36%setup -q
37
38%build
39%configure --enable-shared --enable-static
40make
41
42%install
43rm -rf %{buildroot}
44%makeinstall
45## remove unuse files
46rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
47
48
49%clean
50rm -rf %{buildroot}
51
52%post -p /sbin/ldconfig
53
54%postun -p /sbin/ldconfig
55
56%files
57%defattr(-,root,root)
58%{_libdir}/*.so.*
59
60%files devel
61%defattr(-,root,root)
62%doc AUTHORS COPYING ChangeLog* NEWS PORTING README
63%{_includedir}/*.h
64%{_libdir}/*.so
65%{_libdir}/*.a
66#%{_libdir}/*.la
67
68%changelog
69* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 2.8-2
70- rebuilt with rpm-4.8.1-3
71
72* Tue Feb 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8-1
73- new upstream release
74- built with new toolchain
75
76* Sat Oct 18 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6-1
77- new upstream release
78
79* Sat Sep 20 2008 Shu KONNO <owa@bg.wakwak.com> 2.4-1vl5
80- applied new versioning policy
81- removed *.la
82
83* Sun Mar 18 2007 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 2.4-0vl1
84- Initial build.
85
Note: See TracBrowser for help on using the repository browser.