]> git.pld-linux.org Git - packages/dap-server.git/blame - dap-server.spec
- updated to 4.1.4
[packages/dap-server.git] / dap-server.spec
CommitLineData
d35862d8
JB
1#
2# Conditional build:
3%bcond_without tests # make check
4#
5Summary: Basic request handling for OPeNDAP servers
6Summary(pl.UTF-8): Podstawowa obsługa żądań dla serwerów OPeNDAP
7Name: dap-server
56c3e869 8Version: 4.1.4
d35862d8
JB
9Release: 1
10License: LGPL v2.1+
11Group: Daemons
12Source0: http://www.opendap.org/pub/source/%{name}-%{version}.tar.gz
56c3e869 13# Source0-md5: 3ff3ce55803ba532b7408882c0690a22
d35862d8
JB
14URL: http://opendap.org/
15BuildRequires: autoconf >= 2.59
16BuildRequires: automake >= 1:1.10
17BuildRequires: bes-devel >= 3.9.0
18%{?with_tests:BuildRequires: cppunit-devel >= 1.12.0}
19BuildRequires: libdap-devel >= 3.11.0
20BuildRequires: libstdc++-devel
21BuildRequires: libtool >= 2:1.5
22BuildRequires: pkgconfig
23Requires: bes >= 3.9.0
24Requires: libdap >= 3.11.0
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%description
28This package contains general purpose handlers for use with the new
29Hyrax data server. These are the Usage, ASCII and HTML form handlers.
30Each takes input from a 'data handler' and returns a HTML or plain
31text response - something other than a DAP response object.
32
33%description -l pl.UTF-8
34Ten pakiet zawiera kilka procedur obsługi ogólnego przeznaczenia dla
35nowego serwera danych Hyrax. Są to procedury obsługi Usage, ASCII oraz
36formularzy HTML. Każdy z nich pobiera wejście z procedury obsługi
37danych i zwraca odpowiedź w formacie HTML lub czystego tekstu - czegoś
38innego, niż obiekt odpowiedzi DAP.
39
40%prep
41%setup -q
42
43%build
44# rebuild autotools for -as-needed to work
45%{__libtoolize}
46%{__aclocal} -I conf
47%{__autoconf}
48%{__autoheader}
49%{__automake}
50%configure
51%{__make}
52
53%{?with_tests:%{__make} check}
54
55%install
56rm -rf $RPM_BUILD_ROOT
57
58%{__make} install \
59 DESTDIR=$RPM_BUILD_ROOT
60
61%{__rm} $RPM_BUILD_ROOT%{_libdir}/bes/*.la
62
63%clean
64rm -rf $RPM_BUILD_ROOT
65
66%files
67%defattr(644,root,root,755)
68%doc COPYRIGHT_* ChangeLog NEWS README
69%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bes/modules/dap-server.conf
70%attr(755,root,root) %{_libdir}/bes/libascii_module.so
71%attr(755,root,root) %{_libdir}/bes/libusage_module.so
72%attr(755,root,root) %{_libdir}/bes/libwww_module.so
73%{_datadir}/bes/dap-server_help.*
This page took 0.111215 seconds and 4 git commands to generate.