summaryrefslogtreecommitdiff
path: root/finance/emma/patches
diff options
context:
space:
mode:
authordrochner <drochner>2001-07-02 14:29:45 +0000
committerdrochner <drochner>2001-07-02 14:29:45 +0000
commita69585360abaea5f256bd55fd153e1bf0e0a9b3b (patch)
tree108f1f588eace1613511c728b80aa901c5703011 /finance/emma/patches
parenta0e180709c52383837ccb12ae59e3aa691009355 (diff)
downloadpkgsrc-a69585360abaea5f256bd55fd153e1bf0e0a9b3b.tar.gz
fix some build glitches (require "msgfmt" binary, -export-dynamic)
and python problems (script bugs and version dependencies, depend on py-mxDateTime)
Diffstat (limited to 'finance/emma/patches')
-rw-r--r--finance/emma/patches/patch-ab10
-rw-r--r--finance/emma/patches/patch-ad22
-rw-r--r--finance/emma/patches/patch-ae22
3 files changed, 50 insertions, 4 deletions
diff --git a/finance/emma/patches/patch-ab b/finance/emma/patches/patch-ab
index b973ec57ed6..5052385c1ac 100644
--- a/finance/emma/patches/patch-ab
+++ b/finance/emma/patches/patch-ab
@@ -1,12 +1,14 @@
-$NetBSD: patch-ab,v 1.1 2001/06/30 16:56:30 tron Exp $
+$NetBSD: patch-ab,v 1.2 2001/07/02 14:29:45 drochner Exp $
--- src/Makefile.in.orig Fri Nov 3 13:16:27 2000
-+++ src/Makefile.in Sat Jun 30 18:50:41 2001
-@@ -150,7 +150,7 @@
++++ src/Makefile.in Mon Jul 2 15:11:52 2001
+@@ -149,8 +149,8 @@
+ report_grp_axis.o report_progress.o schedule.o schedule_dlg.o sm.o \
toolbar.o transaction_dlg.o
emma_DEPENDENCIES =
- emma_LDFLAGS =
+-emma_LDFLAGS =
-CFLAGS = @CFLAGS@
++emma_LDFLAGS = -export-dynamic
+CFLAGS = @CFLAGS@ -DPREFIX=\"@prefix@\"
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
diff --git a/finance/emma/patches/patch-ad b/finance/emma/patches/patch-ad
new file mode 100644
index 00000000000..3864ea309b3
--- /dev/null
+++ b/finance/emma/patches/patch-ad
@@ -0,0 +1,22 @@
+$NetBSD: patch-ad,v 1.1 2001/07/02 14:29:45 drochner Exp $
+
+--- data/standard.py.orig Mon Jul 2 15:12:57 2001
++++ data/standard.py Mon Jul 2 15:13:41 2001
+@@ -48,7 +48,7 @@
+ "Example : CurDay()");
+
+ A = NormalisedTime()
+-FirstDayOfMonth = time.mktime(A[0], A[1], 1, A[3], A[4], A[5], A[6], A[7], A[8]);
++FirstDayOfMonth = time.mktime((A[0], A[1], 1, A[3], A[4], A[5], A[6], A[7], A[8]));
+
+ def CurMonth():
+ return emma.date() >= FirstDayOfMonth
+@@ -59,7 +59,7 @@
+ "Example : CurMonth()");
+
+ A = NormalisedTime()
+-FirstDayOfYear = time.mktime(A[0], 1, 1, A[3], A[4], A[5], A[6], A[7], A[8]);
++FirstDayOfYear = time.mktime((A[0], 1, 1, A[3], A[4], A[5], A[6], A[7], A[8]));
+
+ def CurYear():
+ return emma.date() >= FirstDayOfYear
diff --git a/finance/emma/patches/patch-ae b/finance/emma/patches/patch-ae
new file mode 100644
index 00000000000..ec68365634b
--- /dev/null
+++ b/finance/emma/patches/patch-ae
@@ -0,0 +1,22 @@
+$NetBSD: patch-ae,v 1.1 2001/07/02 14:29:46 drochner Exp $
+
+--- data/date.py.orig Mon Jul 2 16:07:58 2001
++++ data/date.py Mon Jul 2 16:08:36 2001
+@@ -57,7 +57,7 @@
+ return emma.date() >= this.ticks() and emma.date() < next.ticks()
+
+ emma.register_func("MonthExt",\
+- "Args: numMonths, offset\n\n",\
++ "Args: numMonths, offset\n\n"\
+ "Returns True if the transaction happened\n"\
+ "in the next <numMonths> months offset by\n"\
+ "<offset> weeks.\n\n"\
+@@ -72,7 +72,7 @@
+ return emma.date() >= this.ticks() and emma.date() < next.ticks()
+
+ emma.register_func("YearExt",\
+- "Args: numYears, offset\n\n",\
++ "Args: numYears, offset\n\n"\
+ "Returns True if the transaction happened in\n"\
+ "the next <numYears> year offset by <offset>\n"\
+ "years.\n\n"\