diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-20 13:20:21 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-20 13:20:21 +0000 |
commit | 080d21d2011f59a1db53b452559b7be11944520b (patch) | |
tree | 7b55555c096315f84b8e2d810bd5d594c54e373f /app-office/planner/files | |
parent | Version bump to 1.2.4 which is same as 1.2.3 with gcc 4.3 fix. I would like t... (diff) | |
download | gentoo-2-080d21d2011f59a1db53b452559b7be11944520b.tar.gz gentoo-2-080d21d2011f59a1db53b452559b7be11944520b.tar.bz2 gentoo-2-080d21d2011f59a1db53b452559b7be11944520b.zip |
bump to 0.14.3. Bug fixes, support for libgda-3, a few new features and updated translations. Patch to fix parallel build issue and compilation fix for eds plugin.
(Portage version: 2.1.5_rc5)
Diffstat (limited to 'app-office/planner/files')
-rw-r--r-- | app-office/planner/files/planner-0.14.3-eds-plugin.patch | 12 | ||||
-rw-r--r-- | app-office/planner/files/planner-0.14.3-parallel-build.patch | 48 |
2 files changed, 60 insertions, 0 deletions
diff --git a/app-office/planner/files/planner-0.14.3-eds-plugin.patch b/app-office/planner/files/planner-0.14.3-eds-plugin.patch new file mode 100644 index 000000000000..7bd79c89e548 --- /dev/null +++ b/app-office/planner/files/planner-0.14.3-eds-plugin.patch @@ -0,0 +1,12 @@ +Index: src/planner-eds-plugin.c +=================================================================== +--- src/planner-eds-plugin.c (révision 909) ++++ src/planner-eds-plugin.c (copie de travail) +@@ -55,6 +55,7 @@ + #include <libedataserver/e-source-group.h> + #include <libedataserver/e-uid.h> + /* Calendar */ ++#define HANDLE_LIBICAL_MEMORY + #include <libecal/e-cal.h> + /* Addressbook */ + #include <libebook/e-book.h> diff --git a/app-office/planner/files/planner-0.14.3-parallel-build.patch b/app-office/planner/files/planner-0.14.3-parallel-build.patch new file mode 100644 index 000000000000..8224eb01c1fb --- /dev/null +++ b/app-office/planner/files/planner-0.14.3-parallel-build.patch @@ -0,0 +1,48 @@ +Index: tests/Makefile.am +=================================================================== +--- tests/Makefile.am (révision 909) ++++ tests/Makefile.am (copie de travail) +@@ -7,10 +7,6 @@ + -DG_LOG_DOMAIN=\"Planner\" \ + -DEXAMPLESDIR=\"$(top_srcdir)/tests/files\" + +-LDADD = \ +- $(top_builddir)/libplanner/libplanner-1.la \ +- $(PLANNER_LIBS) +- + noinst_LTLIBRARIES = libselfcheck.la + + libselfcheck_la_SOURCES = \ +@@ -20,16 +16,28 @@ + noinst_PROGRAMS = scheduler-test time-test calendar-test task-test + + scheduler_test_SOURCES = scheduler-test.c +-scheduler_test_LDFLAGS = libselfcheck.la ++scheduler_test_LDADD = \ ++ $(top_builddir)/libplanner/libplanner-1.la \ ++ $(PLANNER_LIBS) \ ++ libselfcheck.la + + time_test_SOURCES = time-test.c +-time_test_LDFLAGS = libselfcheck.la ++time_test_LDADD = \ ++ $(top_builddir)/libplanner/libplanner-1.la \ ++ $(PLANNER_LIBS) \ ++ libselfcheck.la + + calendar_test_SOURCES = calendar-test.c +-calendar_test_LDFLAGS = libselfcheck.la ++calendar_test_LDADD = \ ++ $(top_builddir)/libplanner/libplanner-1.la \ ++ $(PLANNER_LIBS) \ ++ libselfcheck.la + + task_test_SOURCES = task-test.c +-task_test_LDFLAGS = libselfcheck.la ++task_test_LDADD = \ ++ $(top_builddir)/libplanner/libplanner-1.la \ ++ $(PLANNER_LIBS) \ ++ libselfcheck.la + + # The loadable modules can't be found at distcheck time so disable the + # tests for distcheck. |