View | Details | Raw Unified | Return to bug 154783
Collapse All | Expand All

(-)libofx/Makefile (-4 / +16 lines)
Lines 6-17 Link Here
6
#
6
#
7
7
8
PORTNAME=	libofx
8
PORTNAME=	libofx
9
PORTVERSION=	0.9.1
9
PORTVERSION=	0.9.2
10
PORTREVISION=	4
11
CATEGORIES=	finance
10
CATEGORIES=	finance
12
MASTER_SITES=	SF
11
MASTER_SITES=	SF
13
12
14
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	bsdkaffee@gmail.com
15
COMMENT=	OpenSource implementation of the OFX (Open Financial eXchange)
14
COMMENT=	OpenSource implementation of the OFX (Open Financial eXchange)
16
15
17
LIB_DEPENDS=	curl.6:${PORTSDIR}/ftp/curl \
16
LIB_DEPENDS=	curl.6:${PORTSDIR}/ftp/curl \
Lines 24-42 Link Here
24
ACLOCAL_ARGS=	-I m4
23
ACLOCAL_ARGS=	-I m4
25
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
24
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
26
CONFIGURE_ARGS=	--disable-doxygen --disable-dot --disable-gengetopt \
25
CONFIGURE_ARGS=	--disable-doxygen --disable-dot --disable-gengetopt \
27
		--with-opensp-includes=${LOCALBASE}/include/OpenSP
26
		--with-opensp-includes=${LOCALBASE}/include/OpenSP \
27
		--with-opensp-libs=${LOCALBASE}/lib
28
MAKE_JOBS_SAFE=	yes
28
USE_LDCONFIG=	yes
29
USE_LDCONFIG=	yes
29
30
30
CPPFLAGS=	-I${LOCALBASE}/include
31
CPPFLAGS=	-I${LOCALBASE}/include
31
LDFLAGS=	-L${LOCALBASE}/lib
32
LDFLAGS=	-L${LOCALBASE}/lib
32
33
34
LICENSE=	GPLv2
35
LICENSE_FILE=	${WRKSRC}/COPYING
36
37
PORTDOCS=	*
38
39
OPTIONS=	APIDOC "Install full API documentation" off
40
41
.include <bsd.port.options.mk>
42
33
post-install:
43
post-install:
34
.if !defined(NOPORTDOCS)
44
.if !defined(NOPORTDOCS)
35
	@${MKDIR} ${DOCSDIR}
45
	@${MKDIR} ${DOCSDIR}
36
.for file in AUTHORS ChangeLog INSTALL NEWS README totest.txt
46
.for file in AUTHORS ChangeLog INSTALL NEWS README totest.txt
37
	${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
47
	${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
38
.endfor
48
.endfor
49
.if defined(WITH_APIDOC)
39
	@(cd ${WRKSRC}/doc; ${COPYTREE_SHARE} html ${DOCSDIR})
50
	@(cd ${WRKSRC}/doc; ${COPYTREE_SHARE} html ${DOCSDIR})
40
.endif
51
.endif
52
.endif
41
53
42
.include <bsd.port.mk>
54
.include <bsd.port.mk>
(-)libofx/distinfo (-3 / +2 lines)
Lines 1-3 Link Here
1
MD5 (libofx-0.9.1.tar.gz) = e634f47ca12e82d860912d48c93b8e50
1
SHA256 (libofx-0.9.2.tar.gz) = f6d690d3c5305a414b332b814e6c86f2200e809702ae7dffed9331a445e52d6d
2
SHA256 (libofx-0.9.1.tar.gz) = 321b34bf3036c5af6a2ab44607decee38b2c7e79bb64c9ec6d98ddb18fb2ca3f
2
SIZE (libofx-0.9.2.tar.gz) = 1162303
3
SIZE (libofx-0.9.1.tar.gz) = 1177818
(-)libofx/files/patch-inc_libofx.h (-70 lines)
Lines 1-70 Link Here
1
--- inc/libofx.h.orig	Sat Feb 12 16:40:57 2005
2
+++ inc/libofx.h	Sat Feb 12 16:39:46 2005
3
@@ -38,8 +38,12 @@
4
 
5
 #ifdef __cplusplus
6
 #define CFCT extern "C"
7
+#define CFCT_start extern "C" {
8
+#define CFCT_end }
9
 #else
10
 #define CFCT
11
+#define CFCT_start
12
+#define CFCT_end
13
 #define true 1
14
 #define false 0
15
 #endif
16
@@ -207,7 +211,9 @@
17
  other events).  An OfxStatusData structure is passed to this event, as well as
18
  a pointer to an arbitrary data structure.
19
 */
20
-CFCT typedef int (*LibofxProcStatusCallback)(const struct OfxStatusData data, void * status_data);
21
+CFCT_start
22
+typedef int (*LibofxProcStatusCallback)(const struct OfxStatusData data, void * status_data);
23
+CFCT_end
24
 
25
 /**
26
  * \brief An abstraction of an account
27
@@ -264,7 +270,9 @@
28
  part of OfxStatementData structure passed to ofx_proc_statement event, 
29
  as well as a pointer to an arbitrary data structure.
30
 */
31
-CFCT typedef int (*LibofxProcAccountCallback)(const struct OfxAccountData data, void * account_data);
32
+CFCT_start
33
+typedef int (*LibofxProcAccountCallback)(const struct OfxAccountData data, void * account_data);
34
+CFCT_end
35
 
36
 /**
37
  * \brief An abstraction of a security, such as a stock, mutual fund, etc.
38
@@ -320,7 +328,9 @@
39
  An OfxSecurityData structure is passed to this event, as well as
40
  a pointer to an arbitrary data structure.
41
 */
42
-CFCT typedef int (*LibofxProcSecurityCallback)(const struct OfxSecurityData data, void * security_data);
43
+CFCT_start
44
+typedef int (*LibofxProcSecurityCallback)(const struct OfxSecurityData data, void * security_data);
45
+CFCT_end
46
 
47
 typedef enum {
48
     OFX_CREDIT,     /**< Generic credit */
49
@@ -498,7 +508,9 @@
50
  generated. An OfxTransactionData structure is passed to this event, as well as
51
  a pointer to an arbitrary data structure.
52
 */
53
-CFCT typedef int (*LibofxProcTransactionCallback)(const struct OfxTransactionData data, void * transaction_data);
54
+CFCT_start
55
+typedef int (*LibofxProcTransactionCallback)(const struct OfxTransactionData data, void * transaction_data);
56
+CFCT_end
57
 
58
 /** 
59
  * \brief An abstraction of an account statement. 
60
@@ -567,7 +579,9 @@
61
  events have been sent. An OfxStatementData is passed to this event, as well as
62
  a pointer to an arbitrary data structure.
63
 */
64
-CFCT typedef int (*LibofxProcStatementCallback)(const struct OfxStatementData data, void * statement_data);
65
+CFCT_start
66
+typedef int (*LibofxProcStatementCallback)(const struct OfxStatementData data, void * statement_data);
67
+CFCT_end
68
 
69
 /** 
70
     \brief NOT YET SUPPORTED
(-)libofx/files/patch-lib_ofx_preproc.cpp (-11 / +3 lines)
Lines 1-17 Link Here
1
1
2
$FreeBSD: ports/finance/libofx/files/patch-lib_ofx_preproc.cpp,v 1.4 2009/03/20 23:01:09 miwi Exp $
2
$FreeBSD: ports/finance/libofx/files/patch-lib_ofx_preproc.cpp,v 1.4 2009/03/20 23:01:09 miwi Exp $
3
3
4
--- lib/ofx_preproc.cpp.orig	2008-12-07 07:22:57.000000000 +0900
4
--- ./lib/ofx_preproc.cpp.orig	2011-02-12 11:51:02.000000000 -0500
5
+++ lib/ofx_preproc.cpp	2009-03-16 03:31:53.000000000 +0900
5
+++ ./lib/ofx_preproc.cpp	2011-02-14 13:04:17.000000000 -0500
6
@@ -23,6 +23,7 @@
6
@@ -194,7 +194,7 @@
7
 #include <stdlib.h>
8
 #include <stdio.h>
9
 #include <string>
10
+#include <unistd.h>
11
 #include "ParserEventGeneratorKit.h"
12
 #include "libofx.h"
13
 #include "messages.hh"
14
@@ -185,7 +186,7 @@
15
 	    memset(iconv_buffer,0,READ_BUFFER_SIZE * 2);
7
 	    memset(iconv_buffer,0,READ_BUFFER_SIZE * 2);
16
 	    size_t inbytesleft = strlen(s_buffer.c_str());
8
 	    size_t inbytesleft = strlen(s_buffer.c_str());
17
 	    size_t outbytesleft = READ_BUFFER_SIZE * 2 - 1;
9
 	    size_t outbytesleft = READ_BUFFER_SIZE * 2 - 1;
(-)libofx/files/patch-lib_ofx_utilities.cpp (-16 / +6 lines)
Lines 1-20 Link Here
1
--- lib/ofx_utilities.cpp.orig	2007-10-27 14:15:58.000000000 +0200
1
--- ./lib/ofx_utilities.cpp.orig	2011-02-12 11:51:02.000000000 -0500
2
+++ lib/ofx_utilities.cpp	2009-11-08 01:02:47.000000000 +0100
2
+++ ./lib/ofx_utilities.cpp	2011-02-14 13:04:17.000000000 -0500
3
@@ -16,6 +16,7 @@
3
@@ -114,6 +114,7 @@
4
  *                                                                         *
5
  ***************************************************************************/
6
 #include <config.h>
7
+#include <locale.h>
8
 #include <iostream>
9
 #include <assert.h>
10
 
11
@@ -113,6 +114,9 @@
12
   char time_zone_specified = false;
4
   char time_zone_specified = false;
13
 
5
 
14
   time_t temptime;
6
   time_t temptime;
15
+
7
+  int daylight;
16
+  bzero(&time, sizeof(time));
8
 
17
+
9
   time.tm_isdst = daylight; // iniitialize dst setting
18
   std::time(&temptime);
10
   std::time(&temptime);
19
   local_offset = difftime(mktime(localtime(&temptime)), mktime(gmtime(&temptime)));
20
   
(-)libofx/files/patch-ofx2qif_ofx2qif.c (-19 lines)
Lines 1-19 Link Here
1
--- ofx2qif/ofx2qif.c.orig	Sat Feb 12 16:38:24 2005
2
+++ ofx2qif/ofx2qif.c	Sat Feb 12 16:38:45 2005
3
@@ -207,6 +207,7 @@
4
 extern int ofx_ERROR_msg;
5
 extern int ofx_INFO_msg;
6
 extern int ofx_STATUS_msg;
7
+LibofxContextPtr libofx_context;
8
  ofx_PARSER_msg = false;
9
  ofx_DEBUG_msg = false;
10
  ofx_WARNING_msg = false;
11
@@ -214,7 +215,7 @@
12
  ofx_INFO_msg = false;
13
  ofx_STATUS_msg = false;
14
 
15
- LibofxContextPtr libofx_context = libofx_get_new_context();
16
+ libofx_context = libofx_get_new_context();
17
  ofx_set_statement_cb(libofx_context, ofx_proc_statement_cb, 0);
18
  ofx_set_account_cb(libofx_context, ofx_proc_account_cb, 0);
19
  ofx_set_transaction_cb(libofx_context, ofx_proc_transaction_cb, 0);
(-)libofx/files/patch-utf8_fix (-34 lines)
Lines 1-34 Link Here
1
add file attached as files/patch-utf8_fix and recompile it.
2
3
Patch attached with submission follows:
4
5
--- lib/ofx_preproc.cpp.orig	2009-07-24 18:48:05.000000000 +0900
6
+++ lib/ofx_preproc.cpp	2009-07-24 20:34:52.000000000 +0900
7
@@ -151,7 +151,7 @@
8
 		  fromcode=LIBOFX_DEFAULT_INPUT_ENCODING;
9
 		}
10
 	      }
11
-	      else if(ofx_encoding.compare("USASCII")==0) {
12
+	      else if(ofx_encoding.compare("UTF-8")==0) {
13
 		fromcode="UTF-8";
14
 	      }
15
 	      else
16
@@ -170,6 +170,16 @@
17
 	      header_name.assign(s_buffer.substr(0,header_separator_idx));
18
 	      header_value.assign(s_buffer.substr(header_separator_idx+1));
19
 	      message_out(DEBUG,"ofx_proc_file():Header: "+header_name+" with value: "+header_value+" has been found");
20
+
21
+	      if((header_separator_idx = header_value.find('\r', 0))
22
+		 != std::string::npos)
23
+		header_value.resize(header_separator_idx);
24
+
25
+	      if((header_separator_idx = header_value.find('\n', 0))
26
+		 != std::string::npos)
27
+		header_value.resize(header_separator_idx);
28
+	      
29
+
30
 	      if(header_name.compare("ENCODING")==0) {
31
 		ofx_encoding.assign(header_value);
32
 	      }
33
34
(-)libofx/pkg-plist (-331 / +6 lines)
Lines 7-341 Link Here
7
lib/libofx.so
7
lib/libofx.so
8
lib/libofx.so.4
8
lib/libofx.so.4
9
libdata/pkgconfig/libofx.pc
9
libdata/pkgconfig/libofx.pc
10
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
10
share/libofx/dtd/ofc.dtd
11
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
11
share/libofx/dtd/ofx160.dtd
12
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
12
share/libofx/dtd/ofx201.dtd
13
%%PORTDOCS%%%%DOCSDIR%%/NEWS
13
share/libofx/dtd/opensp.dcl
14
%%PORTDOCS%%%%DOCSDIR%%/README
14
@dirrm share/libofx/dtd
15
%%PORTDOCS%%%%DOCSDIR%%/html/annotated.html
15
@dirrm share/libofx
16
%%PORTDOCS%%%%DOCSDIR%%/html/classLibofxContext.html
17
%%PORTDOCS%%%%DOCSDIR%%/html/classNodeParser.html
18
%%PORTDOCS%%%%DOCSDIR%%/html/classOFCApplication.html
19
%%PORTDOCS%%%%DOCSDIR%%/html/classOFXApplication.html
20
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxAccountContainer.html
21
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxAccountContainer.png
22
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxAccountInfoRequest.html
23
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxAccountInfoRequest.png
24
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxAggregate.html
25
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxAggregate.png
26
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxBalanceContainer.html
27
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxBalanceContainer.png
28
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxBankTransactionContainer.html
29
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxBankTransactionContainer.png
30
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxDummyContainer.html
31
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxDummyContainer.png
32
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxGenericContainer.html
33
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxGenericContainer.png
34
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxInvestmentTransactionContainer.html
35
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxInvestmentTransactionContainer.png
36
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxMainContainer.html
37
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxMainContainer.png
38
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxPaymentRequest.html
39
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxPaymentRequest.png
40
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxPushUpContainer.html
41
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxPushUpContainer.png
42
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxRequest.html
43
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxRequest.png
44
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxSecurityContainer.html
45
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxSecurityContainer.png
46
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxStatementContainer.html
47
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxStatementContainer.png
48
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxStatementRequest.html
49
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxStatementRequest.png
50
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxStatusContainer.html
51
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxStatusContainer.png
52
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxTransactionContainer.html
53
%%PORTDOCS%%%%DOCSDIR%%/html/classOfxTransactionContainer.png
54
%%PORTDOCS%%%%DOCSDIR%%/html/classtree.html
55
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1fixed__depth__iterator.html
56
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1fixed__depth__iterator.png
57
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1iterator__base.html
58
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1iterator__base.png
59
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1iterator__base__less.html
60
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1post__order__iterator.html
61
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1post__order__iterator.png
62
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1pre__order__iterator.html
63
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1pre__order__iterator.png
64
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1sibling__iterator.html
65
%%PORTDOCS%%%%DOCSDIR%%/html/classtree_1_1sibling__iterator.png
66
%%PORTDOCS%%%%DOCSDIR%%/html/classtree__node__.html
67
%%PORTDOCS%%%%DOCSDIR%%/html/cmdline_8c-source.html
68
%%PORTDOCS%%%%DOCSDIR%%/html/cmdline_8h-source.html
69
%%PORTDOCS%%%%DOCSDIR%%/html/cmdline_8h.html
70
%%PORTDOCS%%%%DOCSDIR%%/html/config_8h-source.html
71
%%PORTDOCS%%%%DOCSDIR%%/html/context_8cpp-source.html
72
%%PORTDOCS%%%%DOCSDIR%%/html/context_8hh-source.html
73
%%PORTDOCS%%%%DOCSDIR%%/html/deprecated.html
74
%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css
75
%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.png
76
%%PORTDOCS%%%%DOCSDIR%%/html/file__preproc_8cpp-source.html
77
%%PORTDOCS%%%%DOCSDIR%%/html/file__preproc_8cpp.html
78
%%PORTDOCS%%%%DOCSDIR%%/html/file__preproc_8hh-source.html
79
%%PORTDOCS%%%%DOCSDIR%%/html/file__preproc_8hh.html
80
%%PORTDOCS%%%%DOCSDIR%%/html/files.html
81
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2blank.png
82
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2doc.png
83
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2folderclosed.png
84
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2folderopen.png
85
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2lastnode.png
86
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2link.png
87
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mlastnode.png
88
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mnode.png
89
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2node.png
90
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2plastnode.png
91
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2pnode.png
92
%%PORTDOCS%%%%DOCSDIR%%/html/ftv2vertline.png
93
%%PORTDOCS%%%%DOCSDIR%%/html/functions.html
94
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x62.html
95
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x63.html
96
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x64.html
97
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x65.html
98
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x66.html
99
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x67.html
100
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x68.html
101
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x69.html
102
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x6c.html
103
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x6d.html
104
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x6e.html
105
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x6f.html
106
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x70.html
107
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x72.html
108
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x73.html
109
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x74.html
110
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x75.html
111
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x76.html
112
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x77.html
113
%%PORTDOCS%%%%DOCSDIR%%/html/functions_0x7e.html
114
%%PORTDOCS%%%%DOCSDIR%%/html/functions_enum.html
115
%%PORTDOCS%%%%DOCSDIR%%/html/functions_eval.html
116
%%PORTDOCS%%%%DOCSDIR%%/html/functions_func.html
117
%%PORTDOCS%%%%DOCSDIR%%/html/functions_type.html
118
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars.html
119
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x62.html
120
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x63.html
121
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x64.html
122
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x65.html
123
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x66.html
124
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x68.html
125
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x69.html
126
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x6c.html
127
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x6d.html
128
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x6e.html
129
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x6f.html
130
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x70.html
131
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x72.html
132
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x73.html
133
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x74.html
134
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x75.html
135
%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x76.html
136
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2context_8cpp-source.html
137
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2context_8hh-source.html
138
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2file__preproc_8cpp-source.html
139
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2file__preproc_8cpp.html
140
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2file__preproc_8hh-source.html
141
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2file__preproc_8hh.html
142
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2getopt1_8c-source.html
143
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2getopt_8c-source.html
144
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2gnugetopt_8h-source.html
145
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2messages_8cpp-source.html
146
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2messages_8cpp.html
147
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2messages_8hh-source.html
148
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2messages_8hh.html
149
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofc__sgml_8cpp-source.html
150
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofc__sgml_8cpp.html
151
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofc__sgml_8hh-source.html
152
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofc__sgml_8hh.html
153
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__aggregate_8hh-source.html
154
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__aggregate_8hh.html
155
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__account_8cpp-source.html
156
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__account_8cpp.html
157
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__generic_8cpp-source.html
158
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__generic_8cpp.html
159
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__main_8cpp-source.html
160
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__main_8cpp.html
161
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__security_8cpp-source.html
162
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__security_8cpp.html
163
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__statement_8cpp-source.html
164
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__statement_8cpp.html
165
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__transaction_8cpp-source.html
166
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__container__transaction_8cpp.html
167
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__containers_8hh-source.html
168
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__containers_8hh.html
169
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__containers__misc_8cpp-source.html
170
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__containers__misc_8cpp.html
171
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__error__msg_8hh-source.html
172
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__error__msg_8hh.html
173
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__preproc_8cpp-source.html
174
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__preproc_8cpp.html
175
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__preproc_8hh-source.html
176
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__preproc_8hh.html
177
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request_8cpp-source.html
178
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request_8cpp.html
179
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request_8hh-source.html
180
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request_8hh.html
181
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8cpp-source.html
182
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8cpp.html
183
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8hh-source.html
184
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8hh.html
185
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__statement_8cpp-source.html
186
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__statement_8cpp.html
187
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__statement_8hh-source.html
188
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__request__statement_8hh.html
189
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__sgml_8cpp-source.html
190
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__sgml_8cpp.html
191
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__sgml_8hh-source.html
192
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__sgml_8hh.html
193
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__utilities_8cpp-source.html
194
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__utilities_8cpp.html
195
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__utilities_8hh-source.html
196
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2ofx__utilities_8hh.html
197
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2tree_8hh-source.html
198
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2win32_8cpp-source.html
199
%%PORTDOCS%%%%DOCSDIR%%/html/fx-0_89_81_2lib_2win32_8hh-source.html
200
%%PORTDOCS%%%%DOCSDIR%%/html/getopt1_8c-source.html
201
%%PORTDOCS%%%%DOCSDIR%%/html/getopt_8c-source.html
202
%%PORTDOCS%%%%DOCSDIR%%/html/globals.html
203
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x62.html
204
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x63.html
205
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x64.html
206
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x65.html
207
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x66.html
208
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x67.html
209
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x69.html
210
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x6b.html
211
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x6c.html
212
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x6d.html
213
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x6f.html
214
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x70.html
215
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x71.html
216
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x72.html
217
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x73.html
218
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x74.html
219
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x75.html
220
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x76.html
221
%%PORTDOCS%%%%DOCSDIR%%/html/globals_0x77.html
222
%%PORTDOCS%%%%DOCSDIR%%/html/globals_enum.html
223
%%PORTDOCS%%%%DOCSDIR%%/html/globals_eval.html
224
%%PORTDOCS%%%%DOCSDIR%%/html/globals_func.html
225
%%PORTDOCS%%%%DOCSDIR%%/html/globals_type.html
226
%%PORTDOCS%%%%DOCSDIR%%/html/globals_vars.html
227
%%PORTDOCS%%%%DOCSDIR%%/html/gnugetopt_8h-source.html
228
%%PORTDOCS%%%%DOCSDIR%%/html/hierarchy.html
229
%%PORTDOCS%%%%DOCSDIR%%/html/inc_2libofx_8h-source.html
230
%%PORTDOCS%%%%DOCSDIR%%/html/inc_2libofx_8h.html
231
%%PORTDOCS%%%%DOCSDIR%%/html/index.html
232
%%PORTDOCS%%%%DOCSDIR%%/html/libofx-0_89_81_2inc_2libofx_8h-source.html
233
%%PORTDOCS%%%%DOCSDIR%%/html/libofx-0_89_81_2inc_2libofx_8h.html
234
%%PORTDOCS%%%%DOCSDIR%%/html/main.html
235
%%PORTDOCS%%%%DOCSDIR%%/html/main__doc_8c-source.html
236
%%PORTDOCS%%%%DOCSDIR%%/html/messages_8cpp-source.html
237
%%PORTDOCS%%%%DOCSDIR%%/html/messages_8cpp.html
238
%%PORTDOCS%%%%DOCSDIR%%/html/messages_8hh-source.html
239
%%PORTDOCS%%%%DOCSDIR%%/html/messages_8hh.html
240
%%PORTDOCS%%%%DOCSDIR%%/html/namespaceOfxPartner.html
241
%%PORTDOCS%%%%DOCSDIR%%/html/namespacekp.html
242
%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers.html
243
%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers_func.html
244
%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers_vars.html
245
%%PORTDOCS%%%%DOCSDIR%%/html/namespaces.html
246
%%PORTDOCS%%%%DOCSDIR%%/html/nodeparser_8cpp-source.html
247
%%PORTDOCS%%%%DOCSDIR%%/html/nodeparser_8cpp.html
248
%%PORTDOCS%%%%DOCSDIR%%/html/nodeparser_8h-source.html
249
%%PORTDOCS%%%%DOCSDIR%%/html/nodeparser_8h.html
250
%%PORTDOCS%%%%DOCSDIR%%/html/ofc__sgml_8cpp-source.html
251
%%PORTDOCS%%%%DOCSDIR%%/html/ofc__sgml_8cpp.html
252
%%PORTDOCS%%%%DOCSDIR%%/html/ofc__sgml_8hh-source.html
253
%%PORTDOCS%%%%DOCSDIR%%/html/ofc__sgml_8hh.html
254
%%PORTDOCS%%%%DOCSDIR%%/html/ofx2qif_8c-source.html
255
%%PORTDOCS%%%%DOCSDIR%%/html/ofx2qif_8c.html
256
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__aggregate_8hh-source.html
257
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__aggregate_8hh.html
258
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__account_8cpp-source.html
259
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__account_8cpp.html
260
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__generic_8cpp-source.html
261
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__generic_8cpp.html
262
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__main_8cpp-source.html
263
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__main_8cpp.html
264
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__security_8cpp-source.html
265
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__security_8cpp.html
266
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__statement_8cpp-source.html
267
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__statement_8cpp.html
268
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__transaction_8cpp-source.html
269
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__container__transaction_8cpp.html
270
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__containers_8hh-source.html
271
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__containers_8hh.html
272
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__containers__misc_8cpp-source.html
273
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__containers__misc_8cpp.html
274
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__error__msg_8hh-source.html
275
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__error__msg_8hh.html
276
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__preproc_8cpp-source.html
277
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__preproc_8cpp.html
278
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__preproc_8hh-source.html
279
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__preproc_8hh.html
280
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request_8cpp-source.html
281
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request_8cpp.html
282
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request_8hh-source.html
283
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request_8hh.html
284
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__accountinfo_8cpp-source.html
285
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__accountinfo_8cpp.html
286
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__accountinfo_8hh-source.html
287
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__accountinfo_8hh.html
288
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__statement_8cpp-source.html
289
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__statement_8cpp.html
290
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__statement_8hh-source.html
291
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__request__statement_8hh.html
292
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__sgml_8cpp-source.html
293
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__sgml_8cpp.html
294
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__sgml_8hh-source.html
295
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__sgml_8hh.html
296
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__utilities_8cpp-source.html
297
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__utilities_8cpp.html
298
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__utilities_8hh-source.html
299
%%PORTDOCS%%%%DOCSDIR%%/html/ofx__utilities_8hh.html
300
%%PORTDOCS%%%%DOCSDIR%%/html/ofxconnect_8cpp-source.html
301
%%PORTDOCS%%%%DOCSDIR%%/html/ofxconnect_8cpp.html
302
%%PORTDOCS%%%%DOCSDIR%%/html/ofxdump_8cpp-source.html
303
%%PORTDOCS%%%%DOCSDIR%%/html/ofxdump_8cpp.html
304
%%PORTDOCS%%%%DOCSDIR%%/html/ofxpartner_8cpp-source.html
305
%%PORTDOCS%%%%DOCSDIR%%/html/ofxpartner_8cpp.html
306
%%PORTDOCS%%%%DOCSDIR%%/html/ofxpartner_8h-source.html
307
%%PORTDOCS%%%%DOCSDIR%%/html/ofxpartner_8h.html
308
%%PORTDOCS%%%%DOCSDIR%%/html/pages.html
309
%%PORTDOCS%%%%DOCSDIR%%/html/structErrorMsg.html
310
%%PORTDOCS%%%%DOCSDIR%%/html/structLibofxFileFormatInfo.html
311
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxAccountData.html
312
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxCurrency.html
313
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxFiLogin.html
314
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxFiServiceInfo.html
315
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxPayee.html
316
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxPayment.html
317
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxSecurityData.html
318
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxStatementData.html
319
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxStatusData.html
320
%%PORTDOCS%%%%DOCSDIR%%/html/structOfxTransactionData.html
321
%%PORTDOCS%%%%DOCSDIR%%/html/structcmdline__parser__params.html
322
%%PORTDOCS%%%%DOCSDIR%%/html/structgengetopt__args__info.html
323
%%PORTDOCS%%%%DOCSDIR%%/html/structoption.html
324
%%PORTDOCS%%%%DOCSDIR%%/html/tab_b.gif
325
%%PORTDOCS%%%%DOCSDIR%%/html/tab_l.gif
326
%%PORTDOCS%%%%DOCSDIR%%/html/tab_r.gif
327
%%PORTDOCS%%%%DOCSDIR%%/html/tabs.css
328
%%PORTDOCS%%%%DOCSDIR%%/html/tree.html
329
%%PORTDOCS%%%%DOCSDIR%%/html/tree_8hh-source.html
330
%%PORTDOCS%%%%DOCSDIR%%/html/win32_8cpp-source.html
331
%%PORTDOCS%%%%DOCSDIR%%/html/win32_8hh-source.html
332
%%PORTDOCS%%%%DOCSDIR%%/totest.txt
333
%%DATADIR%%/dtd/ofc.dtd
334
%%DATADIR%%/dtd/ofx160.dtd
335
%%DATADIR%%/dtd/ofx201.dtd
336
%%DATADIR%%/dtd/opensp.dcl
337
@dirrm %%DATADIR%%/dtd
338
@dirrm %%DATADIR%%
339
%%PORTDOCS%%@dirrm %%DOCSDIR%%/html
340
%%PORTDOCS%%@dirrm %%DOCSDIR%%
341
@dirrm include/libofx
16
@dirrm include/libofx

Return to bug 154783