gdl-vl.spec 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. Version: 3.10.0
  2. Release: 2%{?_dist_release}
  3. Name: gdl
  4. Summary: Gnome Docking library
  5. License: LGPL
  6. Group: Development/Libraries
  7. Source: http://ftp.gnome.org/pub/GNOME/sources/gdl/3.10/%{name}-%{version}.tar.xz
  8. BuildRoot: /var/tmp/%{name}-%{version}-root
  9. URL: http://www.gnome.org/
  10. Summary(ja): GNOMEドッキングライブラリ
  11. Requires: gtk3 >= 3.0.0
  12. Requires: libxml2 >= 2.2.8
  13. BuildRequires: gtk3-devel >= 3.0.0
  14. BuildRequires: libxml2-devel >= 2.2.8
  15. BuildRequires: gobject-introspection-devel
  16. Vendor: Project Vine
  17. Distribution: Vine Linux
  18. Packager: yasumichi
  19. %description
  20. Provides docking features for gtk+. Currently used by anjuta and lumiera.
  21. %description -l ja
  22. GTK+にドッキング機能を提供します。現在はAnjutaとLumieraで使用されています。
  23. %package devel
  24. Summary: Libraries and include files for gdl.
  25. Group: Development/Libraries
  26. Requires: %{name} = %{version}
  27. %description devel
  28. Libraries and header files if you want to make use of the gdl library in your
  29. own programs.
  30. %description devel -l ja
  31. プログラムをgdlを使用して構築するのに必要なライブラリとヘッダファイルです。
  32. %prep
  33. %setup -q
  34. %build
  35. %ifarch x86_64
  36. %configure
  37. %else
  38. ./configure --prefix=%{_prefix} \
  39. --bindir=%{_bindir} --mandir=%{_mandir} \
  40. --localstatedir=%{_localstatedir} --libdir=%{_libdir} \
  41. --datadir=%{_datadir} --includedir=%{_includedir} \
  42. --sysconfdir=%{_sysconfdir}
  43. %endif
  44. CFLAGS="$RPM_OPT_FLAGS" make
  45. %install
  46. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  47. %makeinstall
  48. rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
  49. %clean
  50. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  51. %post
  52. /sbin/ldconfig
  53. %postun
  54. /sbin/ldconfig
  55. %files
  56. %doc AUTHORS COPYING ChangeLog NEWS README
  57. %defattr (-, root, root)
  58. %{_libdir}/lib*.so.*
  59. %{_libdir}/girepository-1.0/*.typelib
  60. %{_datadir}/locale/*/LC_MESSAGES/*
  61. %files devel
  62. %defattr (-, root, root)
  63. %{_prefix}/include/libgdl-3.0
  64. %{_libdir}/lib*.so
  65. %{_libdir}/pkgconfig/*
  66. %{_datadir}/gir-1.0/*.gir
  67. %{_datadir}/gtk-doc/html/gdl-3.0
  68. %changelog
  69. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-2
  70. - rebuild with VineSeed environment
  71. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-1
  72. - new upstream release
  73. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
  74. - new upstream release
  75. * Sun Nov 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.2-1
  76. - new upstream release
  77. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
  78. - new upstream release
  79. * Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-1
  80. - new upstream release
  81. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
  82. - new upstream release
  83. * Wed Oct 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  84. - new upstream release
  85. * Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
  86. - new upstream release
  87. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
  88. - new upstream release
  89. - change BuildRequires: gtk3-devel instead of gtk2-devel
  90. - add BuildRequires: gobject-introspection-devel
  91. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  92. - new upstream release.
  93. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-2
  94. - rebuild with rpm-4.8.1 for pkg-config file
  95. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  96. - new upstream release.
  97. * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  98. - new upstream release.
  99. * Mon Nov 02 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-1
  100. - new upstream release.
  101. - fixed BR.
  102. - update summary, description and license.
  103. - add Vendor, Distribution and Packager.
  104. * Thu Jul 30 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.27.3-1
  105. - update from upstream.
  106. - remove libglade from Requires and BuildRequires.
  107. * Thu Jul 30 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.26.0-1
  108. - update from upstream.
  109. * Wed Apr 29 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.26.0-1vl5
  110. - update from upstream.
  111. * Tue May 13 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.11-2vl5
  112. - use macro for Release
  113. * Sat May 10 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.11-1vl5
  114. - update from upstream.
  115. * Thu May 08 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.7.7-1vl5
  116. - apply new virsioning policy.
  117. - remove *.la
  118. * Sat Jan 05 2008 Shu KONNO <owa@bg.wakwak.com> 0.7.7-0vl1
  119. - fixed %%{_prefix}/lib to %%{_libdir} in %%files section
  120. * Sat Mar 31 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org>
  121. - update from upstream.
  122. * Thu Feb 22 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org>
  123. - packaging for VineSeed.
  124. * Tue Aug 10 2004 Pierre Sarrazin <http://sarrazip.com/>
  125. - Update for version 0.4.0
  126. * Thu Oct 24 2002 Jean Schurger <jschurger@schurger.org
  127. - Update for gnome 2 version
  128. * Wed Aug 8 2001 Jens Finke <jens@gnome.org>
  129. - created spec file