gupnp-vl.spec 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. Name: gupnp
  2. Version: 0.13.1
  3. Release: 2%{?_dist_release}
  4. Summary: A framework for creating UPnP devices & control points
  5. Summary(ja): UPnP デバイス及びコントロールポイントを作成するためのフレームワーク
  6. Group: System Environment/Libraries
  7. License: LGPLv2+
  8. URL: http://www.gupnp.org/
  9. Source0: http://www.gupnp.org/sources/%{name}/%{name}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: gssdp-devel
  12. BuildRequires: glib2-devel
  13. BuildRequires: gtk-doc
  14. BuildRequires: libsoup-devel
  15. BuildRequires: libxml2-devel
  16. BuildRequires: libuuid-devel
  17. Requires: dbus
  18. %description
  19. GUPnP is an object-oriented open source framework for creating UPnP
  20. devices and control points, written in C using GObject and libsoup.
  21. The GUPnP API is intended to be easy to use, efficient and flexible.
  22. %package devel
  23. Summary: Development package for gupnp
  24. Summary(ja): gupnp の開発パッケージ
  25. Group: Development/Libraries
  26. Requires: %{name} = %{version}-%{release}
  27. Requires: gssdp-devel
  28. Requires: pkgconfig
  29. Requires: libsoup-devel
  30. Requires: libxml2-devel
  31. Requires: libuuid-devel
  32. Requires: glib2-devel
  33. %description devel
  34. Files for development with %{name}.
  35. %package docs
  36. Summary: Documentation files for %{name}
  37. Summary(ja): Documentation files for %{name}
  38. Group: Development/Libraries
  39. Requires: %{name} = %{version}-%{release}
  40. Requires: gtk-doc
  41. %description docs
  42. This package contains developer documentation for %{name}.
  43. %prep
  44. %setup -q
  45. %build
  46. %configure --disable-static
  47. make %{?_smp_mflags} V=1
  48. %install
  49. rm -rf %{buildroot}
  50. make install DESTDIR=%{buildroot}
  51. #Remove libtool archives.
  52. find %{buildroot} -name '*.la' -exec rm -f {} ';'
  53. %clean
  54. rm -rf %{buildroot}
  55. %post -p /sbin/ldconfig
  56. %postun -p /sbin/ldconfig
  57. %files
  58. %defattr(-,root,root,-)
  59. %doc AUTHORS COPYING README
  60. %{_libdir}/libgupnp-1.0.so.*
  61. %{_bindir}/gupnp-binding-tool
  62. %files devel
  63. %defattr(-,root,root,-)
  64. %{_libdir}/pkgconfig/gupnp-1.0.pc
  65. %{_libdir}/libgupnp-1.0.so
  66. %{_includedir}/gupnp-1.0
  67. %files docs
  68. %defattr(-,root,root,-)
  69. %doc %{_datadir}/gtk-doc/html/%{name}
  70. %changelog
  71. * Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.13.1-2
  72. - rebuilt with rpm-4.8.1 for pkg-config
  73. * Mon Oct 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.13.1-1
  74. - initial build for Vine Linux
  75. * Wed Oct 7 2009 Peter Robinson <pbrobinson@gmail.com> 0.13.1-1
  76. - Update to 0.13.1
  77. * Thu Sep 17 2009 Bastien Nocera <bnocera@redhat.com> 0.13.0-1
  78. - Update to 0.13.0
  79. * Mon Aug 31 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.8-4
  80. - some spec file cleanups, depend on libuuid instead of e2fsprogs-devel
  81. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.8-3
  82. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  83. * Wed Jul 1 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.8-2
  84. - Rebuild with new libuuid build req
  85. * Wed Jun 3 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.8-1
  86. - New upstream release
  87. * Mon Apr 27 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.7-1
  88. - New upstream release
  89. * Wed Mar 4 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.6-4
  90. - Move docs to noarch sub package
  91. * Mon Mar 2 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.6-3
  92. - Add some extra -devel Requires packages
  93. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.6-2
  94. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  95. * Mon Feb 23 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.6-1
  96. - New upstream release
  97. * Wed Jan 14 2009 Peter Robinson <pbrobinson@gmail.com> 0.12.5-1
  98. - New upstream release
  99. * Thu Dec 18 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.4-3
  100. - Add gtk-doc build req
  101. * Sat Nov 22 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.4-2
  102. - Fix summary
  103. * Mon Nov 17 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.4-1
  104. - New upstream release
  105. * Mon Oct 27 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.3-1
  106. - New upstream release
  107. * Mon Oct 20 2008 Colin Walters <walters@verbum.org> 0.12.2-2
  108. - devel package requires gssdp-devel
  109. * Sun Aug 31 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.2-1
  110. - New upstream release
  111. * Thu Aug 28 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-7
  112. - Yet again. Interesting it builds fine in mock and not koji
  113. * Thu Aug 28 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-6
  114. - Once more with feeling
  115. * Thu Aug 28 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-5
  116. - Second go
  117. * Thu Aug 28 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-4
  118. - Fix build on rawhide
  119. * Wed Aug 13 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-3
  120. - Fix changelog entries
  121. * Wed Aug 13 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-2
  122. - Fix a compile issue on rawhide
  123. * Mon Jun 16 2008 Peter Robinson <pbrobinson@gmail.com> 0.12.1-1
  124. - Initial release