seahorse-vl.spec 6.0 KB

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