libdap/libdap.spec

196 lines
5.3 KiB
RPMSpec
Raw Normal View History

Name: libdap
Summary: The C++ DAP2 library from OPeNDAP
2008-01-01 22:46:38 +00:00
Version: 3.7.10
Release: 1%{?dist}
# the deflate program is covered by the W3C license
License: LGPLv2+ and W3C
Group: Development/Libraries
URL: http://www.opendap.org/
Source0: http://www.opendap.org/pub/source/libdap-%{version}.tar.gz
Patch0: libdap-3.7.8-nolibdir.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# Mandrake
2007-08-18 08:47:24 +00:00
# BuildRequires: libcurl3-devel >= 7.10.6 libxml2-devel >= 2.5.7
# fedora
BuildRequires: curl-devel >= 7.10.6 libxml2-devel >= 2.5.7
BuildRequires: doxygen graphviz
2007-06-01 20:52:25 +00:00
# deflate depends directly on zlib
BuildRequires: zlib-devel
BuildRequires: pkgconfig
# This package could be relocatable. In that case uncomment the following
# line
#Prefix: %{_prefix}
2007-06-01 20:52:25 +00:00
%description
The libdap++ library contains an implementation of DAP2. This package
contains the library, dap-config, getdap and deflate. The script dap-config
simplifies using the library in other projects. The getdap utility is a
simple command-line tool to read from DAP2 servers. It is built using the
library and demonstrates simple uses of it. The deflate utility is used by
the library when it returns compressed responses.
2007-06-01 20:52:25 +00:00
%package devel
2007-06-01 20:52:25 +00:00
Summary: Development and header files from libdap
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: curl-devel >= 7.10.6 libxml2-devel >= 2.5.7
2007-06-01 20:52:25 +00:00
Requires: pkgconfig
2006-10-31 17:00:19 +00:00
# for the /usr/share/aclocal directory ownership
Requires: automake
%description devel
This package contains all the files needed to develop applications that
will use libdap.
2007-06-01 20:52:25 +00:00
%package doc
Summary: Documentation of the libdap library
Group: Documentation
%description doc
Documentation of the libdap library.
2007-06-01 20:52:25 +00:00
%prep
%setup -q
%patch0 -p1 -b .nolibdir
iconv -f latin1 -t utf8 < COPYRIGHT_W3C > COPYRIGHT_W3C.utf8
2008-01-01 22:46:38 +00:00
touch -r COPYRIGHT_W3C COPYRIGHT_W3C.utf8
mv COPYRIGHT_W3C.utf8 COPYRIGHT_W3C
2007-06-01 20:52:25 +00:00
%build
2007-06-01 20:52:25 +00:00
%configure --disable-static --disable-dependency-tracking
make %{?_smp_mflags}
2007-08-18 08:47:24 +00:00
make docs
2007-06-01 20:52:25 +00:00
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p"
rm $RPM_BUILD_ROOT/%{_libdir}/*.la
rm -rf __dist_docs
cp -pr docs __dist_docs
# those .map and .md5 are of dubious use, remove them
rm -f __dist_docs/html/*.map __dist_docs/html/*.md5
2007-06-01 20:52:25 +00:00
# use the ChangeLog timestamp to have the same timestamps for the doc files
# for all arches
touch -r ChangeLog __dist_docs/html/*
2007-06-01 20:52:25 +00:00
%clean
rm -rf $RPM_BUILD_ROOT
2007-06-01 20:52:25 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
2007-06-01 20:52:25 +00:00
%files
%defattr(-,root,root,-)
%{_bindir}/getdap
%{_sbindir}/deflate
%{_libdir}/libdap.so.*
2006-07-21 12:09:38 +00:00
%{_libdir}/libdapclient.so.*
%{_libdir}/libdapserver.so.*
%doc README NEWS COPYING COPYRIGHT_URI README.AIS README.dodsrc
%doc COPYRIGHT_W3C
%files devel
%defattr(-,root,root,-)
%{_libdir}/libdap.so
2006-07-21 12:09:38 +00:00
%{_libdir}/libdapclient.so
%{_libdir}/libdapserver.so
2007-07-05 21:26:24 +00:00
%{_libdir}/pkgconfig/libdap*.pc
%{_bindir}/dap-config
%{_includedir}/libdap/
%{_datadir}/aclocal/*
%files doc
%defattr(-,root,root,-)
%doc __dist_docs/html/
2007-06-01 20:52:25 +00:00
%changelog
2008-01-01 22:46:38 +00:00
* Mon Dec 17 2007 Patrice Dumas <pertusus@free.fr> 3.7.10-1
- update to 3.7.10
* Sun Oct 21 2007 Patrice Dumas <pertusus@free.fr> 3.7.8-3
- remove reference to libdir in dap-config
2007-08-29 05:20:23 +00:00
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 3.7.8-2
- Rebuild for selinux ppc32 issue.
2007-07-05 21:35:47 +00:00
* Thu Jul 5 2007 Patrice Dumas <pertusus@free.fr> 3.7.8-1.1
2007-07-05 21:26:24 +00:00
- update to 3.7.8
2007-06-01 20:59:15 +00:00
* Thu May 31 2007 Patrice Dumas <pertusus@free.fr> 3.7.7-1.1
2007-06-01 20:52:25 +00:00
- update to 3.7.7
* Sat May 12 2007 Patrice Dumas <pertusus@free.fr> 3.7.6-4
- remove static libs
- set the same doc file timestamps for all arches
* Mon Apr 30 2007 Patrice Dumas <pertusus@free.fr> 3.7.6-3
- correct the library install order
- keep timestamps
- add documentation in a subpackage
2007-04-30 13:15:48 +00:00
* Mon Apr 30 2007 Patrice Dumas <pertusus@free.fr> 3.7.6-2
2007-04-30 11:53:39 +00:00
- update to 3.7.6
2006-10-31 17:00:19 +00:00
* Tue Oct 31 2006 Patrice Dumas <pertusus@free.fr> 3.7.2-3
- rebuild for new libcurl soname
2006-10-04 22:47:27 +00:00
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 3.7.2-2
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
2006-09-19 21:12:00 +00:00
* Tue Sep 19 2006 Patrice Dumas <pertusus@free.fr> 3.7.2-1
- update to 3.7.2
* Wed Sep 6 2006 Patrice Dumas <pertusus@free.fr> 3.7.1-1
- update to 3.7.1
- set licence to LGPL instead of W3C/LGPL, since only deflate is W3C, so
the whole is under the LGPL
2006-07-21 12:09:38 +00:00
* Fri Jul 21 2006 Patrice Dumas <pertusus@free.fr> 3.7.0-1
- update to 3.7.0
2006-03-03 00:18:39 +00:00
* Mon Feb 27 2006 James Gallagher <jgallagher@opendap.org> - 3.6.0-1
2006-07-21 12:09:38 +00:00
- update to 3.6.0
2005-12-22 08:10:00 +00:00
* Mon Nov 21 2005 Patrice Dumas <pertusus@free.fr> - 3.5.3-2
- fix Source0
* Tue Aug 30 2005 Patrice Dumas <pertusus@free.fr> - 3.5.2-3
- Add missing Requires
* Sat Jul 2 2005 Patrice Dumas <pertusus@free.fr> - 3.5.1-2
- Support for shared libraries
- Add COPYING
- Update with fedora template
* Thu May 12 2005 James Gallagher <jimg@comet.opendap.org> - 3.5.0-1
- Changed: Requires xml2 to libxml2
* Wed May 11 2005 James Gallagher <jimg@zoey.opendap.org> 3.5.0-1
- Removed version numbers from .a and includes directory.
* Tue May 10 2005 James Gallagher <jimg@zoey.opendap.org>
2006-07-21 12:09:38 +00:00
- Mostly works. Problems: Not sure if the %%post script stuff works.
- Must also address the RHEL3 package deps issue (curl 7.12.0 isn't available;
not sure about xml2 2.5.7). At least the deps fail when they are not present!
* Fri May 6 2005 James Gallagher <jimg@zoey.opendap.org>
- Initial build.