[Gpg4win-commits] r935 - in trunk: . include packages src
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Sep 30 18:52:40 CEST 2008
Author: colinleroy
Date: 2008-09-30 18:52:40 +0200 (Tue, 30 Sep 2008)
New Revision: 935
Added:
trunk/src/inst-tnef_parse.nsi
trunk/src/uninst-tnef_parse.nsi
Modified:
trunk/ChangeLog
trunk/include/config.nsi.in
trunk/packages/packages.current
trunk/src/Makefile.am
trunk/src/inst-sections.nsi
Log:
2008-09-30 Colin Leroy <colin at colino.net>
* configure.ac,
src/Makefile.am,
include/config.nsi.in,
src/inst-sections.nsi,
packages/packages.current: Add TNEF Parser Claws plugin.
* src/inst-tnef_parse.nsi, src/uninst-tnef_parse.nsi,
New files for TNEF Parser.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/ChangeLog 2008-09-30 16:52:40 UTC (rev 935)
@@ -1,5 +1,15 @@
2008-09-30 Colin Leroy <colin at colino.net>
+ * configure.ac,
+ src/Makefile.am,
+ include/config.nsi.in,
+ src/inst-sections.nsi,
+ packages/packages.current: Add TNEF Parser Claws plugin.
+ * src/inst-tnef_parse.nsi, src/uninst-tnef_parse.nsi,
+ New files for TNEF Parser.
+
+2008-09-30 Colin Leroy <colin at colino.net>
+
* packages/packages.current: Update Claws, vcalendar and rssyl.
2008-09-30 Werner Koch <wk at g10code.com>
Modified: trunk/include/config.nsi.in
===================================================================
--- trunk/include/config.nsi.in 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/include/config.nsi.in 2008-09-30 16:52:40 UTC (rev 935)
@@ -156,6 +156,10 @@
!define gpg4win_pkg_rssyl @gpg4win_pkg_rssyl@
!define gpg4win_pkg_rssyl_version @gpg4win_pkg_rssyl_version@
+ at HAVE_PKG_TNEF_PARSE@
+!define gpg4win_pkg_tnef_parse @gpg4win_pkg_tnef_parse@
+!define gpg4win_pkg_tnef_parse_version @gpg4win_pkg_tnef_parse_version@
+
#@HAVE_PKG_EUDORAGPG@
#!define gpg4win_pkg_eudoragpg @gpg4win_pkg_eudoragpg@
#!define gpg4win_pkg_eudoragpg_version @gpg4win_pkg_eudoragpg_version@
Modified: trunk/packages/packages.current
===================================================================
--- trunk/packages/packages.current 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/packages/packages.current 2008-09-30 16:52:40 UTC (rev 935)
@@ -139,6 +139,10 @@
file rssyl-0.20cvs18.tar.gz
chk 4f5090d3e5d2eb17d7066a02784bd36849d0bfed
+server http://www.claws-mail.org/win32
+file tnef_parse-0.3cvs3.tar.gz
+chk bc3965f96e7dc5f396099a7e3ebdce8e2026dfca
+
#
# Pthreads for Windows.
#
Modified: trunk/src/Makefile.am
===================================================================
--- trunk/src/Makefile.am 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/src/Makefile.am 2008-09-30 16:52:40 UTC (rev 935)
@@ -37,6 +37,7 @@
inst-gtkhtml2_viewer.nsi uninst-gtkhtml2_viewer.nsi \
inst-vcalendar.nsi uninst-vcalendar.nsi \
inst-rssyl.nsi uninst-rssyl.nsi \
+ inst-tnef_parse.nsi uninst-tnef_parse.nsi \
inst-crypt.nsi uninst-crypt.nsi \
inst-dirmngr.nsi uninst-dirmngr.nsi \
inst-eudoragpg.nsi uninst-eudoragpg.nsi \
@@ -89,7 +90,7 @@
gpa winpt libgsasl libtasn1 opencdk gnutls curl libxml2 \
libetpan claws-mail notification_plugin gtkhtml2_viewer \
vcalendar rssyl gnupg2 pinentry libassuan libksba libgcrypt \
- adns dirmngr w32pth scute
+ adns dirmngr w32pth scute tnef_parse
# Extra options to configure for individual packages.
# We can use $(idir) here for the installation prefix.
@@ -237,6 +238,9 @@
gpg4win_pkg_rssyl_configure = \
--with-lib-prefix=$(idir) --with-libiconv-prefix=$(idir) LIBS=\"-L$(idir)/bin\"
+gpg4win_pkg_tnef_parse_configure = \
+ --with-lib-prefix=$(idir) --with-libiconv-prefix=$(idir) LIBS=\"-L$(idir)/bin\"
+
gpg4win_pkg_scute_configure = --silent \
--with-gpgme-prefix=$(idir) --with-libassuan-prefix=$(idir)
Modified: trunk/src/inst-sections.nsi
===================================================================
--- trunk/src/inst-sections.nsi 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/src/inst-sections.nsi 2008-09-30 16:52:40 UTC (rev 935)
@@ -172,6 +172,9 @@
!ifdef HAVE_PKG_RSSYL
!include "inst-rssyl.nsi"
!endif
+!ifdef HAVE_PKG_TNEF_PARSE
+!include "inst-tnef_parse.nsi"
+!endif
#!ifdef HAVE_PKG_EUDORAGPG
#!include "inst-eudoragpg.nsi"
#!endif
@@ -228,6 +231,9 @@
!ifdef HAVE_PKG_RSSYL
!include "uninst-rssyl.nsi"
!endif
+!ifdef HAVE_PKG_TNEF_PARSE
+!include "uninst-tnef_parse.nsi"
+!endif
!ifdef HAVE_PKG_SCUTE
!include "uninst-scute.nsi"
!endif
Added: trunk/src/inst-tnef_parse.nsi
===================================================================
--- trunk/src/inst-tnef_parse.nsi 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/src/inst-tnef_parse.nsi 2008-09-30 16:52:40 UTC (rev 935)
@@ -0,0 +1,39 @@
+# inst-tnef_parse.nsi - Installer snippet for tnef_parse. -*- coding: latin-1; -*-
+# Copyright (C) 2005, 2007, 2008 g10 Code GmbH
+#
+# This file is part of GPG4Win.
+#
+# GPG4Win is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GPG4Win is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+
+!ifdef prefix
+!undef prefix
+!endif
+!define prefix ${ipdir}/tnef_parse-${gpg4win_pkg_tnef_parse_version}
+
+!ifdef DEBUG
+Section "tnef_parse" SEC_tnef_parse
+!else
+Section "-tnef_parse" SEC_tnef_parse
+!endif
+ SetOutPath "$INSTDIR"
+!ifdef SOURCES
+ File ${gpg4win_pkg_tnef_parse}
+!else
+
+ SetOutPath "$INSTDIR\lib\claws-mail\plugins"
+ File ${prefix}/lib/claws-mail/plugins/tnef_parse.dll
+
+!endif
+SectionEnd
Added: trunk/src/uninst-tnef_parse.nsi
===================================================================
--- trunk/src/uninst-tnef_parse.nsi 2008-09-30 15:42:46 UTC (rev 934)
+++ trunk/src/uninst-tnef_parse.nsi 2008-09-30 16:52:40 UTC (rev 935)
@@ -0,0 +1,39 @@
+# uninst-tnef_parse.nsi - Installer snippet for tnef_parse.-*- coding: latin-1; -*-
+# Copyright (C) 2005, 2007 g10 Code GmbH
+#
+# This file is part of GPG4Win.
+#
+# GPG4Win is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GPG4Win is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+
+!ifdef prefix
+!undef prefix
+!endif
+!define prefix ${ipdir}/tnef_parse-${gpg4win_pkg_tnef_parse_version}
+
+
+; Uninstaller section.
+Section "-un.tnef_parse"
+!ifdef SOURCES
+ Push "${gpg4win_pkg_tnef_parse}"
+ Call un.SourceDelete
+!else
+ Delete "$INSTDIR\lib\claws-mail\plugins\tnef_parse.dll"
+ RMDir "$INSTDIR\lib\claws-mail\plugins"
+ RMDir "$INSTDIR\lib\claws-mail"
+ RMDir "$INSTDIR\lib"
+ RMDir "$INSTDIR"
+
+!endif
+SectionEnd
More information about the Gpg4win-commits
mailing list