seahorse-vl.spec 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. Summary: A GNOME2 frontend for GnuPG
  2. Summary(ja): GnuPG の GNOME2 フロントエンド
  3. Name: seahorse
  4. Version: 2.32.0
  5. Release: 1%{?_dist_release}
  6. License: GPL
  7. Group: User Interface/Desktops
  8. URL: http://seahorse.sourceforge.net/
  9. Source0: http://ftp.gnome.org/pub/GNOME/sources/seahorse/2.32/%{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: libgnome-devel >= 2.32.0
  12. BuildRequires: libgnomeui-devel
  13. BuildRequires: GConf2-devel
  14. BuildRequires: gtk2-devel >= 2.22.0
  15. BuildRequires: gnupg >= 1.2.4
  16. BuildRequires: gpgme-devel >= 1.0.0
  17. BuildRequires: openldap-devel
  18. BuildRequires: libsoup-devel >= 2.32.0
  19. BuildRequires: nautilus >= 2.32.0
  20. BuildRequires: libgnome-keyring-devel >= 2.32.0
  21. BuildRequires: avahi-glib-devel >= 0.6
  22. BuildRequires: dbus-glib-devel >= 0.88
  23. BuildRequires: libnotify-devel
  24. BuildRequires: openssh
  25. BuildRequires: openssh-clients
  26. BuildRequires: gnome-doc-utils >= 0.3.2
  27. BuildRequires: libSM-devel
  28. BuildRequires: docbook-dtds
  29. BuildRequires: gobject-introspection-devel
  30. Requires(post): GConf2, scrollkeeper
  31. Requires(pre): GConf2
  32. Requires(preun): GConf2
  33. Requires(postun): scrollkeeper
  34. Obsoletes: gnome-keyring-manager < 2.21
  35. Provides: gnome-keyring-manager < 2.21
  36. # for Source1
  37. BuildRequires: autoconf
  38. Vendor: Project Vine
  39. Distribution: Vine Linux
  40. %description
  41. Seahorse is a GNOME2 front end for th GNU Privacy Guard (GnuPG).
  42. It is a tool for secure communications and data storage. Data encryption
  43. and digital signature creation can easily be performed through a GUI, and
  44. Key Management operations also can be performed.
  45. %description -l ja
  46. Seahorse は GNU Privacy Guard (GnuPG) の GNOME2 フロントエンドです。
  47. 安全なコミュニケーションとデータ保管のためのツールです。データの暗号化や復号、
  48. デジタル署名の作成・検証を GUI で容易に行うことができます。また、鍵の管理も行
  49. うことができます。
  50. %package devel
  51. Summary: Development files for %{name}
  52. Group: Development/Libraries
  53. Requires: %{name} = %{version}-%{release}
  54. Requires: pkgconfig
  55. %description devel
  56. The %{name}-devel package contains libraries and header files for
  57. developing applications that use %{name}.
  58. %prep
  59. %setup -q
  60. %build
  61. # Remove next line when upstream adopt Source2
  62. autoreconf
  63. %configure \
  64. --disable-schemas-install \
  65. --disable-update-mime-database \
  66. --disable-static \
  67. --enable-introspection=yes
  68. make %{?_smp_mflags}
  69. %install
  70. [ "%{buildroot}" != "/" ] && %__rm -rf %{buildroot}
  71. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  72. make install DESTDIR=$RPM_BUILD_ROOT
  73. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  74. rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
  75. %find_lang %{name}
  76. %clean
  77. [ "%{buildroot}" != "/" ] && %__rm -rf %{buildroot}
  78. %post
  79. /sbin/ldconfig
  80. %{_bindir}/scrollkeeper-update -q ||:
  81. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  82. gconftool-2 --makefile-install-rule \
  83. %{_sysconfdir}/gconf/schemas/seahorse.schemas > /dev/null ||:
  84. %pre
  85. if [ "$1" -gt 1 ]; then
  86. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  87. gconftool-2 --makefile-uninstall-rule \
  88. %{_sysconfdir}/gconf/schemas/seahorse.schemas > /dev/null ||:
  89. fi
  90. %preun
  91. if [ "$1" -eq 0 ]; then
  92. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  93. gconftool-2 --makefile-uninstall-rule \
  94. %{_sysconfdir}/gconf/schemas/seahorse.schemas > /dev/null ||:
  95. fi
  96. %postun
  97. /sbin/ldconfig
  98. %{_bindir}/scrollkeeper-update -q ||:
  99. %files -f %{name}.lang
  100. %defattr(-,root,root)
  101. %doc AUTHORS COPYING ChangeLog NEWS README TODO
  102. ## %{_sysconfdir}/xdg/autostart/*.desktop
  103. %{_sysconfdir}/gconf/schemas/*
  104. %{_bindir}/seahorse
  105. %{_bindir}/seahorse-daemon
  106. %{_libdir}/lib*.so.*
  107. %{_libdir}/seahorse
  108. %{_libdir}/girepository-1.0
  109. %{_datadir}/applications/*.desktop
  110. %{_datadir}/dbus-1/services/*
  111. %{_datadir}/gnome/help/*
  112. %{_datadir}/omf/*
  113. %{_datadir}/icons/*
  114. %{_datadir}/seahorse
  115. %{_datadir}/pixmaps/*
  116. %{_mandir}/man1/*
  117. %files devel
  118. %defattr(-,root,root)
  119. %{_includedir}/libcryptui
  120. %{_libdir}/lib*.so
  121. %{_libdir}/pkgconfig/*.pc
  122. %{_datadir}/gtk-doc/html/libcryptui
  123. %{_datadir}/gtk-doc/html/libseahorse
  124. %{_datadir}/gir-1.0
  125. %changelog
  126. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  127. - new upstream release
  128. - add BuildRequires: gobejct-introspection-devel
  129. - remove BuildRequires: libglade2-devel
  130. - remove SOURCE1 and SOURCE2
  131. - add Obsoletes: gnome-keyring-manager < 2.21
  132. - add Provides: gnome-keyring-manager < 2.21
  133. - add configure option (--enable-introspection=yes)
  134. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-5
  135. - rebuild with rpm-4.8.1 for pkg-config file
  136. * Sun Aug 15 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.30.1-5
  137. - update Source2
  138. - fix URI of Source0
  139. * Tue Aug 03 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.30.1-4
  140. - update Source2
  141. * Wed Jun 16 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.30.1-3
  142. - add Source1-2 for japanese help.
  143. - add autoconf to BR for japanese help.
  144. * Sat Jun 12 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-2
  145. - add BuildRequires: openssh-clients
  146. * Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  147. - new upstream release
  148. * Thu Apr 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  149. - new upstream release
  150. * Mon Mar 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.1-1
  151. - new upstream release
  152. - add BuildRequires: gnome-doc-utils >= 0.3.2, libSM-devel, docbook-dtds
  153. * Thu Apr 9 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.26.0-1
  154. - new upstream release
  155. - built with openldap-2.4.11
  156. - spec in UTF-8
  157. - made devel subpackage
  158. * Sun Apr 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1-1vl5
  159. - new upstream release
  160. * Tue Oct 24 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8.2-0vl2
  161. - rebuild with gnutls-1.4.1
  162. * Sat Sep 30 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8.2-0vl1
  163. - new upstream release
  164. - enable LDAP support
  165. - add --disable-update-mime-database option to %%configure
  166. - update Makefile.patch (patch0)
  167. - update dependencies
  168. * Tue Feb 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8-0vl1
  169. - new upstream release
  170. - drop obsolete gedit.patch (patch1)
  171. - remove unneeded files
  172. * Sun Sep 25 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.7.9-0vl1
  173. - new upstream release
  174. - dropped SOURCE1 (merged into source)
  175. - added Patch1 for building with gedit 2.12
  176. - rebuild with libsoup 2.2.6.1
  177. * Fri May 13 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.7.8-0vl2
  178. - add BuildRequires: libsoup >= 2.2 for HKP keyserver support
  179. * Thu May 12 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.7.8-0vl1
  180. - upstream release
  181. - update ja.po, Makefile.patch
  182. - update files list
  183. * Sun Mar 06 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.7.6-0vl1
  184. - initial build for Vine Linux
  185. - update ja.po
  186. * Wed Oct 26 2004 Nate Nielsen <nielsen@memberwebs.com>
  187. - Remove *.a and *.la from RPM_BUILD_ROOT
  188. - Remove updated mime database from RPM_BUILD_ROOT
  189. * Wed Oct 13 2004 Nate Nielsen <nielsen@memberwebs.com>
  190. - Added new mime info
  191. * Tue Oct 12 2004 Nate Nielsen <nielsen@memberwebs.com>
  192. - Added the gedit plugin to the default manifest
  193. * Fri May 02 2003 Yanko Kaneti <yaneti@declera.com>
  194. - Add some new files to the manifest
  195. * Wed Jan 15 2002 Jean Schurger <yshark@schurger.org>
  196. - Scrollkeeper stuff
  197. - locales install by %find_lang
  198. - secure use of rm -rf
  199. * Tue Jan 14 2002 Yanko Kaneti <yaneti@declera.com>
  200. - First spec