diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2009-01-10 05:22:13 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2009-01-10 05:22:13 +0000 |
commit | 610ae5681637c1051a0c17b54e29d97f53da2f3a (patch) | |
tree | c231a1eb74b07e444fa7363012cb84bf23d83ce0 /security/seahorse-plugins | |
parent | 15b6544926b07a98710eeb765baf03e3fc9a195c (diff) | |
download | ports-610ae5681637c1051a0c17b54e29d97f53da2f3a.tar.gz ports-610ae5681637c1051a0c17b54e29d97f53da2f3a.zip |
Notes
Diffstat (limited to 'security/seahorse-plugins')
-rw-r--r-- | security/seahorse-plugins/Makefile | 84 | ||||
-rw-r--r-- | security/seahorse-plugins/distinfo | 3 | ||||
-rw-r--r-- | security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c | 32 | ||||
-rw-r--r-- | security/seahorse-plugins/files/patch-agent_seahorse-agent.h | 11 | ||||
-rw-r--r-- | security/seahorse-plugins/pkg-descr | 5 | ||||
-rw-r--r-- | security/seahorse-plugins/pkg-plist | 385 |
6 files changed, 520 insertions, 0 deletions
diff --git a/security/seahorse-plugins/Makefile b/security/seahorse-plugins/Makefile new file mode 100644 index 000000000000..bf3507e2fff6 --- /dev/null +++ b/security/seahorse-plugins/Makefile @@ -0,0 +1,84 @@ +# New ports collection makefile for: seahorse-plugins +# Date created: 06 August 2008 +# Whom: Dave McKay <dave@mu.org> +# +# $FreeBSD$ +# $MCom: ports/security/seahorse-plugins/Makefile,v 1.4 2008/10/20 03:02:56 mezz Exp $ +# + +PORTNAME= seahorse-plugins +PORTVERSION= 2.24.1 +CATEGORIES= security gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Plug-ins for the Seahorse key and password management application + +LIB_DEPENDS= cryptui.0:${PORTSDIR}/security/seahorse + +USE_BZIP2= yes +USE_GETTEXT= yes +USE_GMAKE= yes +USE_GECKO= firefox xulrunner +USE_GNOME= gnomehack intlhack gnomeprefix libglade2 gconf2 gnomedocutils +GNU_CONFIGURE= yes +INSTALLS_ICONS= yes +INSTALLS_OMF= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +OPTIONS= EPIPHANY "Enable Epiphany plug-in support" on \ + NAUTILUS "Enable the Nautilus component" on \ + GEDIT "Enable GEdit plug-in support" on \ + APPLET "Enable clipboard encryption applet" on + +GCONF_SCHEMAS= seahorse-plugins.schemas +MAN1= seahorse-agent.1 seahorse-tool.1 + +.include <bsd.port.pre.mk> + +.if !defined(WITHOUT_GEDIT) +BUILD_DEPENDS+= gedit:${PORTSDIR}/editors/gedit +RUN_DEPENDS+= gedit:${PORTSDIR}/editors/gedit +PLIST_SUB+= GEDIT="" +GCONF_SCHEMAS+= seahorse-gedit.schemas +.else +PLIST_SUB+= GEDIT="@comment " +CONFIGURE_ARGS+=--disable-gedit +.endif + +.if !defined(WITHOUT_NAUTILUS) +USE_GNOME+= nautilus2 +PLIST_SUB+= NAUTILUS="" +.else +PLIST_SUB+= NAUTILUS="@comment " +CONFIGURE_ARGS+=--disable-nautilus +.endif + +.if !defined(WITHOUT_EPIPHANY) +BUILD_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany +RUN_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany +PLIST_SUB+= EPIPHANY="" EPHY_VERSION="2.23" +.else +CONFIGURE_ARGS+=--disable-epiphany +PLIST_SUB+= EPHY="@comment " +.endif + +.if !defined(WITHOUT_APPLET) +USE_GNOME+= gnomepanel +PLIST_SUB+= APPLET="" +.else +CONFIGURE_ARGS+=--disable-applet +PLIST_SUB+= APPLET="@comment " +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|" == "|" = "|g' \ + ${WRKSRC}/configure + +post-install: + @-update-desktop-database + @-update-mime-database ${PREFIX}/share/mime + +.include <bsd.port.post.mk> diff --git a/security/seahorse-plugins/distinfo b/security/seahorse-plugins/distinfo new file mode 100644 index 000000000000..e9ffdd587f4a --- /dev/null +++ b/security/seahorse-plugins/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/seahorse-plugins-2.24.1.tar.bz2) = 842b7b7424c2a5cfe56db5960133f0a1 +SHA256 (gnome2/seahorse-plugins-2.24.1.tar.bz2) = 0a9ee63adc7ad01e9c3d9a3432d467a4df24889b7bd41b065e89bec74ccd7676 +SIZE (gnome2/seahorse-plugins-2.24.1.tar.bz2) = 1843996 diff --git a/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c b/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c new file mode 100644 index 000000000000..4ecd849405c7 --- /dev/null +++ b/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c @@ -0,0 +1,32 @@ +--- agent/seahorse-agent-io.c.orig Sun Aug 28 15:52:02 2005 ++++ agent/seahorse-agent-io.c Fri Oct 7 21:51:25 2005 +@@ -412,12 +412,18 @@ io_handler (GIOChannel *source, GIOCondi + gsize length; + GError *err = NULL; + gboolean ret = TRUE; ++ GIOStatus status; + + if (condition & G_IO_IN) { + /* Read 1 line from the io channel, including newline character */ +- g_io_channel_read_line (source, &string, &length, NULL, &err); ++ status = g_io_channel_read_line (source, &string, &length, NULL, &err); + +- if (err != NULL) { ++ if (status == G_IO_STATUS_EOF) { ++ free_conn (cn); ++ ret = FALSE; ++ } ++ ++ else if (err != NULL) { + g_critical ("couldn't read from socket: %s", err->message); + g_clear_error (&err); + free_conn (cn); +@@ -434,7 +440,7 @@ io_handler (GIOChannel *source, GIOCondi + g_free (string); + } + +- if (cn && condition & G_IO_HUP) { ++ else if (cn && condition & G_IO_HUP) { + free_conn (cn); + ret = FALSE; /* removes watch */ + } diff --git a/security/seahorse-plugins/files/patch-agent_seahorse-agent.h b/security/seahorse-plugins/files/patch-agent_seahorse-agent.h new file mode 100644 index 000000000000..7ba32051e701 --- /dev/null +++ b/security/seahorse-plugins/files/patch-agent_seahorse-agent.h @@ -0,0 +1,11 @@ +--- agent/seahorse-agent.h.orig 2008-08-06 01:22:16.000000000 -0400 ++++ agent/seahorse-agent.h 2008-08-06 01:22:27.000000000 -0400 +@@ -22,6 +22,8 @@ + #ifndef __SEAHORSE_AGENT_H__ + #define __SEAHORSE_AGENT_H__ + ++#include <sys/types.h> ++ + #include <glib.h> + #include <gconf/gconf-client.h> + #include <gconf/gconf.h> diff --git a/security/seahorse-plugins/pkg-descr b/security/seahorse-plugins/pkg-descr new file mode 100644 index 000000000000..1fda4fd5d434 --- /dev/null +++ b/security/seahorse-plugins/pkg-descr @@ -0,0 +1,5 @@ +These are various plug-ins for the Seahorse security management application. +They serve to extend Seahorse, and to integrate Seahorse into other +applications such as Nautilus, GEdit, etc. + +WWW: http://seahorse.sourceforge.net/ diff --git a/security/seahorse-plugins/pkg-plist b/security/seahorse-plugins/pkg-plist new file mode 100644 index 000000000000..635942266cf5 --- /dev/null +++ b/security/seahorse-plugins/pkg-plist @@ -0,0 +1,385 @@ +bin/seahorse-agent +bin/seahorse-preferences +bin/seahorse-tool +%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/libseahorseextension.a +%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/libseahorseextension.la +%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/libseahorseextension.so +%%EPIPHANY%%lib/epiphany/%%EPHY_VERSION%%/extensions/seahorse.ephy-extension +%%GEDIT%%lib/gedit-2/plugins/libseahorse-pgp.a +%%GEDIT%%lib/gedit-2/plugins/libseahorse-pgp.la +%%GEDIT%%lib/gedit-2/plugins/libseahorse-pgp.so +%%GEDIT%%lib/gedit-2/plugins/seahorse-pgp.gedit-plugin +%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-seahorse.a +%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-seahorse.la +%%NAUTILUS%%lib/nautilus/extensions-2.0/libnautilus-seahorse.so +lib/seahorse/seahorse-applet +libdata/bonobo/servers/GNOME_SeahorseApplet.server +share/applications/seahorse-pgp-encrypted.desktop +share/applications/seahorse-pgp-keys.desktop +share/applications/seahorse-pgp-preferences.desktop +share/applications/seahorse-pgp-signature.desktop +share/gnome-2.0/ui/GNOME_SeahorseApplet.xml +share/gnome/help/seahorse-applet/C/legal.xml +share/gnome/help/seahorse-applet/C/seahorse-applet.xml +share/gnome/help/seahorse-applet/es/seahorse-applet.xml +share/gnome/help/seahorse-applet/fr/seahorse-applet.xml +share/gnome/help/seahorse-applet/it/seahorse-applet.xml +share/gnome/help/seahorse-applet/oc/seahorse-applet.xml +share/gnome/help/seahorse-applet/ru/seahorse-applet.xml +share/gnome/help/seahorse-applet/sv/seahorse-applet.xml +share/gnome/help/seahorse-applet/vi/seahorse-applet.xml +share/gnome/help/seahorse-plugins/C/figures/export.png +share/gnome/help/seahorse-plugins/C/figures/file-manager.png +share/gnome/help/seahorse-plugins/C/figures/generate.png +share/gnome/help/seahorse-plugins/C/figures/import.png +share/gnome/help/seahorse-plugins/C/figures/key-manager.png +share/gnome/help/seahorse-plugins/C/figures/key-properties.png +share/gnome/help/seahorse-plugins/C/figures/passphrase.png +share/gnome/help/seahorse-plugins/C/figures/preferences.png +share/gnome/help/seahorse-plugins/C/figures/recipients.png +share/gnome/help/seahorse-plugins/C/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/C/figures/signature.png +share/gnome/help/seahorse-plugins/C/figures/text-editor.png +share/gnome/help/seahorse-plugins/C/legal.xml +share/gnome/help/seahorse-plugins/C/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/cs/figures/export.png +share/gnome/help/seahorse-plugins/cs/figures/file-manager.png +share/gnome/help/seahorse-plugins/cs/figures/generate.png +share/gnome/help/seahorse-plugins/cs/figures/import.png +share/gnome/help/seahorse-plugins/cs/figures/key-manager.png +share/gnome/help/seahorse-plugins/cs/figures/key-properties.png +share/gnome/help/seahorse-plugins/cs/figures/passphrase.png +share/gnome/help/seahorse-plugins/cs/figures/preferences.png +share/gnome/help/seahorse-plugins/cs/figures/recipients.png +share/gnome/help/seahorse-plugins/cs/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/cs/figures/signature.png +share/gnome/help/seahorse-plugins/cs/figures/text-editor.png +share/gnome/help/seahorse-plugins/cs/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/de/figures/export.png +share/gnome/help/seahorse-plugins/de/figures/file-manager.png +share/gnome/help/seahorse-plugins/de/figures/generate.png +share/gnome/help/seahorse-plugins/de/figures/import.png +share/gnome/help/seahorse-plugins/de/figures/key-manager.png +share/gnome/help/seahorse-plugins/de/figures/key-properties.png +share/gnome/help/seahorse-plugins/de/figures/passphrase.png +share/gnome/help/seahorse-plugins/de/figures/preferences.png +share/gnome/help/seahorse-plugins/de/figures/recipients.png +share/gnome/help/seahorse-plugins/de/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/de/figures/signature.png +share/gnome/help/seahorse-plugins/de/figures/text-editor.png +share/gnome/help/seahorse-plugins/de/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/el/figures/export.png +share/gnome/help/seahorse-plugins/el/figures/file-manager.png +share/gnome/help/seahorse-plugins/el/figures/generate.png +share/gnome/help/seahorse-plugins/el/figures/import.png +share/gnome/help/seahorse-plugins/el/figures/key-manager.png +share/gnome/help/seahorse-plugins/el/figures/key-properties.png +share/gnome/help/seahorse-plugins/el/figures/passphrase.png +share/gnome/help/seahorse-plugins/el/figures/preferences.png +share/gnome/help/seahorse-plugins/el/figures/recipients.png +share/gnome/help/seahorse-plugins/el/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/el/figures/signature.png +share/gnome/help/seahorse-plugins/el/figures/text-editor.png +share/gnome/help/seahorse-plugins/el/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/en_GB/figures/export.png +share/gnome/help/seahorse-plugins/en_GB/figures/file-manager.png +share/gnome/help/seahorse-plugins/en_GB/figures/generate.png +share/gnome/help/seahorse-plugins/en_GB/figures/import.png +share/gnome/help/seahorse-plugins/en_GB/figures/key-manager.png +share/gnome/help/seahorse-plugins/en_GB/figures/key-properties.png +share/gnome/help/seahorse-plugins/en_GB/figures/passphrase.png +share/gnome/help/seahorse-plugins/en_GB/figures/preferences.png +share/gnome/help/seahorse-plugins/en_GB/figures/recipients.png +share/gnome/help/seahorse-plugins/en_GB/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/en_GB/figures/signature.png +share/gnome/help/seahorse-plugins/en_GB/figures/text-editor.png +share/gnome/help/seahorse-plugins/en_GB/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/es/figures/export.png +share/gnome/help/seahorse-plugins/es/figures/file-manager.png +share/gnome/help/seahorse-plugins/es/figures/generate.png +share/gnome/help/seahorse-plugins/es/figures/import.png +share/gnome/help/seahorse-plugins/es/figures/key-manager.png +share/gnome/help/seahorse-plugins/es/figures/key-properties.png +share/gnome/help/seahorse-plugins/es/figures/passphrase.png +share/gnome/help/seahorse-plugins/es/figures/preferences.png +share/gnome/help/seahorse-plugins/es/figures/recipients.png +share/gnome/help/seahorse-plugins/es/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/es/figures/signature.png +share/gnome/help/seahorse-plugins/es/figures/text-editor.png +share/gnome/help/seahorse-plugins/es/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/fr/figures/export.png +share/gnome/help/seahorse-plugins/fr/figures/file-manager.png +share/gnome/help/seahorse-plugins/fr/figures/generate.png +share/gnome/help/seahorse-plugins/fr/figures/import.png +share/gnome/help/seahorse-plugins/fr/figures/key-manager.png +share/gnome/help/seahorse-plugins/fr/figures/key-properties.png +share/gnome/help/seahorse-plugins/fr/figures/passphrase.png +share/gnome/help/seahorse-plugins/fr/figures/preferences.png +share/gnome/help/seahorse-plugins/fr/figures/recipients.png +share/gnome/help/seahorse-plugins/fr/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/fr/figures/signature.png +share/gnome/help/seahorse-plugins/fr/figures/text-editor.png +share/gnome/help/seahorse-plugins/fr/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/it/figures/export.png +share/gnome/help/seahorse-plugins/it/figures/file-manager.png +share/gnome/help/seahorse-plugins/it/figures/generate.png +share/gnome/help/seahorse-plugins/it/figures/import.png +share/gnome/help/seahorse-plugins/it/figures/key-manager.png +share/gnome/help/seahorse-plugins/it/figures/key-properties.png +share/gnome/help/seahorse-plugins/it/figures/passphrase.png +share/gnome/help/seahorse-plugins/it/figures/preferences.png +share/gnome/help/seahorse-plugins/it/figures/recipients.png +share/gnome/help/seahorse-plugins/it/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/it/figures/signature.png +share/gnome/help/seahorse-plugins/it/figures/text-editor.png +share/gnome/help/seahorse-plugins/it/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/oc/figures/export.png +share/gnome/help/seahorse-plugins/oc/figures/file-manager.png +share/gnome/help/seahorse-plugins/oc/figures/generate.png +share/gnome/help/seahorse-plugins/oc/figures/import.png +share/gnome/help/seahorse-plugins/oc/figures/key-manager.png +share/gnome/help/seahorse-plugins/oc/figures/key-properties.png +share/gnome/help/seahorse-plugins/oc/figures/passphrase.png +share/gnome/help/seahorse-plugins/oc/figures/preferences.png +share/gnome/help/seahorse-plugins/oc/figures/recipients.png +share/gnome/help/seahorse-plugins/oc/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/oc/figures/signature.png +share/gnome/help/seahorse-plugins/oc/figures/text-editor.png +share/gnome/help/seahorse-plugins/oc/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/ru/figures/export.png +share/gnome/help/seahorse-plugins/ru/figures/file-manager.png +share/gnome/help/seahorse-plugins/ru/figures/generate.png +share/gnome/help/seahorse-plugins/ru/figures/import.png +share/gnome/help/seahorse-plugins/ru/figures/key-manager.png +share/gnome/help/seahorse-plugins/ru/figures/key-properties.png +share/gnome/help/seahorse-plugins/ru/figures/passphrase.png +share/gnome/help/seahorse-plugins/ru/figures/preferences.png +share/gnome/help/seahorse-plugins/ru/figures/recipients.png +share/gnome/help/seahorse-plugins/ru/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/ru/figures/signature.png +share/gnome/help/seahorse-plugins/ru/figures/text-editor.png +share/gnome/help/seahorse-plugins/ru/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/sv/figures/export.png +share/gnome/help/seahorse-plugins/sv/figures/file-manager.png +share/gnome/help/seahorse-plugins/sv/figures/generate.png +share/gnome/help/seahorse-plugins/sv/figures/import.png +share/gnome/help/seahorse-plugins/sv/figures/key-manager.png +share/gnome/help/seahorse-plugins/sv/figures/key-properties.png +share/gnome/help/seahorse-plugins/sv/figures/passphrase.png +share/gnome/help/seahorse-plugins/sv/figures/preferences.png +share/gnome/help/seahorse-plugins/sv/figures/recipients.png +share/gnome/help/seahorse-plugins/sv/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/sv/figures/signature.png +share/gnome/help/seahorse-plugins/sv/figures/text-editor.png +share/gnome/help/seahorse-plugins/sv/seahorse-plugins.xml +share/gnome/help/seahorse-plugins/vi/figures/export.png +share/gnome/help/seahorse-plugins/vi/figures/file-manager.png +share/gnome/help/seahorse-plugins/vi/figures/generate.png +share/gnome/help/seahorse-plugins/vi/figures/import.png +share/gnome/help/seahorse-plugins/vi/figures/key-manager.png +share/gnome/help/seahorse-plugins/vi/figures/key-properties.png +share/gnome/help/seahorse-plugins/vi/figures/passphrase.png +share/gnome/help/seahorse-plugins/vi/figures/preferences.png +share/gnome/help/seahorse-plugins/vi/figures/recipients.png +share/gnome/help/seahorse-plugins/vi/figures/seahorse-window.png +share/gnome/help/seahorse-plugins/vi/figures/signature.png +share/gnome/help/seahorse-plugins/vi/figures/text-editor.png +share/gnome/help/seahorse-plugins/vi/seahorse-plugins.xml +share/icons/hicolor/48x48/apps/seahorse-applet.png +share/icons/hicolor/scalable/apps/seahorse-applet.svg +share/locale/ar/LC_MESSAGES/seahorse-plugins.mo +share/locale/az/LC_MESSAGES/seahorse-plugins.mo +share/locale/be@latin/LC_MESSAGES/seahorse-plugins.mo +share/locale/bg/LC_MESSAGES/seahorse-plugins.mo +share/locale/bn/LC_MESSAGES/seahorse-plugins.mo +share/locale/bn_IN/LC_MESSAGES/seahorse-plugins.mo +share/locale/ca/LC_MESSAGES/seahorse-plugins.mo +share/locale/cs/LC_MESSAGES/seahorse-plugins.mo +share/locale/da/LC_MESSAGES/seahorse-plugins.mo +share/locale/de/LC_MESSAGES/seahorse-plugins.mo +share/locale/dz/LC_MESSAGES/seahorse-plugins.mo +share/locale/el/LC_MESSAGES/seahorse-plugins.mo +share/locale/en_CA/LC_MESSAGES/seahorse-plugins.mo +share/locale/en_GB/LC_MESSAGES/seahorse-plugins.mo +share/locale/es/LC_MESSAGES/seahorse-plugins.mo +share/locale/et/LC_MESSAGES/seahorse-plugins.mo +share/locale/eu/LC_MESSAGES/seahorse-plugins.mo +share/locale/fi/LC_MESSAGES/seahorse-plugins.mo +share/locale/fr/LC_MESSAGES/seahorse-plugins.mo +share/locale/ga/LC_MESSAGES/seahorse-plugins.mo +share/locale/gl/LC_MESSAGES/seahorse-plugins.mo +share/locale/gu/LC_MESSAGES/seahorse-plugins.mo +share/locale/he/LC_MESSAGES/seahorse-plugins.mo +share/locale/hi/LC_MESSAGES/seahorse-plugins.mo +share/locale/hr/LC_MESSAGES/seahorse-plugins.mo +share/locale/hu/LC_MESSAGES/seahorse-plugins.mo +share/locale/it/LC_MESSAGES/seahorse-plugins.mo +share/locale/ja/LC_MESSAGES/seahorse-plugins.mo +share/locale/kn/LC_MESSAGES/seahorse-plugins.mo +share/locale/ko/LC_MESSAGES/seahorse-plugins.mo +share/locale/lt/LC_MESSAGES/seahorse-plugins.mo +share/locale/lv/LC_MESSAGES/seahorse-plugins.mo +share/locale/mk/LC_MESSAGES/seahorse-plugins.mo +share/locale/ml/LC_MESSAGES/seahorse-plugins.mo +share/locale/mr/LC_MESSAGES/seahorse-plugins.mo +share/locale/ms/LC_MESSAGES/seahorse-plugins.mo +share/locale/nb/LC_MESSAGES/seahorse-plugins.mo +share/locale/ne/LC_MESSAGES/seahorse-plugins.mo +share/locale/nl/LC_MESSAGES/seahorse-plugins.mo +share/locale/nn/LC_MESSAGES/seahorse-plugins.mo +share/locale/oc/LC_MESSAGES/seahorse-plugins.mo +share/locale/or/LC_MESSAGES/seahorse-plugins.mo +share/locale/pa/LC_MESSAGES/seahorse-plugins.mo +share/locale/pl/LC_MESSAGES/seahorse-plugins.mo +share/locale/pt/LC_MESSAGES/seahorse-plugins.mo +share/locale/pt_BR/LC_MESSAGES/seahorse-plugins.mo +share/locale/ru/LC_MESSAGES/seahorse-plugins.mo +share/locale/rw/LC_MESSAGES/seahorse-plugins.mo +share/locale/si/LC_MESSAGES/seahorse-plugins.mo +share/locale/sk/LC_MESSAGES/seahorse-plugins.mo +share/locale/sl/LC_MESSAGES/seahorse-plugins.mo +share/locale/sq/LC_MESSAGES/seahorse-plugins.mo +share/locale/sr/LC_MESSAGES/seahorse-plugins.mo +share/locale/sr@latin/LC_MESSAGES/seahorse-plugins.mo +share/locale/sv/LC_MESSAGES/seahorse-plugins.mo +share/locale/ta/LC_MESSAGES/seahorse-plugins.mo +share/locale/te/LC_MESSAGES/seahorse-plugins.mo +share/locale/th/LC_MESSAGES/seahorse-plugins.mo +share/locale/tr/LC_MESSAGES/seahorse-plugins.mo +share/locale/uk/LC_MESSAGES/seahorse-plugins.mo +share/locale/vi/LC_MESSAGES/seahorse-plugins.mo +share/locale/zh_CN/LC_MESSAGES/seahorse-plugins.mo +share/locale/zh_HK/LC_MESSAGES/seahorse-plugins.mo +share/locale/zh_TW/LC_MESSAGES/seahorse-plugins.mo +share/mime/packages/seahorse.xml +share/omf/seahorse-applet/seahorse-applet-C.omf +share/omf/seahorse-applet/seahorse-applet-es.omf +share/omf/seahorse-applet/seahorse-applet-fr.omf +share/omf/seahorse-applet/seahorse-applet-it.omf +share/omf/seahorse-applet/seahorse-applet-oc.omf +share/omf/seahorse-applet/seahorse-applet-ru.omf +share/omf/seahorse-applet/seahorse-applet-sv.omf +share/omf/seahorse-applet/seahorse-applet-vi.omf +share/omf/seahorse-plugins/seahorse-plugins-C.omf +share/omf/seahorse-plugins/seahorse-plugins-cs.omf +share/omf/seahorse-plugins/seahorse-plugins-de.omf +share/omf/seahorse-plugins/seahorse-plugins-el.omf +share/omf/seahorse-plugins/seahorse-plugins-en_GB.omf +share/omf/seahorse-plugins/seahorse-plugins-es.omf +share/omf/seahorse-plugins/seahorse-plugins-fr.omf +share/omf/seahorse-plugins/seahorse-plugins-it.omf +share/omf/seahorse-plugins/seahorse-plugins-oc.omf +share/omf/seahorse-plugins/seahorse-plugins-ru.omf +share/omf/seahorse-plugins/seahorse-plugins-sv.omf +share/omf/seahorse-plugins/seahorse-plugins-vi.omf +share/pixmaps/seahorse-applet.svg +share/pixmaps/seahorse-plugins/22x22/seahorse-applet-encrypted.png +share/pixmaps/seahorse-plugins/22x22/seahorse-applet-key.png +share/pixmaps/seahorse-plugins/22x22/seahorse-applet-signed.png +share/pixmaps/seahorse-plugins/22x22/seahorse-applet-text.png +share/pixmaps/seahorse-plugins/22x22/seahorse-applet-unknown.png +share/pixmaps/seahorse-plugins/22x22/seahorse-key-personal.png +share/pixmaps/seahorse-plugins/22x22/seahorse-key.png +share/pixmaps/seahorse-plugins/22x22/seahorse-sign-bad.png +share/pixmaps/seahorse-plugins/22x22/seahorse-sign-ok.png +share/pixmaps/seahorse-plugins/22x22/seahorse-sign.png +share/pixmaps/seahorse-plugins/48x48/seahorse-applet-encrypted.png +share/pixmaps/seahorse-plugins/48x48/seahorse-applet-key.png +share/pixmaps/seahorse-plugins/48x48/seahorse-applet-signed.png +share/pixmaps/seahorse-plugins/48x48/seahorse-applet-text.png +share/pixmaps/seahorse-plugins/48x48/seahorse-applet-unknown.png +share/pixmaps/seahorse-plugins/48x48/seahorse-applet.png +share/pixmaps/seahorse-plugins/48x48/seahorse-key-personal.png +share/pixmaps/seahorse-plugins/48x48/seahorse-key.png +share/pixmaps/seahorse-plugins/48x48/seahorse-sign-bad.png +share/pixmaps/seahorse-plugins/48x48/seahorse-sign-ok.png +share/pixmaps/seahorse-plugins/48x48/seahorse-sign-unknown.png +share/pixmaps/seahorse-plugins/48x48/seahorse-sign.png +share/pixmaps/seahorse-plugins/scalable/seahorse-applet-encrypted.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-applet-key.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-applet-signed.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-applet-text.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-applet-unknown.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-applet.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-key-personal.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-key-ssh.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-key.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-person.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-share-keys.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-sign-bad.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-sign-ok.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-sign-unknown.svg +share/pixmaps/seahorse-plugins/scalable/seahorse-sign.svg +%%DATADIR%%/glade/seahorse-agent-cache.glade +%%DATADIR%%/glade/seahorse-applet-preferences.glade +%%DATADIR%%/glade/seahorse-multi-encrypt.glade +%%DATADIR%%/glade/seahorse-notify.glade +%%DATADIR%%/glade/seahorse-prefs.glade +%%DATADIR%%/glade/seahorse-progress.glade +@dirrm %%DATADIR%%/glade +@dirrm %%DATADIR%% +@dirrmtry share/pixmaps/seahorse-plugins/scalable +@dirrmtry share/pixmaps/seahorse-plugins/48x48 +@dirrmtry share/pixmaps/seahorse-plugins/22x22 +@dirrmtry share/pixmaps/seahorse-plugins +@dirrm share/omf/seahorse-plugins +@dirrm share/omf/seahorse-applet +@dirrm share/gnome/help/seahorse-plugins/vi/figures +@dirrm share/gnome/help/seahorse-plugins/vi +@dirrm share/gnome/help/seahorse-plugins/sv/figures +@dirrm share/gnome/help/seahorse-plugins/sv +@dirrm share/gnome/help/seahorse-plugins/ru/figures +@dirrm share/gnome/help/seahorse-plugins/ru +@dirrm share/gnome/help/seahorse-plugins/oc/figures +@dirrm share/gnome/help/seahorse-plugins/oc +@dirrm share/gnome/help/seahorse-plugins/it/figures +@dirrm share/gnome/help/seahorse-plugins/it +@dirrm share/gnome/help/seahorse-plugins/fr/figures +@dirrm share/gnome/help/seahorse-plugins/fr +@dirrm share/gnome/help/seahorse-plugins/es/figures +@dirrm share/gnome/help/seahorse-plugins/es +@dirrm share/gnome/help/seahorse-plugins/en_GB/figures +@dirrm share/gnome/help/seahorse-plugins/en_GB +@dirrm share/gnome/help/seahorse-plugins/el/figures +@dirrm share/gnome/help/seahorse-plugins/el +@dirrm share/gnome/help/seahorse-plugins/de/figures +@dirrm share/gnome/help/seahorse-plugins/de +@dirrm share/gnome/help/seahorse-plugins/cs/figures +@dirrm share/gnome/help/seahorse-plugins/cs +@dirrm share/gnome/help/seahorse-plugins/C/figures +@dirrm share/gnome/help/seahorse-plugins/C +@dirrm share/gnome/help/seahorse-plugins +@dirrm share/gnome/help/seahorse-applet/vi +@dirrm share/gnome/help/seahorse-applet/sv +@dirrm share/gnome/help/seahorse-applet/ru +@dirrm share/gnome/help/seahorse-applet/oc +@dirrm share/gnome/help/seahorse-applet/it +@dirrm share/gnome/help/seahorse-applet/fr +@dirrm share/gnome/help/seahorse-applet/es +@dirrm share/gnome/help/seahorse-applet/C +@dirrm share/gnome/help/seahorse-applet +@dirrmtry share/applications +@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime +@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime +@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/si/LC_MESSAGES +@dirrmtry share/locale/si +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN +@dirrmtry share/locale/be@latin/LC_MESSAGES +@dirrmtry share/locale/be@latin |