source: projects/specs/branches/6/d/dbh/dbh-vl.spec @ 6356

Revision 6356, 2.4 KB checked in by Takemikaduchi, 12 years ago (diff)

adjtimex,coriander,corosync,cproto,cscope,dbmail,dcraw: new upstream release
others: rebuild

Line 
1Summary: Disk based hash library
2Name: dbh
3Version: 1.0.24
4Release: 2%{?_dist_release}
5License: GPL
6Group: System Environment/Libraries
7Source: http://prdownload.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
8URL: http://dbh.sourceforge.net/
9Buildroot: %{_tmppath}/%{name}-%{version}-root
10
11BuildRequires: autoconf
12BuildRequires: libtool
13
14%description
15Disk based hashes is a method to create multidimensional binary trees on disk.
16This library permits the extension of database concept to a plethora of
17electronic data, such as graphic information. With the multidimensional binary
18tree it is possible to mathematically prove that access time to any
19particular record is minimized (using the concept of critical points from
20calculus), which provides the means to construct optimized databases for
21particular applications. 
22
23%package devel
24Summary: developpment tools for dbh library
25Group: Development/Libraries
26Requires: dbh = %{version}-%{release}
27
28%description devel
29Static libraries and header files for the dbh library.
30
31%prep
32%setup -q
33
34%build
35autoreconf -if
36%configure
37make
38
39%install
40rm -rf $RPM_BUILD_ROOT
41make install DESTDIR=$RPM_BUILD_ROOT
42
43## remove unuse files
44rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
45
46%clean
47rm -rf $RPM_BUILD_ROOT
48
49%post -p /sbin/ldconfig
50
51%postun -p /sbin/ldconfig
52
53%files
54%defattr(-,root,root)
55%doc AUTHORS COPYING ChangeLog NEWS README TODO
56%{_libdir}/lib*.so.*
57
58%files devel
59%defattr(-,root,root)
60%doc examples/*.c examples/Makefile* doc/*.html
61%{_libdir}/lib*.so
62%{_libdir}/*a
63%{_libdir}/pkgconfig/*
64%{_includedir}/*
65
66%changelog
67* Sat Jun 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.24-2
68- rebuild with Vine6 environment
69
70* Sat Sep 20 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.24-1vl5
71- applied new versioning policy
72- removed *.la
73
74* Wed Aug 16 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.24-0vl3
75- changed Group to System Environment/Libraries
76
77* Thu Mar 31 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.24-0vl2
78- new upstream release
79
80* Wed Feb 02 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.22-0vl1
81- new upstream release
82
83* Sun Jan 23 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.20-0vl2
84- separate devel package
85
86* Wed Jan 19 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.20-0vl1
87- new upstream release
88- change License QPL to GPL
89- use %configure macro
90
91* Mon Apr 19 2004 UECHI Yasumasa <uechi@potaway.net> 1.0.18-0vl1
92- new upstream release
93
94* Sat Sep 27 2003 UECHI Yasumasa <uh@u.dhis.portside.net> 1.0.17-0vl1
95- initial release
96
Note: See TracBrowser for help on using the repository browser.