source: projects/specs/trunk/lib/libd/libdap/libdap-vl.spec @ 521

Revision 521, 2.6 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Name:             libdap
2Version:          3.8.2
3Release:          1%{?_dist_release}
4Summary:          The C++ DAP2 library from OPeNDAP
5Summary(ja):      OPeNDAP の C++ DAP2 ライブラリ
6License:          LGPL
7Group:            System Environment/Libraries
8Source:           %{name}-%{version}.tar.gz
9URL:              http://www.opendap.org/
10
11BuildRoot:        %{_tmppath}/%{name}-%{version}-root
12BuildRequires:    curl-devel >= 7.10.6 libxml2-devel >= 2.5.7 
13Requires:         curl libxml2
14
15Distribution:     Vine Linux
16Vendor:           Project Vine
17
18%description
19The libdap++ library contains an implementation of DAP2. This package
20contains the library, dap-config, getdap and deflate. The script dap-config
21simplifies using the library in other projects. The getdap utility is a
22simple command-line tool to read from DAP2 servers. It is built using the
23library and demonstrates simple uses of it. The deflate utility is used by
24the library when it returns compressed responses.
25
26%description -l ja
27libdap++は、DAP2実行ライブラリとユーティリティプログラム(dep-config、
28getdap、deflate)を含む
29
30%package devel
31Summary:          Static libraries and header files from libdap
32Summary(ja):      libdapの静的ライブラリとヘッダファイル
33Group:            Development/Libraries
34Requires:         %{name} = %{version}-%{release}
35Requires:         pkgconfig automake
36Requires:         curl-devel >= 7.10.6
37Requires:         libxml2-devel >= 2.5.7
38
39%description devel
40This package contains all the files needed to develop applications that
41will use libdap.
42
43%description devel -l ja
44libdapを利用するために必要な開発ファイル
45
46%prep
47%setup -q
48
49%build
50%configure
51%{__make} %{?_smp_mflags}
52
53%install
54rm -rf $RPM_BUILD_ROOT
55%makeinstall
56
57rm -rf $RPM_BUILD_ROOT%{_libdir}/lib*.la
58
59%clean
60rm -rf $RPM_BUILD_ROOT
61
62%post -p /sbin/ldconfig
63
64%postun -p /sbin/ldconfig
65
66%files
67%defattr(-,root,root)
68%doc README NEWS COPYING COPYRIGHT_URI README.AIS README.dodsrc
69%doc COPYRIGHT_W3C
70%{_bindir}/getdap
71%{_sbindir}/deflate
72%{_libdir}/libdap.so.*
73%{_libdir}/libdapclient.so.*
74%{_libdir}/libdapserver.so.*
75
76%files devel
77%defattr(-,root,root,-)
78%{_libdir}/libdap.a
79%{_libdir}/libdap.so
80%{_libdir}/libdapclient.so
81%{_libdir}/libdapclient.a
82%{_libdir}/libdapserver.so
83%{_libdir}/libdapserver.a
84%{_bindir}/dap-config
85%{_bindir}/dap-config-pkgconfig
86%{_includedir}/libdap
87%{_datadir}/aclocal/*
88%{_libdir}/pkgconfig/*.pc
89
90
91%changelog
92* Sun Jan 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.8.2-1
93- new upstream release
94- applied new versioning policy
95- spec in UTF-8
96
97* Wed Mar  7 2007 Susumu Tanimura <stanimura-ngs@umin.ac.jp>
98- Initial package
Note: See TracBrowser for help on using the repository browser.