Update to 0.8.5

PR:		ports/44538
Submitted by:	maintainer
This commit is contained in:
Patrick Li 2002-10-28 23:09:18 +00:00
parent b4118e885a
commit e9970c7136
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=69061
10 changed files with 486 additions and 428 deletions

View file

@ -6,8 +6,7 @@
#
PORTNAME= sylpheed-claws
PORTVERSION= 0.8.2
PORTREVISION= 2
PORTVERSION= 0.8.5
CATEGORIES= mail news ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sylpheed-claws
@ -20,8 +19,8 @@ MAINTAINER= corecode@corecode.ath.cx
LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext
THEMEVERSION= 2
THEMEFILE= sylpheed-theme-pak${THEMEVERSION}${EXTRACT_SUFX}
THEMEVERSION= 0.8.3
THEMEFILE= sylpheed-iconset-${THEMEVERSION}claws.tar.gz
USE_BZIP2= yes
USE_GMAKE= yes
@ -104,7 +103,7 @@ pre-everything::
post-extract:
.if !defined(WITHOUT_THEMES)
@${MKDIR} ${WRKSRC}/themes
@cd ${WRKSRC}/themes && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${THEMEFILE} ${EXTRACT_AFTER_ARGS}
@cd ${WRKDIR} && ${GZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${THEMEFILE} ${EXTRACT_AFTER_ARGS}
.endif
post-patch:
@ -126,15 +125,16 @@ post-install:
@${INSTALL_DATA} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools
.endif
@${MKDIR} ${DATADIR}
.for i in OOo2sylpheed.pl calypso_convert.pl eud2gc.py filter_conv.pl \
gif2xface.pl gpg-sign-syl kmail2sylpheed.pl ldif-to-xml.py \
newscache_clean.pl outlook2sylpheed.pl update-po uudec
@${INSTALL_SCRIPT} ${WRKSRC}/tools/${i} ${DATADIR}
.endfor
@cd ${WRKSRC}/tools && \
${INSTALL_SCRIPT} OOo2sylpheed.pl calypso_convert.pl \
eud2gc.py filter_conv.pl gif2xface.pl gpg-sign-syl \
kmail2sylpheed.pl newscache_clean.pl outlook2sylpheed.pl \
tb2sylpheed update-po uudec ${DATADIR}
.if !defined(WITHOUT_THEMES)
@for d in `${FIND} ${WRKSRC}/themes`; do \
if ${TEST} -d $${d}; then ${MKDIR} ${DATADIR}/$${d#${WRKSRC}/}; else \
${INSTALL_DATA} $${d} ${DATADIR}/$${d#${WRKSRC}}; fi; \
@${MKDIR} ${DATADIR}/themes
@cd ${WRKDIR}/${THEMEFILE:C/.tar.gz//} && for d in `find .`; do \
if ${TEST} -d $${d}; then ${MKDIR} ${DATADIR}/themes/$${d}; else \
${INSTALL_DATA} $${d} ${DATADIR}/themes/$${d}; fi; \
done
.endif
@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylpheed-switcher ${PREFIX}/bin

View file

@ -1,2 +1,2 @@
MD5 (sylpheed-0.8.2claws.tar.bz2) = e1fb44f7fac029141a271ab1ca2267f2
MD5 (sylpheed-theme-pak2.tar.bz2) = e62d7a6188d1212e0ceac8ed7aaecd62
MD5 (sylpheed-0.8.5claws.tar.bz2) = aec1d9d47ed128d82858c8692269bd07
MD5 (sylpheed-iconset-0.8.3claws.tar.gz) = 7a6a1d4b25d1ddc726b244da8cd3fd84

View file

@ -1,22 +0,0 @@
--- src/defs.h.orig Wed Aug 28 11:43:59 2002
+++ src/defs.h Sun Sep 1 03:01:59 2002
@@ -70,8 +70,8 @@
#define MARK_VERSION 2
#define DEFAULT_SIGNATURE ".signature"
-#define DEFAULT_INC_PATH "/usr/bin/mh/inc"
-#define DEFAULT_INC_PROGRAM "inc"
+#define DEFAULT_INC_PATH ""
+#define DEFAULT_INC_PROGRAM ""
/* #define DEFAULT_INC_PATH "/usr/bin/imget" */
/* #define DEFAULT_INC_PROGRAM "imget" */
#define DEFAULT_SENDMAIL_CMD "/usr/sbin/sendmail -t"
@@ -79,7 +79,7 @@
#ifdef _PATH_MAILDIR
# define DEFAULT_SPOOL_PATH _PATH_MAILDIR
#else
-# define DEFAULT_SPOOL_PATH "/var/spool/mail"
+# define DEFAULT_SPOOL_PATH "/var/mail"
#endif
#define BUFFSIZE 8192

View file

@ -1,126 +0,0 @@
--- src/summary_search.c.orig Wed Jun 12 07:49:20 2002
+++ src/summary_search.c Tue Jul 23 19:14:41 2002
@@ -224,10 +224,6 @@
gboolean backward;
gboolean search_all;
gboolean all_searched = FALSE;
- gboolean from_matched;
- gboolean to_matched;
- gboolean subj_matched;
- gboolean body_matched;
gchar *body_str;
wchar_t *wcs_hs, *fromwcs, *towcs, *subjwcs;
wchar_t *(* WCSFindFunc) (const wchar_t *haystack,
@@ -260,6 +256,7 @@
towcs = (wchar_t *)GTK_ENTRY(to_entry)->text;
subjwcs = (wchar_t *)GTK_ENTRY(subject_entry)->text;
body_str = gtk_entry_get_text(GTK_ENTRY(body_entry));
+ wcs_hs = NULL;
if (search_all) {
gtk_clist_freeze(GTK_CLIST(ctree));
@@ -285,7 +282,13 @@
if (*body_str)
main_window_cursor_wait(summaryview->mainwin);
- for (;;) {
+ for (;; node = backward ? GTK_CTREE_NODE_PREV(node)
+ : GTK_CTREE_NODE_NEXT(node)) {
+ if (wcs_hs) {
+ g_free(wcs_hs);
+ wcs_hs = NULL;
+ }
+
if (!node) {
gchar *str;
AlertValue val;
@@ -324,58 +327,49 @@
break;
}
- from_matched = to_matched = subj_matched = body_matched = FALSE;
-
msginfo = gtk_ctree_node_get_row_data(ctree, node);
- if (*fromwcs && msginfo->from) {
+ if (*fromwcs) {
+ if (msginfo->from == NULL)
+ continue;
wcs_hs = strdup_mbstowcs(msginfo->from);
- if (wcs_hs && WCSFindFunc(wcs_hs, fromwcs) != NULL)
- from_matched = TRUE;
- g_free(wcs_hs);
+ if (!(wcs_hs && WCSFindFunc(wcs_hs, fromwcs) != NULL))
+ continue;
}
- if (*towcs && msginfo->to) {
+ if (*towcs) {
+ if (msginfo->to == NULL)
+ continue;
wcs_hs = strdup_mbstowcs(msginfo->to);
- if (wcs_hs && WCSFindFunc(wcs_hs, towcs) != NULL)
- to_matched = TRUE;
- g_free(wcs_hs);
+ if (!(wcs_hs && WCSFindFunc(wcs_hs, towcs) != NULL))
+ continue;
}
- if (*subjwcs && msginfo->subject) {
+ if (*subjwcs) {
+ if (msginfo->subject == NULL)
+ continue;
wcs_hs = strdup_mbstowcs(msginfo->subject);
- if (wcs_hs && WCSFindFunc(wcs_hs, subjwcs) != NULL)
- subj_matched = TRUE;
- g_free(wcs_hs);
+ if (!(wcs_hs && WCSFindFunc(wcs_hs, subjwcs) != NULL))
+ continue;
}
if (*body_str) {
- if (procmime_find_string(msginfo, body_str, case_sens))
- body_matched = TRUE;
+ if (!procmime_find_string(msginfo, body_str, case_sens))
+ continue;
}
- if (from_matched || to_matched || subj_matched || body_matched) {
- if (search_all)
- gtk_ctree_select(ctree, node);
- else {
- if (messageview_is_visible
- (summaryview->messageview)) {
- summary_unlock(summaryview);
- summary_select_node
- (summaryview, node, TRUE, TRUE);
- summary_lock(summaryview);
- if (body_matched) {
- messageview_search_string
- (summaryview->messageview,
- body_str, case_sens);
- }
- } else {
- summary_select_node
- (summaryview, node, FALSE, TRUE);
- }
- break;
- }
+ if (search_all)
+ gtk_ctree_select(ctree, node);
+ else {
+ if (messageview_is_visible(summaryview->messageview)) {
+ summary_unlock(summaryview);
+ summary_select_node(summaryview, node, TRUE, TRUE);
+ summary_lock(summaryview);
+ if (*body_str)
+ messageview_search_string(
+ summaryview->messageview,
+ body_str, case_sens);
+ } else
+ summary_select_node(summaryview, node, FALSE, TRUE);
+ break;
}
-
- node = backward ? GTK_CTREE_NODE_PREV(node)
- : GTK_CTREE_NODE_NEXT(node);
}
if (*body_str)

View file

@ -137,6 +137,7 @@ etc/sylprint.rc.example
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-9.html
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.html
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.sgml
share/locale/bg/LC_MESSAGES/sylpheed-claws.mo
share/locale/cs/LC_MESSAGES/sylpheed-claws.mo
share/locale/de/LC_MESSAGES/sylpheed-claws.mo
share/locale/el/LC_MESSAGES/sylpheed-claws.mo
@ -161,9 +162,31 @@ share/sylpheed-claws/filter_conv.pl
share/sylpheed-claws/gif2xface.pl
share/sylpheed-claws/gpg-sign-syl
share/sylpheed-claws/kmail2sylpheed.pl
share/sylpheed-claws/ldif-to-xml.py
share/sylpheed-claws/newscache_clean.pl
share/sylpheed-claws/outlook2sylpheed.pl
share/sylpheed-claws/tb2sylpheed
%%THEMES%%share/sylpheed-claws/themes/Crystal/close.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/dir-close.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/dir-open.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/error.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/preferences.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/properties.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/search.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/Kovico-sylpheed/address.xpm
%%THEMES%%share/sylpheed-claws/themes/Kovico-sylpheed/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/Kovico-sylpheed/close.xpm
@ -420,17 +443,73 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/black/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/black/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/black/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/close.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/work_online.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/README
%%THEMES%%share/sylpheed-claws/themes/mozilla/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/close.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/work_online.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/address.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/book.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/clip.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/clipkey.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/close.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/complete.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/deleted.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/error.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/folder.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/inbox_close.xpm
@ -438,6 +517,8 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/stw/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/interface.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/key.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/locked.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/mail.xpm
@ -459,7 +540,6 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/stw/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/queue_open.xpm
@ -472,63 +552,160 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/stw/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/address.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/new.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/replied.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/README
%%THEMES%%share/sylpheed-claws/themes/sylzilla/address.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/book.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/category.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/checkbox_off.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/checkbox_on.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/complete.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/delete.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/deleted.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/error.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/group.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/interface.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/jpilot.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/key.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/ldap.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/locked.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mark.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/new.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/notice_error.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/notice_note.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/notice_warn.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/preferences.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/properties.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/quicksearch.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/replied.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/search.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/work_online.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/address.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/book.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/category.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/clip.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/clipkey.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/complete.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/deleted.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/error.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/interface.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/jpilot.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/key.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/locked.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mark.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/new.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/replied.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/work_online.xpm
share/sylpheed-claws/update-po
share/sylpheed-claws/uudec
%%THEMES%%@dirrm share/sylpheed-claws/themes/tml02b
%%THEMES%%@dirrm share/sylpheed-claws/themes/tml02c
%%THEMES%%@dirrm share/sylpheed-claws/themes/sylzilla
%%THEMES%%@dirrm share/sylpheed-claws/themes/stw
%%THEMES%%@dirrm share/sylpheed-claws/themes/mozilla
%%THEMES%%@dirrm share/sylpheed-claws/themes/mongrel
%%THEMES%%@dirrm share/sylpheed-claws/themes/black
%%THEMES%%@dirrm share/sylpheed-claws/themes/XeNtish
%%THEMES%%@dirrm share/sylpheed-claws/themes/Plain_and_Bluish
%%THEMES%%@dirrm share/sylpheed-claws/themes/New_Session
%%THEMES%%@dirrm share/sylpheed-claws/themes/Kovico-sylpheed
%%THEMES%%@dirrm share/sylpheed-claws/themes/Crystal
%%THEMES%%@dirrm share/sylpheed-claws/themes
@dirrm share/sylpheed-claws
@unexec rmdir %D/share/pixmaps 2>/dev/null || true

View file

@ -6,8 +6,7 @@
#
PORTNAME= sylpheed-claws
PORTVERSION= 0.8.2
PORTREVISION= 2
PORTVERSION= 0.8.5
CATEGORIES= mail news ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sylpheed-claws
@ -20,8 +19,8 @@ MAINTAINER= corecode@corecode.ath.cx
LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext
THEMEVERSION= 2
THEMEFILE= sylpheed-theme-pak${THEMEVERSION}${EXTRACT_SUFX}
THEMEVERSION= 0.8.3
THEMEFILE= sylpheed-iconset-${THEMEVERSION}claws.tar.gz
USE_BZIP2= yes
USE_GMAKE= yes
@ -104,7 +103,7 @@ pre-everything::
post-extract:
.if !defined(WITHOUT_THEMES)
@${MKDIR} ${WRKSRC}/themes
@cd ${WRKSRC}/themes && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${THEMEFILE} ${EXTRACT_AFTER_ARGS}
@cd ${WRKDIR} && ${GZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${THEMEFILE} ${EXTRACT_AFTER_ARGS}
.endif
post-patch:
@ -126,15 +125,16 @@ post-install:
@${INSTALL_DATA} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools
.endif
@${MKDIR} ${DATADIR}
.for i in OOo2sylpheed.pl calypso_convert.pl eud2gc.py filter_conv.pl \
gif2xface.pl gpg-sign-syl kmail2sylpheed.pl ldif-to-xml.py \
newscache_clean.pl outlook2sylpheed.pl update-po uudec
@${INSTALL_SCRIPT} ${WRKSRC}/tools/${i} ${DATADIR}
.endfor
@cd ${WRKSRC}/tools && \
${INSTALL_SCRIPT} OOo2sylpheed.pl calypso_convert.pl \
eud2gc.py filter_conv.pl gif2xface.pl gpg-sign-syl \
kmail2sylpheed.pl newscache_clean.pl outlook2sylpheed.pl \
tb2sylpheed update-po uudec ${DATADIR}
.if !defined(WITHOUT_THEMES)
@for d in `${FIND} ${WRKSRC}/themes`; do \
if ${TEST} -d $${d}; then ${MKDIR} ${DATADIR}/$${d#${WRKSRC}/}; else \
${INSTALL_DATA} $${d} ${DATADIR}/$${d#${WRKSRC}}; fi; \
@${MKDIR} ${DATADIR}/themes
@cd ${WRKDIR}/${THEMEFILE:C/.tar.gz//} && for d in `find .`; do \
if ${TEST} -d $${d}; then ${MKDIR} ${DATADIR}/themes/$${d}; else \
${INSTALL_DATA} $${d} ${DATADIR}/themes/$${d}; fi; \
done
.endif
@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylpheed-switcher ${PREFIX}/bin

View file

@ -1,2 +1,2 @@
MD5 (sylpheed-0.8.2claws.tar.bz2) = e1fb44f7fac029141a271ab1ca2267f2
MD5 (sylpheed-theme-pak2.tar.bz2) = e62d7a6188d1212e0ceac8ed7aaecd62
MD5 (sylpheed-0.8.5claws.tar.bz2) = aec1d9d47ed128d82858c8692269bd07
MD5 (sylpheed-iconset-0.8.3claws.tar.gz) = 7a6a1d4b25d1ddc726b244da8cd3fd84

View file

@ -1,22 +0,0 @@
--- src/defs.h.orig Wed Aug 28 11:43:59 2002
+++ src/defs.h Sun Sep 1 03:01:59 2002
@@ -70,8 +70,8 @@
#define MARK_VERSION 2
#define DEFAULT_SIGNATURE ".signature"
-#define DEFAULT_INC_PATH "/usr/bin/mh/inc"
-#define DEFAULT_INC_PROGRAM "inc"
+#define DEFAULT_INC_PATH ""
+#define DEFAULT_INC_PROGRAM ""
/* #define DEFAULT_INC_PATH "/usr/bin/imget" */
/* #define DEFAULT_INC_PROGRAM "imget" */
#define DEFAULT_SENDMAIL_CMD "/usr/sbin/sendmail -t"
@@ -79,7 +79,7 @@
#ifdef _PATH_MAILDIR
# define DEFAULT_SPOOL_PATH _PATH_MAILDIR
#else
-# define DEFAULT_SPOOL_PATH "/var/spool/mail"
+# define DEFAULT_SPOOL_PATH "/var/mail"
#endif
#define BUFFSIZE 8192

View file

@ -1,126 +0,0 @@
--- src/summary_search.c.orig Wed Jun 12 07:49:20 2002
+++ src/summary_search.c Tue Jul 23 19:14:41 2002
@@ -224,10 +224,6 @@
gboolean backward;
gboolean search_all;
gboolean all_searched = FALSE;
- gboolean from_matched;
- gboolean to_matched;
- gboolean subj_matched;
- gboolean body_matched;
gchar *body_str;
wchar_t *wcs_hs, *fromwcs, *towcs, *subjwcs;
wchar_t *(* WCSFindFunc) (const wchar_t *haystack,
@@ -260,6 +256,7 @@
towcs = (wchar_t *)GTK_ENTRY(to_entry)->text;
subjwcs = (wchar_t *)GTK_ENTRY(subject_entry)->text;
body_str = gtk_entry_get_text(GTK_ENTRY(body_entry));
+ wcs_hs = NULL;
if (search_all) {
gtk_clist_freeze(GTK_CLIST(ctree));
@@ -285,7 +282,13 @@
if (*body_str)
main_window_cursor_wait(summaryview->mainwin);
- for (;;) {
+ for (;; node = backward ? GTK_CTREE_NODE_PREV(node)
+ : GTK_CTREE_NODE_NEXT(node)) {
+ if (wcs_hs) {
+ g_free(wcs_hs);
+ wcs_hs = NULL;
+ }
+
if (!node) {
gchar *str;
AlertValue val;
@@ -324,58 +327,49 @@
break;
}
- from_matched = to_matched = subj_matched = body_matched = FALSE;
-
msginfo = gtk_ctree_node_get_row_data(ctree, node);
- if (*fromwcs && msginfo->from) {
+ if (*fromwcs) {
+ if (msginfo->from == NULL)
+ continue;
wcs_hs = strdup_mbstowcs(msginfo->from);
- if (wcs_hs && WCSFindFunc(wcs_hs, fromwcs) != NULL)
- from_matched = TRUE;
- g_free(wcs_hs);
+ if (!(wcs_hs && WCSFindFunc(wcs_hs, fromwcs) != NULL))
+ continue;
}
- if (*towcs && msginfo->to) {
+ if (*towcs) {
+ if (msginfo->to == NULL)
+ continue;
wcs_hs = strdup_mbstowcs(msginfo->to);
- if (wcs_hs && WCSFindFunc(wcs_hs, towcs) != NULL)
- to_matched = TRUE;
- g_free(wcs_hs);
+ if (!(wcs_hs && WCSFindFunc(wcs_hs, towcs) != NULL))
+ continue;
}
- if (*subjwcs && msginfo->subject) {
+ if (*subjwcs) {
+ if (msginfo->subject == NULL)
+ continue;
wcs_hs = strdup_mbstowcs(msginfo->subject);
- if (wcs_hs && WCSFindFunc(wcs_hs, subjwcs) != NULL)
- subj_matched = TRUE;
- g_free(wcs_hs);
+ if (!(wcs_hs && WCSFindFunc(wcs_hs, subjwcs) != NULL))
+ continue;
}
if (*body_str) {
- if (procmime_find_string(msginfo, body_str, case_sens))
- body_matched = TRUE;
+ if (!procmime_find_string(msginfo, body_str, case_sens))
+ continue;
}
- if (from_matched || to_matched || subj_matched || body_matched) {
- if (search_all)
- gtk_ctree_select(ctree, node);
- else {
- if (messageview_is_visible
- (summaryview->messageview)) {
- summary_unlock(summaryview);
- summary_select_node
- (summaryview, node, TRUE, TRUE);
- summary_lock(summaryview);
- if (body_matched) {
- messageview_search_string
- (summaryview->messageview,
- body_str, case_sens);
- }
- } else {
- summary_select_node
- (summaryview, node, FALSE, TRUE);
- }
- break;
- }
+ if (search_all)
+ gtk_ctree_select(ctree, node);
+ else {
+ if (messageview_is_visible(summaryview->messageview)) {
+ summary_unlock(summaryview);
+ summary_select_node(summaryview, node, TRUE, TRUE);
+ summary_lock(summaryview);
+ if (*body_str)
+ messageview_search_string(
+ summaryview->messageview,
+ body_str, case_sens);
+ } else
+ summary_select_node(summaryview, node, FALSE, TRUE);
+ break;
}
-
- node = backward ? GTK_CTREE_NODE_PREV(node)
- : GTK_CTREE_NODE_NEXT(node);
}
if (*body_str)

View file

@ -137,6 +137,7 @@ etc/sylprint.rc.example
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-9.html
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.html
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.sgml
share/locale/bg/LC_MESSAGES/sylpheed-claws.mo
share/locale/cs/LC_MESSAGES/sylpheed-claws.mo
share/locale/de/LC_MESSAGES/sylpheed-claws.mo
share/locale/el/LC_MESSAGES/sylpheed-claws.mo
@ -161,9 +162,31 @@ share/sylpheed-claws/filter_conv.pl
share/sylpheed-claws/gif2xface.pl
share/sylpheed-claws/gpg-sign-syl
share/sylpheed-claws/kmail2sylpheed.pl
share/sylpheed-claws/ldif-to-xml.py
share/sylpheed-claws/newscache_clean.pl
share/sylpheed-claws/outlook2sylpheed.pl
share/sylpheed-claws/tb2sylpheed
%%THEMES%%share/sylpheed-claws/themes/Crystal/close.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/dir-close.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/dir-open.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/error.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/preferences.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/properties.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/search.xpm
%%THEMES%%share/sylpheed-claws/themes/Crystal/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/Kovico-sylpheed/address.xpm
%%THEMES%%share/sylpheed-claws/themes/Kovico-sylpheed/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/Kovico-sylpheed/close.xpm
@ -420,17 +443,73 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/black/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/black/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/black/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/close.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/mongrel/work_online.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/README
%%THEMES%%share/sylpheed-claws/themes/mozilla/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/close.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/mozilla/work_online.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/address.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/book.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/clip.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/clipkey.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/close.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/complete.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/deleted.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/error.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/folder.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/inbox_close.xpm
@ -438,6 +517,8 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/stw/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/interface.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/key.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/locked.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/mail.xpm
@ -459,7 +540,6 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/stw/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/queue_open.xpm
@ -472,63 +552,160 @@ share/sylpheed-claws/outlook2sylpheed.pl
%%THEMES%%share/sylpheed-claws/themes/stw/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/stw/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/address.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/new.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/queue_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/replied.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/trash_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02b/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/README
%%THEMES%%share/sylpheed-claws/themes/sylzilla/address.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/book.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/category.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/checkbox_off.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/checkbox_on.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/complete.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/delete.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/deleted.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/error.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/group.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/interface.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/jpilot.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/key.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/ldap.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/locked.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/mark.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/new.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/notice_error.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/notice_note.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/notice_warn.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/preferences.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/properties.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/queue_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/quicksearch.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/replied.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/search.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_close.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_open.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/trash_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/sylzilla/work_online.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/address.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/address_book.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/book.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/category.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/clip.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/clipkey.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/complete.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/continue.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/deleted.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/dir_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/down_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/edit_extern.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/error.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/exec.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/forwarded.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/ignorethread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/inbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/insert_file.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/interface.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/jpilot.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/key.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/linewrap.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/locked.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_attach.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_forward.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_receive.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_receive_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_reply.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_reply_to_all.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_reply_to_author.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_send.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_send_queue.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mail_sign.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/mark.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/new.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/news_compose.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/outbox_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/paste.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/queue_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/replied.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_close.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_close_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_open.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/trash_open_hrm.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/unread.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/up_arrow.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/vcard.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/work_offline.xpm
%%THEMES%%share/sylpheed-claws/themes/tml02c/work_online.xpm
share/sylpheed-claws/update-po
share/sylpheed-claws/uudec
%%THEMES%%@dirrm share/sylpheed-claws/themes/tml02b
%%THEMES%%@dirrm share/sylpheed-claws/themes/tml02c
%%THEMES%%@dirrm share/sylpheed-claws/themes/sylzilla
%%THEMES%%@dirrm share/sylpheed-claws/themes/stw
%%THEMES%%@dirrm share/sylpheed-claws/themes/mozilla
%%THEMES%%@dirrm share/sylpheed-claws/themes/mongrel
%%THEMES%%@dirrm share/sylpheed-claws/themes/black
%%THEMES%%@dirrm share/sylpheed-claws/themes/XeNtish
%%THEMES%%@dirrm share/sylpheed-claws/themes/Plain_and_Bluish
%%THEMES%%@dirrm share/sylpheed-claws/themes/New_Session
%%THEMES%%@dirrm share/sylpheed-claws/themes/Kovico-sylpheed
%%THEMES%%@dirrm share/sylpheed-claws/themes/Crystal
%%THEMES%%@dirrm share/sylpheed-claws/themes
@dirrm share/sylpheed-claws
@unexec rmdir %D/share/pixmaps 2>/dev/null || true