libdap-vl.spec 2.6 KB

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