diff options
author | drochner <drochner> | 2006-03-14 15:00:57 +0000 |
---|---|---|
committer | drochner <drochner> | 2006-03-14 15:00:57 +0000 |
commit | d46aff39f077dd1b7614eb964ca5ac4ce15252c9 (patch) | |
tree | 298df9a552aeb5f4610941ba0d96eb4c0a4a48a1 /security/seahorse/patches | |
parent | 40a74b10ae39066e2480805cb6ed3da6308237e7 (diff) | |
download | pkgsrc-d46aff39f077dd1b7614eb964ca5ac4ce15252c9.tar.gz |
update to 0.8.1
changes:
* Better HKP support for strange key servers.
* Updated gedit plugin to work with gedit 2.14
* Fixed signing of keys with GPG 1.4.2 [Daniel Rodriguez Garcia]
* Fixed some minor packaging and build problems.
* Many smaller fixes.
pkgsrc changes:
-don't build nautilus plugin to limit dependencies
(will be provided in a separate pkg)
-remove some more unneeded dependencies
-prepare for the gedit plugin as a separate pkg
Diffstat (limited to 'security/seahorse/patches')
-rw-r--r-- | security/seahorse/patches/patch-ab | 10 | ||||
-rw-r--r-- | security/seahorse/patches/patch-af | 22 |
2 files changed, 28 insertions, 4 deletions
diff --git a/security/seahorse/patches/patch-ab b/security/seahorse/patches/patch-ab index 4f770c20f08..39e9dcd3880 100644 --- a/security/seahorse/patches/patch-ab +++ b/security/seahorse/patches/patch-ab @@ -1,14 +1,16 @@ -$NetBSD: patch-ab,v 1.4 2005/05/19 21:14:11 jmmv Exp $ +$NetBSD: patch-ab,v 1.5 2006/03/14 15:00:57 drochner Exp $ ---- configure.orig 2005-05-07 17:08:51.000000000 +0000 +--- configure.orig 2006-02-25 23:22:46.000000000 +0100 +++ configure -@@ -19614,6 +19614,9 @@ echo $ECHO_N "checking for GPGME - versi +@@ -19762,7 +19762,10 @@ echo $ECHO_N "checking for GPGME - versi sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'` if test "$major" -eq "$req_major"; then +- if test "$minor" -ge "$req_minor"; then + if test "$minor" -gt "$req_minor"; then + ok="yes" + fi - if test "$minor" -eq "$req_minor"; then ++ if test "$minor" -eq "$req_minor"; then if test "$micro" -ge "$req_micro"; then ok="yes" + fi diff --git a/security/seahorse/patches/patch-af b/security/seahorse/patches/patch-af new file mode 100644 index 00000000000..54769dafd7c --- /dev/null +++ b/security/seahorse/patches/patch-af @@ -0,0 +1,22 @@ +$NetBSD: patch-af,v 1.1 2006/03/14 15:00:57 drochner Exp $ + +--- plugins/gedit/Makefile.in.orig 2006-03-11 19:14:15.000000000 +0100 ++++ plugins/gedit/Makefile.in +@@ -58,7 +58,7 @@ pluginLTLIBRARIES_INSTALL = $(INSTALL) + LTLIBRARIES = $(plugin_LTLIBRARIES) + am__DEPENDENCIES_1 = + libseahorse_pgp_la_DEPENDENCIES = \ +- $(top_builddir)/libseahorse/libseahorse-internal.la \ ++ $(LOCALBASE)/lib/libseahorse-internal.la \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) + am__libseahorse_pgp_la_SOURCES_DIST = seahorse-gedit.c \ + seahorse-gedit.h seahorse-gedit-plugin.c \ +@@ -286,7 +286,7 @@ plugin_LTLIBRARIES = libseahorse-pgp.la + libseahorse_pgp_la_SOURCES = seahorse-gedit.c seahorse-gedit.h $(PLUGIN_SRCS) + libseahorse_pgp_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS) + libseahorse_pgp_la_LIBADD = \ +- $(top_builddir)/libseahorse/libseahorse-internal.la \ ++ $(LOCALBASE)/lib/libseahorse-internal.la \ + $(SEAHORSE_LIBS) \ + $(GEDIT_LIBS) + |