diff options
author | wiz <wiz> | 2008-10-27 16:51:59 +0000 |
---|---|---|
committer | wiz <wiz> | 2008-10-27 16:51:59 +0000 |
commit | 509cf3541501adf7df59bae1ec83e73b7e89dd2d (patch) | |
tree | 32527d6dcbbd1e88a1d76803196111f54a5d3e8e /security/seahorse/patches | |
parent | 3a7c001be246dfab55ce6055b2d47e0ad875659f (diff) | |
download | pkgsrc-509cf3541501adf7df59bae1ec83e73b7e89dd2d.tar.gz |
Update to 2.24.1. Please note that seahorse-agent and two other
tools moved to the new seahorse-plugins package.
seahorse 2.24.1
---------------
* Fix problems with seahorse crashing when searching for
remote keys. [Adam Schreiber]
* Build fixes on Solaris [Jeff Cai]
* Fix selection of keys in libcryptui. [Philip Withnall]
* I18n fixes. [Adam Schreiber]
seahorse 2.24.0
---------------
* Some tweaks to the password prompt window, including allowing
minimizing to release the keyboard grab.
* Fix compiler warnings for gcc 4.3.
* Return a 'cancelled' error when from the daemon crypto dbus
methods when a user cancels out of a password prompt.
* Show revoked subkeys properly in details view of PGP keys.
* Fix problem deleting SSH keys.
* Fix dialog prompt column widths, and elipsize long text in
key listing. [Adam Schreiber]
* Fix problem with 'no keys available' when trying to sign a
PGP key from within the key manager.
* Add 'exportable' flag to objects/keys and don't enable export
UI if selected objects are not exportable.
* Build fixes [Joe Orton, Adam Schreiber]
* Crash and other fixes. [Christian Persch]
seahorse 2.23.92
----------------
* Fix crash when changing a stored Gnome Keyring password.
* Fix certain crashes on syncing, searching and other operations.
* Fix dumb 'Couldn't import keys' error message when success.
seahorse 2.23.91
----------------
* Fix copying keys to the clipboard. [Adam Schreiber]
* Fix double free crash when importing keys.
* Fix crasher when deleting a key.
* Don't add extra null bytes to SSH authorized_keys and
similar files. [Adam Schreiber]
* Documentation fixes. [Adam Schreiber]
* Don't repeatedly load gnome-keyring items. [Adam Schreiber]
* Make help button in 'First Time Options' work proprely. [Adam Schreiber]
* Better wording for options in PGP key dialogs. [Adam Schreiber]
seahorse 2.23.90
----------------
* Icon makeover. [Michael Monreal]
seahorse 2.23.6
---------------
* Initial PKCS#11 certificate listing implementation.
* Internal code refactoring.
* Fix problems with reference counting on operations.
* Use base64 functions in glib, rather than rolling our own.
* Don't use deprecated LDAP functions. [Adam Schreiber]
* String operation fixes. [Adam Schreiber]
* Build fixes [Jeff Cai]
seahorse 2.23.5
---------------
* Fix importing keys from key servers [Mackenzie Morgan]
* Factor out seahorse-plugins to a different module.
* Add XDS drag and drop support.
* Remove gnome-vfs dependency and use gio instead.
* Return key id of signer from DBus service even when key
is not found locally [Adam Schreiber]
* Refactor UI code internally into modules.
* Remove hard GPG and GPGME dependency.
* Replace signer drop down in key chooser with just a check
button when only one secret key exists. [Adam Schreiber]
* Set sync button insensitive when no server is selected.
[Adam Schreiber]
* Test for secure memory before using it. [Coleman Kane]
* Change trust model used to match GPG's. [Adam Schreiber]
* Remove libgnome and libgnomeui dependencies. [Saleem Abdulrasool]
* Grab keyboard focus when prompting for password.
[Josselin Mouette]
* Use the vala programming language for some code.
* Add initial infrastructure for PKCS#11 key/certificate support.
* Save and load window sizes from gconf. [Adam Schreiber]
* Build fixes [Brian Cameron, Saleem Abdulrasool, Alexis Ballier,
Christian Persch, Rodrigo Moya]
Diffstat (limited to 'security/seahorse/patches')
-rw-r--r-- | security/seahorse/patches/patch-aa | 62 |
1 files changed, 48 insertions, 14 deletions
diff --git a/security/seahorse/patches/patch-aa b/security/seahorse/patches/patch-aa index 5e2dbd737d7..f278b841559 100644 --- a/security/seahorse/patches/patch-aa +++ b/security/seahorse/patches/patch-aa @@ -1,15 +1,49 @@ -$NetBSD: patch-aa,v 1.9 2007/06/12 20:09:11 joerg Exp $ +$NetBSD: patch-aa,v 1.10 2008/10/27 16:51:59 wiz Exp $ ---- Makefile.am.orig 2007-06-12 19:57:32.000000000 +0000 -+++ Makefile.am -@@ -16,8 +16,8 @@ SUBDIRS = libcryptui \ - help \ - pixmaps \ - plugins \ -- $(AGENT_DIR) \ -- daemon -+ daemon \ -+ $(AGENT_DIR) - - EXTRA_DIST = \ - AUTHORS \ +--- configure.orig 2008-10-27 14:54:33.000000000 +0000 ++++ configure +@@ -17343,7 +17343,7 @@ _ACEOF + + fi + +- if test "$enable_pgp" == "yes"; then ++ if test "$enable_pgp" = "yes"; then + WITH_PGP_TRUE= + WITH_PGP_FALSE='#' + else +@@ -18602,7 +18602,7 @@ else + echo "${ECHO_T}yes" >&6; } + enable_pkcs11="yes" + fi +- if test "$enable_pkcs11" == "yes"; then ++ if test "$enable_pkcs11" = "yes"; then + + cat >>confdefs.h <<\_ACEOF + #define WITH_PKCS11 1 +@@ -18613,7 +18613,7 @@ _ACEOF + fi + fi + +- if test "$enable_pkcs11" == "yes"; then ++ if test "$enable_pkcs11" = "yes"; then + WITH_PKCS11_TRUE= + WITH_PKCS11_FALSE='#' + else +@@ -18738,7 +18738,7 @@ _ACEOF + + fi + +- if test "$enable_ssh" == "yes"; then ++ if test "$enable_ssh" = "yes"; then + WITH_SSH_TRUE= + WITH_SSH_FALSE='#' + else +@@ -18795,7 +18795,7 @@ if test "$enable_tests" != "yes"; then + enable_tests="no" + fi + +- if test "$enable_tests" == "yes"; then ++ if test "$enable_tests" = "yes"; then + WITH_TESTS_TRUE= + WITH_TESTS_FALSE='#' + else |