diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-07-08 02:36:44 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-07-08 02:36:44 +0800 |
commit | 6165f04714df6f22bb39f1d5ac0626ed0cadfa5c (patch) | |
tree | 656444d906829c005b944213fc09b71909badb67 /x11/e17-module-calendar | |
parent | ff495be1cabded4bb0c2514487886d972c5bd0cf (diff) | |
download | freebsd-ports-gnome-6165f04714df6f22bb39f1d5ac0626ed0cadfa5c.tar.gz freebsd-ports-gnome-6165f04714df6f22bb39f1d5ac0626ed0cadfa5c.tar.zst freebsd-ports-gnome-6165f04714df6f22bb39f1d5ac0626ed0cadfa5c.zip |
Make it work with recent snapshot of e17.
PR: ports/99855
Submitted by: maintainer
Diffstat (limited to 'x11/e17-module-calendar')
-rw-r--r-- | x11/e17-module-calendar/Makefile | 1 | ||||
-rw-r--r-- | x11/e17-module-calendar/files/patch-src_e_mod_main.c | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/x11/e17-module-calendar/Makefile b/x11/e17-module-calendar/Makefile index 464c6cddaaf3..720cd6886157 100644 --- a/x11/e17-module-calendar/Makefile +++ b/x11/e17-module-calendar/Makefile @@ -7,6 +7,7 @@ PORTNAME= calendar PORTVERSION= 23062006 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://mbsd.msk.ru/dist/ PKGNAMEPREFIX= e17-module- diff --git a/x11/e17-module-calendar/files/patch-src_e_mod_main.c b/x11/e17-module-calendar/files/patch-src_e_mod_main.c new file mode 100644 index 000000000000..1425a4ef7ec1 --- /dev/null +++ b/x11/e17-module-calendar/files/patch-src_e_mod_main.c @@ -0,0 +1,20 @@ +--- src/e_mod_main.c.orig Thu Jul 6 23:11:37 2006 ++++ src/e_mod_main.c Thu Jul 6 23:13:48 2006 +@@ -47,7 +47,7 @@ +
+ {
+
e_error_dialog_show
+- ("Module API Error",
"Error initializing Module: calendar\n"
++ (module, "Module API Error",
"Error initializing Module: calendar\n"
+ "It requires a minimum module API version of: %i.\n"
+ "The module API advertized by Enlightenment is: %i.\n"
+ "Aborting module.",
E_MODULE_API_VERSION, module->api->version);
+@@ -102,7 +102,7 @@ + EAPI int
+ e_modapi_about(E_Module *module)
+ {
+-
e_error_dialog_show(D_("Enlightenment calendar Module"),
D_("A simple module to give E17 a desktop calendar "));
++
e_error_dialog_show(module, D_("Enlightenment calendar Module"),
D_("A simple module to give E17 a desktop calendar "));
+
return 1;
+
}
+
|