gdl-vl.spec 3.4 KB

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