summaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-10-22 05:22:52 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-10-22 05:22:52 +0800
commit296c17bced36f00765c705a70bf6e142cb767118 (patch)
treef3ea278390fad0f37ceec16cda8b852d651d5ecf /mail
parent8bbb346d90a56759ffb19ee25ef969fd9175d624 (diff)
downloadmarcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar
marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.gz
marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.bz2
marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.lz
marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.xz
marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.zst
marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.zip
Fix build when WITH_DEBUG is enabled with new gtk20. (Depricated nonsense)
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14823 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail')
-rw-r--r--mail/claws-mail/Makefile187
-rw-r--r--mail/claws-mail/distinfo3
-rw-r--r--mail/claws-mail/files/patch-Makefile.in28
-rw-r--r--mail/claws-mail/pkg-descr13
-rw-r--r--mail/claws-mail/pkg-plist345
5 files changed, 576 insertions, 0 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile
new file mode 100644
index 000000000..ef5012905
--- /dev/null
+++ b/mail/claws-mail/Makefile
@@ -0,0 +1,187 @@
+# New ports collection makefile for: claws-mail
+# Date created: 3 January 2002
+# Whom: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
+#
+# $FreeBSD: ports/mail/claws-mail/Makefile,v 1.161 2010/10/20 07:38:08 netchild Exp $
+#
+
+PORTNAME= claws-mail
+PORTVERSION= 3.7.6
+PORTREVISION= 3
+CATEGORIES= mail news ipv6
+MASTER_SITES= SF/sylpheed-claws/Claws%20Mail/${PORTVERSION}
+
+MAINTAINER= netchild@FreeBSD.org
+COMMENT= A lightweight and very featureful GTK+ based e-mail and news client
+
+LIB_DEPENDS= etpan:${PORTSDIR}/mail/libetpan \
+ cairo:${PORTSDIR}/graphics/cairo \
+ expat:${PORTSDIR}/textproc/expat2 \
+ fontconfig:${PORTSDIR}/x11-fonts/fontconfig \
+ freetype:${PORTSDIR}/print/freetype2 \
+ png:${PORTSDIR}/graphics/png \
+ gnutls.40:${PORTSDIR}/security/gnutls \
+ execinfo:${PORTSDIR}/devel/libexecinfo
+RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support
+
+CONFLICTS= sylpheed-claws
+
+USE_BZIP2= yes
+USE_GETTEXT= yes
+USE_GMAKE= yes
+USE_ICONV= yes
+USE_XORG= ice sm x11 xau xcursor xdmcp xext xfixes xi xinerama xrandr \
+ xrender
+USE_GNOME= gnomehack pkgconfig gtk20 glib20 atk libartlgpl2 pango libxml2
+GNU_CONFIGURE= yes
+WANT_GNOME= yes
+INSTALLS_ICONS= yes
+MAKE_JOBS_SAFE= yes
+
+MAN1= claws-mail.1
+
+CONFIGURE_ARGS= \
+ --with-libiconv-prefix=${LOCALBASE} \
+ --with-manualdir=${DOCSDIR}/manual \
+
+CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \
+ CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib" \
+ LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+
+OPTIONS= ALL "Enable all options except GNUTLS." off \
+ ENCHANT "Enable spell checking support." on \
+ BOGOFILTER "Enable bogofilter support." off \
+ COMPFACE "Enable X-Face support." on \
+ DEBUG "Enable debug support." off \
+ DILLO "Enable Dillo HTML viewer." off \
+ GPGME "Enable PGP/GnuPG/SMIME support using GPGME." off \
+ IPV6 "Enable ipv6 support." on \
+ JPILOT "Enable JPilot support." off \
+ LDAP "Enable LDAP support." off \
+ SA_PLUG "Enable SpamAssassin support." off \
+ STARTUP "Enable startup notification support." on \
+ THEMES "Install additional themes." on
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_BOGOFILTER) || defined(WITH_ALL)
+RUN_DEPENDS+= bogofilter:${PORTSDIR}/mail/bogofilter
+CONFIGURE_ARGS+= --enable-bogofilter-plugin
+PLIST_SUB+= BOGO_PLUG=""
+.else
+CONFIGURE_ARGS+= --disable-bogofilter-plugin
+PLIST_SUB+= BOGO_PLUG="@comment "
+.endif
+
+.if defined(WITH_COMPFACE) || defined(WITH_ALL)
+LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces
+CONFIGURE_ARGS+= --enable-compface
+.else
+CONFIGURE_ARGS+= --disable-compface
+.endif
+.if defined(WITH_ENCHANT) || defined(WITH_ALL)
+LIB_DEPENDS+= enchant:${PORTSDIR}/textproc/enchant
+CONFIGURE_ARGS+= --enable-enchant
+.else
+CONFIGURE_ARGS+= --disable-enchant
+.endif
+.if defined(WITH_JPILOT) || defined(WITH_ALL)
+LIB_DEPENDS+= pisock:${PORTSDIR}/palm/pilot-link
+RUN_DEPENDS+= jpilot:${PORTSDIR}/palm/jpilot
+CONFIGURE_ARGS+= --enable-jpilot
+.else
+CONFIGURE_ARGS+= --disable-jpilot
+.endif
+.if defined(WITH_LDAP) || defined(WITH_ALL)
+USE_OPENLDAP= yes
+CONFIGURE_ARGS+= --enable-ldap
+.else
+CONFIGURE_ARGS+= --disable-ldap
+.endif
+.if defined(WITH_SA_PLUG) || defined(WITH_ALL)
+RUN_DEPENDS+= spamd:${PORTSDIR}/mail/p5-Mail-SpamAssassin
+CONFIGURE_ARGS+= --enable-spamassassin-plugin
+PLIST_SUB+= SA_PLUG=""
+.else
+CONFIGURE_ARGS+= --disable-spamassassin-plugin
+PLIST_SUB+= SA_PLUG="@comment "
+.endif
+.if defined(WITH_GPGME) || defined(WITH_ALL)
+PLIST_SUB+= GPGME=""
+CONFIGURE_ARGS+= --enable-pgpmime-plugin --enable-pgpcore-plugin \
+ --enable-pgpinline-plugin --enable-smime-plugin
+LIB_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme \
+ gpg-error:${PORTSDIR}/security/libgpg-error
+RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg
+.else
+PLIST_SUB+= GPGME="@comment "
+CONFIGURE_ARGS+= --disable-pgpmime-plugin --disable-pgpcore-plugin \
+ --disable-pgpinline-plugin --disable-smime-plugin
+.endif
+.if defined(WITH_DEBUG) || defined(WITH_ALL)
+CONFIGURE_ARGS+= --enable-maintainer-mode --enable-crash-dialog
+STRIP=
+.endif
+.if defined(WITH_DILLO) || defined(WITH_ALL)
+PLIST_SUB+= DILLO=""
+RUN_DEPENDS+= dillo:${PORTSDIR}/www/dillo
+.else
+PLIST_SUB+= DILLO="@comment "
+CONFIGURE_ARGS+= --disable-dillo-viewer-plugin
+.endif
+
+.if !defined(WITHOUT_IPV6) || defined(WITH_ALL)
+CONFIGURE_ARGS+= --enable-ipv6
+.else
+CONFIGURE_ARGS+= --disable-ipv6
+.endif
+
+.if !defined(WITHOUT_STARTUP) || defined(WITH_ALL)
+LIB_DEPENDS+= startup-notification-1.0:${PORTSDIR}/x11/startup-notification
+CONFIGURE_ARGS+= --enable-startup-notification
+.else
+CONFIGURE_ARGS+= --disable-startup-notification
+.endif
+
+.if !defined(WITHOUT_THEMES)
+RUN_DEPENDS+= ${LOCALBASE}/share/claws-mail/themes/ZX-0_1.1/down_arrow.xpm:${PORTSDIR}/x11-themes/claws-mail-themes
+.endif
+
+post-patch:
+ @${REINPLACE_CMD} -e \
+ 's|-lresolv||g; s|-lpisock\"|-liconv &|g' \
+ -e 's|-DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED||g' \
+ ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e 's|/etc|${LOCALBASE}&|g ; s|/usr/share|${LOCALBASE}/share|g' \
+ ${WRKSRC}/src/procmime.c
+ @${REINPLACE_CMD} -e "s|po intl src|po src| ; s:@CLAWS_GNOME2:#@CLAWS_GNOME2:g" ${WRKSRC}/Makefile.in
+ @${REINPLACE_CMD} -e "s:-Wno-unused-function::" ${WRKSRC}/src/Makefile.in
+ @for f in `${FIND} ${WRKSRC}/tools -type f -print`; do \
+ ${REINPLACE_CMD} -e "s|/usr/bin/perl|${PERL}|" $$f; done
+
+post-install:
+.if !defined(NOPORTDOCS)
+.for i in NEWS RELEASE_NOTES README TODO
+ @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+.endfor
+ @${INSTALL_DATA} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools
+.endif
+ @${MKDIR} ${DATADIR}
+ cd ${WRKSRC}/tools && \
+ ${INSTALL_SCRIPT} OOo2claws-mail.pl acroread2claws-mail.pl \
+ calypso_convert.pl convert_mbox.pl eud2gc.py filter_conv.pl \
+ filter_conv_new.pl fix_date.sh freshmeat_search.pl \
+ gif2xface.pl google_msgid.pl google_search.pl \
+ kmail-mailbox2claws-mail.pl kmail2claws-mail.pl \
+ kmail2claws-mail_v2.pl multiwebsearch.conf multiwebsearch.pl \
+ nautilus2claws-mail.sh outlook2claws-mail.pl tb2claws-mail \
+ tbird2claws.py textviewer.pl textviewer.sh \
+ thunderbird-filters-convertor.pl uudec uuooffice vcard2xml.py \
+ ${DATADIR}
+ @${MKDIR} ${PREFIX}/share/applications
+ @${INSTALL_DATA} ${WRKSRC}/claws-mail.desktop ${PREFIX}/share/applications/
+ @${MKDIR} ${PREFIX}/share/pixmaps
+ @${INSTALL_DATA} ${WRKSRC}/claws-mail*.png ${PREFIX}/share/pixmaps/
+
+.include <bsd.port.post.mk>
diff --git a/mail/claws-mail/distinfo b/mail/claws-mail/distinfo
new file mode 100644
index 000000000..473094fd7
--- /dev/null
+++ b/mail/claws-mail/distinfo
@@ -0,0 +1,3 @@
+MD5 (claws-mail-3.7.6.tar.bz2) = 09c150cf13c04201c92089fc285cecd9
+SHA256 (claws-mail-3.7.6.tar.bz2) = 24eeb99595b3ce4a0ada3c7d28a645258ea3ece5274886c05de323032a23572a
+SIZE (claws-mail-3.7.6.tar.bz2) = 6418141
diff --git a/mail/claws-mail/files/patch-Makefile.in b/mail/claws-mail/files/patch-Makefile.in
new file mode 100644
index 000000000..06c9c39ab
--- /dev/null
+++ b/mail/claws-mail/files/patch-Makefile.in
@@ -0,0 +1,28 @@
+--- Makefile.in.orig 2008-06-28 00:29:01.000000000 +0200
++++ Makefile.in 2008-06-28 00:29:43.000000000 +0200
+@@ -39,7 +39,7 @@
+ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
+ $(srcdir)/claws-mail.pc.in $(srcdir)/config.h.in \
+ $(top_srcdir)/configure ABOUT-NLS AUTHORS COPYING ChangeLog \
+- INSTALL NEWS TODO
++ INSTALL NEWS TODO RELEASE_NOTES
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/aclocal-include.m4 \
+ $(top_srcdir)/m4/aspell.m4 $(top_srcdir)/m4/check-type.m4 \
+@@ -304,7 +304,6 @@
+ ChangeLog.gtk1 \
+ ChangeLog.pre2.0.0 \
+ ChangeLog.2.0.0-3.0.0 \
+- RELEASE_NOTES \
+ claws-mail-128x128.png \
+ claws-mail-64x64.png \
+ claws-mail.pc.in \
+@@ -325,8 +324,6 @@
+ clawsinclude_HEADERS = \
+ config.h
+
+-relnotesdir = $(docdir)
+-relnotes_DATA = RELEASE_NOTES
+ all: config.h
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
+
diff --git a/mail/claws-mail/pkg-descr b/mail/claws-mail/pkg-descr
new file mode 100644
index 000000000..6809beb40
--- /dev/null
+++ b/mail/claws-mail/pkg-descr
@@ -0,0 +1,13 @@
+Claws Mail is an e-mail client (and news reader) based on GTK+
+
+Currently, many features are supported including POP3, IMAP, NNTP,
+multiple accounts, threading, filtering, MIME attachments, APOP, SMTP
+AUTH, SSL, IPv6, GnuPG, internalization, and more.
+
+In addition to the above, Claws Mail has a lot of extra features,
+e.g. a plugin mechanism, a new filtering/processing mechanism,
+extra folder properties and much more...
+
+WWW: http://www.claws-mail.org/
+
+- Simon 'corecode' Schubert
diff --git a/mail/claws-mail/pkg-plist b/mail/claws-mail/pkg-plist
new file mode 100644
index 000000000..da1d67caa
--- /dev/null
+++ b/mail/claws-mail/pkg-plist
@@ -0,0 +1,345 @@
+bin/claws-mail
+bin/sylpheed-claws
+include/claws-mail/account.h
+include/claws-mail/action.h
+include/claws-mail/adbookbase.h
+include/claws-mail/addr_compl.h
+include/claws-mail/addrbook.h
+include/claws-mail/addrcache.h
+include/claws-mail/addrclip.h
+include/claws-mail/addrcustomattr.h
+include/claws-mail/addrdefs.h
+include/claws-mail/addrduplicates.h
+include/claws-mail/addressadd.h
+include/claws-mail/addressbook.h
+include/claws-mail/addressbook_foldersel.h
+include/claws-mail/addressitem.h
+include/claws-mail/addrgather.h
+include/claws-mail/addrharvest.h
+include/claws-mail/addrindex.h
+include/claws-mail/addritem.h
+include/claws-mail/addrquery.h
+include/claws-mail/addrselect.h
+include/claws-mail/alertpanel.h
+include/claws-mail/autofaces.h
+include/claws-mail/browseldap.h
+include/claws-mail/codeconv.h
+include/claws-mail/common/base64.h
+include/claws-mail/common/claws.h
+include/claws-mail/common/defs.h
+include/claws-mail/common/hooks.h
+include/claws-mail/common/log.h
+include/claws-mail/common/md5.h
+include/claws-mail/common/mgutils.h
+include/claws-mail/common/passcrypt.h
+include/claws-mail/common/plugin.h
+include/claws-mail/common/prefs.h
+include/claws-mail/common/progressindicator.h
+include/claws-mail/common/quoted-printable.h
+include/claws-mail/common/session.h
+include/claws-mail/common/smtp.h
+include/claws-mail/common/socket.h
+include/claws-mail/common/ssl.h
+include/claws-mail/common/ssl_certificate.h
+include/claws-mail/common/string_match.h
+include/claws-mail/common/stringtable.h
+include/claws-mail/common/tags.h
+include/claws-mail/common/template.h
+include/claws-mail/common/timing.h
+include/claws-mail/common/utils.h
+include/claws-mail/common/uuencode.h
+include/claws-mail/common/valgrind.h
+include/claws-mail/common/version.h
+include/claws-mail/common/xml.h
+include/claws-mail/common/xmlprops.h
+include/claws-mail/compose.h
+include/claws-mail/config.h
+include/claws-mail/crash.h
+include/claws-mail/customheader.h
+include/claws-mail/displayheader.h
+include/claws-mail/editaddress.h
+include/claws-mail/editaddress_other_attributes_ldap.h
+include/claws-mail/editbook.h
+include/claws-mail/editgroup.h
+include/claws-mail/editjpilot.h
+include/claws-mail/editldap.h
+include/claws-mail/editldap_basedn.h
+include/claws-mail/edittags.h
+include/claws-mail/editvcard.h
+include/claws-mail/enriched.h
+include/claws-mail/etpan/etpan-errors.h
+include/claws-mail/etpan/etpan-thread-manager-types.h
+include/claws-mail/etpan/etpan-thread-manager.h
+include/claws-mail/etpan/imap-thread.h
+include/claws-mail/etpan/nntp-thread.h
+include/claws-mail/exphtmldlg.h
+include/claws-mail/expldifdlg.h
+include/claws-mail/export.h
+include/claws-mail/exporthtml.h
+include/claws-mail/exportldif.h
+include/claws-mail/filtering.h
+include/claws-mail/folder.h
+include/claws-mail/folder_item_prefs.h
+include/claws-mail/foldersel.h
+include/claws-mail/folderutils.h
+include/claws-mail/folderview.h
+include/claws-mail/grouplistdialog.h
+include/claws-mail/gtk/about.h
+include/claws-mail/gtk/authors.h
+include/claws-mail/gtk/claws-marshal.h
+include/claws-mail/gtk/colorlabel.h
+include/claws-mail/gtk/colorsel.h
+include/claws-mail/gtk/combobox.h
+include/claws-mail/gtk/description_window.h
+include/claws-mail/gtk/filesel.h
+include/claws-mail/gtk/foldersort.h
+include/claws-mail/gtk/gtkaspell.h
+include/claws-mail/gtk/gtkcmclist.h
+include/claws-mail/gtk/gtkcmctree.h
+include/claws-mail/gtk/gtkcmoptionmenu.h
+include/claws-mail/gtk/gtksctree.h
+include/claws-mail/gtk/gtkshruler.h
+include/claws-mail/gtk/gtkutils.h
+include/claws-mail/gtk/gtkvscrollbutton.h
+include/claws-mail/gtk/headers.h
+include/claws-mail/gtk/icon_legend.h
+include/claws-mail/gtk/inputdialog.h
+include/claws-mail/gtk/logwindow.h
+include/claws-mail/gtk/manage_window.h
+include/claws-mail/gtk/menu.h
+include/claws-mail/gtk/pluginwindow.h
+include/claws-mail/gtk/prefswindow.h
+include/claws-mail/gtk/progressdialog.h
+include/claws-mail/gtk/quicksearch.h
+include/claws-mail/gtk/spell_entry.h
+include/claws-mail/gtk/sslcertwindow.h
+include/claws-mail/headerview.h
+include/claws-mail/html.h
+include/claws-mail/image_viewer.h
+include/claws-mail/imap.h
+include/claws-mail/imap_gtk.h
+include/claws-mail/import.h
+include/claws-mail/importldif.h
+include/claws-mail/importmutt.h
+include/claws-mail/importpine.h
+include/claws-mail/inc.h
+include/claws-mail/jpilot.h
+include/claws-mail/ldapctrl.h
+include/claws-mail/ldaplocate.h
+include/claws-mail/ldapquery.h
+include/claws-mail/ldapserver.h
+include/claws-mail/ldapupdate.h
+include/claws-mail/ldaputil.h
+include/claws-mail/ldif.h
+include/claws-mail/localfolder.h
+include/claws-mail/main.h
+include/claws-mail/mainwindow.h
+include/claws-mail/manual.h
+include/claws-mail/matcher.h
+include/claws-mail/matcher_parser.h
+include/claws-mail/matcher_parser_lex.h
+include/claws-mail/matcher_parser_parse.h
+include/claws-mail/mbox.h
+include/claws-mail/message_search.h
+include/claws-mail/messageview.h
+include/claws-mail/mh.h
+include/claws-mail/mh_gtk.h
+include/claws-mail/mimeview.h
+include/claws-mail/msgcache.h
+include/claws-mail/mutt.h
+include/claws-mail/news.h
+include/claws-mail/news_gtk.h
+include/claws-mail/noticeview.h
+include/claws-mail/partial_download.h
+include/claws-mail/pine.h
+%%GPGME%%include/claws-mail/plugins/pgpcore/passphrase.h
+%%GPGME%%include/claws-mail/plugins/pgpcore/pgp_viewer.h
+%%GPGME%%include/claws-mail/plugins/pgpcore/prefs_gpg.h
+%%GPGME%%include/claws-mail/plugins/pgpcore/select-keys.h
+%%GPGME%%include/claws-mail/plugins/pgpcore/sgpgme.h
+%%GPGME%%include/claws-mail/plugins/pgpinline/pgpinline.h
+%%GPGME%%include/claws-mail/plugins/pgpmime/pgpmime.h
+%%GPGME%%include/claws-mail/plugins/smime/smime.h
+include/claws-mail/pop.h
+include/claws-mail/prefs_account.h
+include/claws-mail/prefs_actions.h
+include/claws-mail/prefs_common.h
+include/claws-mail/prefs_compose_writing.h
+include/claws-mail/prefs_customheader.h
+include/claws-mail/prefs_display_header.h
+include/claws-mail/prefs_ext_prog.h
+include/claws-mail/prefs_filtering.h
+include/claws-mail/prefs_filtering_action.h
+include/claws-mail/prefs_folder_column.h
+include/claws-mail/prefs_folder_item.h
+include/claws-mail/prefs_fonts.h
+include/claws-mail/prefs_gtk.h
+include/claws-mail/prefs_image_viewer.h
+include/claws-mail/prefs_logging.h
+include/claws-mail/prefs_matcher.h
+include/claws-mail/prefs_message.h
+include/claws-mail/prefs_msg_colors.h
+include/claws-mail/prefs_other.h
+include/claws-mail/prefs_quote.h
+include/claws-mail/prefs_receive.h
+include/claws-mail/prefs_send.h
+include/claws-mail/prefs_spelling.h
+include/claws-mail/prefs_summaries.h
+include/claws-mail/prefs_summary_column.h
+include/claws-mail/prefs_summary_open.h
+include/claws-mail/prefs_template.h
+include/claws-mail/prefs_themes.h
+include/claws-mail/prefs_toolbar.h
+include/claws-mail/prefs_wrapping.h
+include/claws-mail/printing.h
+include/claws-mail/privacy.h
+include/claws-mail/procheader.h
+include/claws-mail/procmime.h
+include/claws-mail/procmsg.h
+include/claws-mail/quote_fmt.h
+include/claws-mail/quote_fmt_lex.h
+include/claws-mail/quote_fmt_parse.h
+include/claws-mail/recv.h
+include/claws-mail/remotefolder.h
+include/claws-mail/send_message.h
+include/claws-mail/setup.h
+include/claws-mail/sourcewindow.h
+include/claws-mail/ssl_manager.h
+include/claws-mail/statusbar.h
+include/claws-mail/stock_pixmap.h
+include/claws-mail/summary_search.h
+include/claws-mail/summaryview.h
+include/claws-mail/textview.h
+include/claws-mail/toolbar.h
+include/claws-mail/undo.h
+include/claws-mail/unmime.h
+include/claws-mail/uri_opener.h
+include/claws-mail/vcard.h
+include/claws-mail/wizard.h
+%%BOGO_PLUG%%lib/claws-mail/plugins/bogofilter.a
+%%BOGO_PLUG%%lib/claws-mail/plugins/bogofilter.la
+%%BOGO_PLUG%%lib/claws-mail/plugins/bogofilter.so
+%%DILLO%%lib/claws-mail/plugins/dillo_viewer.a
+%%DILLO%%lib/claws-mail/plugins/dillo_viewer.la
+%%DILLO%%lib/claws-mail/plugins/dillo_viewer.so
+%%GPGME%%lib/claws-mail/plugins/pgpcore.a
+%%GPGME%%lib/claws-mail/plugins/pgpcore.la
+%%GPGME%%lib/claws-mail/plugins/pgpcore.so
+%%GPGME%%lib/claws-mail/plugins/pgpinline.a
+%%GPGME%%lib/claws-mail/plugins/pgpinline.deps
+%%GPGME%%lib/claws-mail/plugins/pgpinline.la
+%%GPGME%%lib/claws-mail/plugins/pgpinline.so
+%%GPGME%%lib/claws-mail/plugins/pgpmime.a
+%%GPGME%%lib/claws-mail/plugins/pgpmime.deps
+%%GPGME%%lib/claws-mail/plugins/pgpmime.la
+%%GPGME%%lib/claws-mail/plugins/pgpmime.so
+%%GPGME%%lib/claws-mail/plugins/smime.a
+%%GPGME%%lib/claws-mail/plugins/smime.la
+%%GPGME%%lib/claws-mail/plugins/smime.so
+%%GPGME%%lib/claws-mail/plugins/smime.deps
+%%SA_PLUG%%lib/claws-mail/plugins/spamassassin.a
+%%SA_PLUG%%lib/claws-mail/plugins/spamassassin.la
+%%SA_PLUG%%lib/claws-mail/plugins/spamassassin.so
+lib/claws-mail/plugins/trayicon.a
+lib/claws-mail/plugins/trayicon.la
+lib/claws-mail/plugins/trayicon.so
+libdata/pkgconfig/claws-mail.pc
+share/applications/claws-mail.desktop
+%%DATADIR%%/OOo2claws-mail.pl
+%%DATADIR%%/acroread2claws-mail.pl
+%%DATADIR%%/calypso_convert.pl
+%%DATADIR%%/convert_mbox.pl
+%%DATADIR%%/eud2gc.py
+%%DATADIR%%/filter_conv.pl
+%%DATADIR%%/filter_conv_new.pl
+%%DATADIR%%/fix_date.sh
+%%DATADIR%%/freshmeat_search.pl
+%%DATADIR%%/gif2xface.pl
+%%DATADIR%%/google_msgid.pl
+%%DATADIR%%/google_search.pl
+%%DATADIR%%/kmail-mailbox2claws-mail.pl
+%%DATADIR%%/kmail2claws-mail.pl
+%%DATADIR%%/kmail2claws-mail_v2.pl
+%%DATADIR%%/multiwebsearch.conf
+%%DATADIR%%/multiwebsearch.pl
+%%DATADIR%%/nautilus2claws-mail.sh
+%%DATADIR%%/outlook2claws-mail.pl
+%%DATADIR%%/tb2claws-mail
+%%DATADIR%%/tbird2claws.py
+%%DATADIR%%/textviewer.pl
+%%DATADIR%%/textviewer.sh
+%%DATADIR%%/thunderbird-filters-convertor.pl
+%%DATADIR%%/uudec
+%%DATADIR%%/uuooffice
+%%DATADIR%%/vcard2xml.py
+%%PORTDOCS%%%%DOCSDIR%%/NEWS
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/README.tools
+%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
+%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%DOCSDIR%%/manual/de/claws-mail-manual.html
+%%DOCSDIR%%/manual/de/claws-mail-manual.pdf
+%%DOCSDIR%%/manual/de/claws-mail-manual.ps
+%%DOCSDIR%%/manual/de/claws-mail-manual.txt
+%%DOCSDIR%%/manual/en/claws-mail-manual.html
+%%DOCSDIR%%/manual/en/claws-mail-manual.pdf
+%%DOCSDIR%%/manual/en/claws-mail-manual.ps
+%%DOCSDIR%%/manual/en/claws-mail-manual.txt
+%%DOCSDIR%%/manual/es/claws-mail-manual.html
+%%DOCSDIR%%/manual/es/claws-mail-manual.pdf
+%%DOCSDIR%%/manual/es/claws-mail-manual.ps
+%%DOCSDIR%%/manual/es/claws-mail-manual.txt
+%%DOCSDIR%%/manual/fr/claws-mail-manual.html
+%%DOCSDIR%%/manual/fr/claws-mail-manual.pdf
+%%DOCSDIR%%/manual/fr/claws-mail-manual.ps
+%%DOCSDIR%%/manual/fr/claws-mail-manual.txt
+%%DOCSDIR%%/manual/pl/claws-mail-manual.html
+%%DOCSDIR%%/manual/pl/claws-mail-manual.pdf
+%%DOCSDIR%%/manual/pl/claws-mail-manual.ps
+%%DOCSDIR%%/manual/pl/claws-mail-manual.txt
+share/icons/hicolor/128x128/apps/claws-mail-128x128.png
+share/icons/hicolor/48x48/apps/claws-mail.png
+share/icons/hicolor/64x64/apps/claws-mail-64x64.png
+share/locale/bg/LC_MESSAGES/claws-mail.mo
+share/locale/ca/LC_MESSAGES/claws-mail.mo
+share/locale/cs/LC_MESSAGES/claws-mail.mo
+share/locale/de/LC_MESSAGES/claws-mail.mo
+share/locale/en_GB/LC_MESSAGES/claws-mail.mo
+share/locale/es/LC_MESSAGES/claws-mail.mo
+share/locale/fi/LC_MESSAGES/claws-mail.mo
+share/locale/fr/LC_MESSAGES/claws-mail.mo
+share/locale/hu/LC_MESSAGES/claws-mail.mo
+share/locale/id/LC_MESSAGES/claws-mail.mo
+share/locale/it/LC_MESSAGES/claws-mail.mo
+share/locale/ja/LC_MESSAGES/claws-mail.mo
+share/locale/nl/LC_MESSAGES/claws-mail.mo
+share/locale/pl/LC_MESSAGES/claws-mail.mo
+share/locale/pt_BR/LC_MESSAGES/claws-mail.mo
+share/locale/pt_PT/LC_MESSAGES/claws-mail.mo
+share/locale/ru/LC_MESSAGES/claws-mail.mo
+share/locale/sk/LC_MESSAGES/claws-mail.mo
+share/locale/sv/LC_MESSAGES/claws-mail.mo
+share/locale/uk/LC_MESSAGES/claws-mail.mo
+share/locale/zh_CN/LC_MESSAGES/claws-mail.mo
+share/pixmaps/claws-mail-128x128.png
+share/pixmaps/claws-mail-64x64.png
+share/pixmaps/claws-mail.png
+@dirrm %%DATADIR%%
+@dirrm %%DOCSDIR%%/manual/pl
+@dirrm %%DOCSDIR%%/manual/fr
+@dirrm %%DOCSDIR%%/manual/es
+@dirrm %%DOCSDIR%%/manual/en
+@dirrm %%DOCSDIR%%/manual/de
+@dirrm %%DOCSDIR%%/manual
+@dirrmtry %%DOCSDIR%%
+@dirrmtry share/applications
+@dirrmtry lib/claws-mail/plugins
+@dirrmtry lib/claws-mail
+%%GPGME%%@dirrm include/claws-mail/plugins/pgpmime
+%%GPGME%%@dirrm include/claws-mail/plugins/pgpinline
+%%GPGME%%@dirrm include/claws-mail/plugins/pgpcore
+%%GPGME%%@dirrm include/claws-mail/plugins/smime
+@dirrm include/claws-mail/gtk
+@dirrm include/claws-mail/etpan
+@dirrm include/claws-mail/common
+@dirrmtry include/claws-mail