diff options
author | wiz <wiz@pkgsrc.org> | 2006-02-05 22:25:01 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-02-05 22:25:01 +0000 |
commit | a3ce94c442e2cda47dad639f75e8d5b24f756e53 (patch) | |
tree | fadf7479cafff6057fe01f7366acba484d5a032b /finance/libofx/patches | |
parent | a7c3c3fc766c75e0ee29b7e8aa7c7185d6ed1dee (diff) | |
download | pkgsrc-a3ce94c442e2cda47dad639f75e8d5b24f756e53.tar.gz |
Initial import of libofx-0.8.0, based on the package provided by
Gary Duzan in PR 32439:
This is the LibOFX library. It is a parser and an API designed to
allow applications to very easily support OFX command responses,
usually provided by financial institutions for statement downloads.
To my knowledge, it is the first working OpenSource implementation
of the OFX (Open Financial eXchange) specification on the client
side.
Diffstat (limited to 'finance/libofx/patches')
-rw-r--r-- | finance/libofx/patches/patch-aa | 13 | ||||
-rw-r--r-- | finance/libofx/patches/patch-ab | 12 | ||||
-rw-r--r-- | finance/libofx/patches/patch-ac | 14 | ||||
-rw-r--r-- | finance/libofx/patches/patch-ad | 13 |
4 files changed, 52 insertions, 0 deletions
diff --git a/finance/libofx/patches/patch-aa b/finance/libofx/patches/patch-aa new file mode 100644 index 00000000000..1bb91d838b1 --- /dev/null +++ b/finance/libofx/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2006/02/05 22:25:01 wiz Exp $ + +--- lib/ofx_preproc.cpp.orig 2006-01-02 11:57:37.000000000 -0500 ++++ lib/ofx_preproc.cpp 2006-01-02 11:58:09.000000000 -0500 +@@ -204,7 +204,7 @@ + string s_buffer; + char *filenames[3]; + char tmp_filename[50]; +- unsigned int pos; ++ string::size_type pos; + LibofxContext *libofx_context; + + libofx_context=(LibofxContext*)ctx; diff --git a/finance/libofx/patches/patch-ab b/finance/libofx/patches/patch-ab new file mode 100644 index 00000000000..54ff684a280 --- /dev/null +++ b/finance/libofx/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1.1.1 2006/02/05 22:25:01 wiz Exp $ + +--- ofxconnect/Makefile.am.orig 2005-07-31 14:34:30.000000000 -0400 ++++ ofxconnect/Makefile.am 2006-01-02 12:38:51.000000000 -0500 +@@ -1,5 +1,6 @@ + bin_PROGRAMS = ofxconnect +-ofxconnect_LDADD = $(top_builddir)/lib/libofx.la -L/usr/lib -lcurl -lz -lssl -lcrypto -ldl ++ofxconnect_LDADD = $(top_builddir)/lib/libofx.la ++ofxconnect_LDFLAGS = `curl-config --libs` + ofxconnect_SOURCES = cmdline.h cmdline.c ofxconnect.cpp + + AM_CPPFLAGS = \ diff --git a/finance/libofx/patches/patch-ac b/finance/libofx/patches/patch-ac new file mode 100644 index 00000000000..0481d85a73a --- /dev/null +++ b/finance/libofx/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1.1.1 2006/02/05 22:25:01 wiz Exp $ + +--- ofxconnect/Makefile.in.orig 2005-07-31 18:34:47.000000000 +0000 ++++ ofxconnect/Makefile.in +@@ -201,7 +199,8 @@ sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +-ofxconnect_LDADD = $(top_builddir)/lib/libofx.la -L/usr/lib -lcurl -lz -lssl -lcrypto -ldl ++ofxconnect_LDADD = $(top_builddir)/lib/libofx.la ++ofxconnect_LDFLAGS = `curl-config --libs` + ofxconnect_SOURCES = cmdline.h cmdline.c ofxconnect.cpp + AM_CPPFLAGS = \ + -I${top_srcdir}/inc diff --git a/finance/libofx/patches/patch-ad b/finance/libofx/patches/patch-ad new file mode 100644 index 00000000000..fff0b051694 --- /dev/null +++ b/finance/libofx/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1.1.1 2006/02/05 22:25:01 wiz Exp $ + +--- lib/Makefile.in.orig 2005-07-31 18:21:10.000000000 +0000 ++++ lib/Makefile.in +@@ -250,7 +250,7 @@ AM_CPPFLAGS = \ + -I${OPENSPINCLUDES} \ + -DMAKEFILE_DTD_PATH=\"${LIBOFX_DTD_DIR}/\" + +-libofx_la_LIBADD = @LIBOBJ@ ${OPENSPLIBS} -lstdc++ ++libofx_la_LIBADD = ${OPENSPLIBS} -lstdc++ + libofx_la_LDFLAGS = -version-info @LIBOFX_SO_CURRENT@:@LIBOFX_SO_REVISION@:@LIBOFX_SO_AGE@ + all: all-am + |