libdap-vl.spec 3.0 KB

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