E CVS: moon devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon/data/themes


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/moon/data/themes/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:38:59 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,6 +2,6 @@
 Type=Link
 Name=Moon
 GenericName=gadget
-Comment=hilightMoon Gadget/hilightbrGadget for e17 which displays 
thebrcurrent phase of the moon.
-Comment[it]=hilightModulo Moon/hilightbrModulo per e17 che mostra 
l'attualebrfase lunare.
+Comment=hilightMoon Gadget/hilightbrbrGadget for e17 which displays 
the current phase of the moon.
+Comment[it]=hilightModulo Moon/hilightbrbrModulo per e17 che mostra 
l'attuale fase lunare.
 Icon=e-module-moon



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2007-11-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon/src


Modified Files:
e_mod_main.c e_mod_main.h 


Log Message:
Fix for gadcon menu breakage.

===
RCS file: /cvs/e/e_modules/moon/src/e_mod_main.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- e_mod_main.c12 Nov 2007 08:12:10 -  1.14
+++ e_mod_main.c25 Nov 2007 05:40:33 -  1.15
@@ -53,7 +53,6 @@
 };
 
 static void  _button_cb_mouse_down(void *data, Evas *e, Evas_Object 
*obj, void *event_info); 
-static void  _menu_cb_post(void *data, E_Menu *m);
 static void  _moon_inst_cb_menu_configure(void *data, E_Menu *m, 
E_Menu_Item *mi);
 
 static void  _moon_timer_init();
@@ -234,15 +233,13 @@
 
inst = data;
ev = event_info;
-   if ((ev-button == 3)  (!moon_config-menu))
+   if ((ev-button == 3)  (!inst-gcc-menu))
  {
E_Menu *mn;
E_Menu_Item *mi;
int cx, cy, cw, ch;
 
mn = e_menu_new();
-   e_menu_post_deactivate_callback_set(mn, _menu_cb_post, inst);
-   moon_config-menu = mn;

mi = e_menu_item_new(mn); e_menu_item_label_set(mi, 
D_(Configuration));
e_util_menu_item_edje_icon_set(mi, enlightenment/configuration);
@@ -261,20 +258,11 @@
 }
 
 static void
-_menu_cb_post(void *data, E_Menu *m)
-{
-   if (!moon_config-menu) return;
-   e_object_del(E_OBJECT(moon_config-menu));
-   moon_config-menu = NULL;
-}
-
-static void
 _moon_inst_cb_menu_configure(void *data, E_Menu *m, E_Menu_Item *mi)
 {
Evas_Object *o;
 
o = data;
-   if (!moon_config-menu) return;
if (moon_config-config_dialog) return;
moon_config_dialog_show(o);
 }
===
RCS file: /cvs/e/e_modules/moon/src/e_mod_main.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e_mod_main.h2 Nov 2007 12:22:16 -   1.4
+++ e_mod_main.h25 Nov 2007 05:40:33 -  1.5
@@ -25,7 +25,6 @@
Evas_List *faces;
 
E_Config_Dialog *config_dialog;
-   E_Menu  *menu;
 };
 
 EAPI extern E_Module_Api e_modapi;



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2007-04-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon


Modified Files:
configure.ac 


Log Message:
Pretty standard patch set from Lutin for recent pkg-config changes in EFL...
committing in bulk.

===
RCS file: /cvs/e/e_modules/moon/configure.ac,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.ac17 Sep 2006 15:12:59 -  1.9
+++ configure.ac25 Apr 2007 09:22:07 -  1.10
@@ -25,52 +25,37 @@
 AM_GNU_GETTEXT_VERSION(0.14)
 
 # Checks for libraries.
-AC_PATH_GENERIC(eet, 0.9.10, [
-   AC_SUBST(eet_libs)
-   AC_SUBST(eet_cflags) ],
-   AC_MSG_ERROR(Cannot find eet: Is eet-config in path?))
-eet_libs=`eet-config --libs`
-eet_cflags=`eet-config --cflags`
+PKG_CHECK_MODULES(EET, [eet = 0.9.10])
+eet_libs=$EET_LIBS
+eet_cflags=$EET_CFLAGS
 AC_SUBST(eet_flags)
 AC_SUBST(eet_cflags)
 
-AC_PATH_GENERIC(evas, 0.9.9, [
-   AC_SUBST(evas_libs)
-   AC_SUBST(evas_cflags) ],
-   AC_MSG_ERROR(Cannot find evas: Is evas-config in path?))
-evas_libs=`evas-config --libs`
-evas_cflags=`evas-config --cflags`
+PKG_CHECK_MODULES(EVAS, [evas = 0.9.9])
+evas_libs=$EVAS_LIBS
+evas_cflags=$EVAS_CFLAGS
 AC_SUBST(evas_libs)
 AC_SUBST(evas_cflags)
 
-AC_PATH_GENERIC(ecore, 0.9.9, [
-   AC_SUBST(ecore_libs)
-   AC_SUBST(ecore_cflags) ],
-   AC_MSG_ERROR(Cannot find ecore: Is ecore-config in path?))
-ecore_libs=`ecore-config --libs`
-ecore_cflags=`ecore-config --cflags`
+PKG_CHECK_MODULES(ECORE, [ecore = 0.9.9])
+ecore_libs=$ECORE_LIBS
+ecore_cflags=$ECORE_CFLAGS
 AC_SUBST(ecore_libs)
 AC_SUBST(ecore_cflags)
 
-AC_PATH_GENERIC(embryo, 0.5.0, [
-AC_SUBST(embryo_libs)
-   AC_SUBST(embryo_cflags) ],
-   AC_MSG_ERROR(Cannot find embryo: Is embryo-config in path?))
-embryo_libs=`embryo-config --libs`
-embryo_cflags=`embryo-config --cflags`
+PKG_CHECK_MODULES(EMBRYO, [embryo = 0.5.0])
+embryo_libs=$EMBRYO_LIBS
+embryo_cflags=$EMBRYO_CFLAGS
 AC_SUBST(embryo_libs)
 AC_SUBST(embryo_cflags)
 
-AC_PATH_GENERIC(edje, 0.5.0, [
-   AC_SUBST(edje_libs)
-   AC_SUBST(edje_cflags) ],
-   AC_MSG_ERROR(Cannot find edje: Is edje-config in path?))
-edje_libs=`edje-config --libs`
-edje_cflags=`edje-config --cflags`
+PKG_CHECK_MODULES(EDJE, [edje = 0.5.0])
+edje_libs=$EDJE_LIBS
+edje_cflags=$EDJE_CFLAGS
 AC_SUBST(edje_libs)
 AC_SUBST(edje_cflags)
 
-edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
+edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc
 AC_ARG_WITH(edje-cc,
 [  --with-edje-cc=PATH  specify a specific path to edje_cc],
 [
@@ -78,7 +63,7 @@
   edje_cc=$v
   echo   Enlightenment edje_cc explicitly set to $edje_cc;
 ],[
-  edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
+  edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
 



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2006-07-25 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon


Modified Files:
configure.ac 


Log Message:
Fix minor oversight with x86_64 libdir. Thanks Sebastian

===
RCS file: /cvs/e/e_modules/moon/configure.ac,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.ac25 Jul 2006 03:52:43 -  1.7
+++ configure.ac25 Jul 2006 13:32:54 -  1.8
@@ -101,7 +101,7 @@
   moduledir=${prefix}/modules
 else
   datarootdir=${prefix}/share
-  moduledir=${libdir}/lib/enlightenment/modules
+  moduledir=${libdir}/enlightenment/modules
 fi
 AC_SUBST(MODULEDIR, ${moduledir})
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2006-07-24 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon


Modified Files:
configure.ac 


Log Message:
Bad Marcus, no cookie :) . Fixed x86_64 install patch.

===
RCS file: /cvs/e/e_modules/moon/configure.ac,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.ac3 Jul 2006 17:37:08 -   1.6
+++ configure.ac25 Jul 2006 03:52:43 -  1.7
@@ -101,7 +101,7 @@
   moduledir=${prefix}/modules
 else
   datarootdir=${prefix}/share
-  moduledir=${prefix}/lib/enlightenment/modules
+  moduledir=${libdir}/lib/enlightenment/modules
 fi
 AC_SUBST(MODULEDIR, ${moduledir})
 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2006-07-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon/src


Modified Files:
e_mod_main.c 


Log Message:
Make all active e_modules work with the new e_module_dialog_show function
change(s). If you get errors building these, update e17/apps/e .

===
RCS file: /cvs/e/e_modules/moon/src/e_mod_main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_main.c3 Jun 2006 08:35:27 -   1.2
+++ e_mod_main.c2 Jul 2006 19:06:10 -   1.3
@@ -124,7 +124,7 @@
 
snprintf(title, sizeof(title), %s %s, D_(Moon Clock Module), 
 PACKAGE_VERSION);
-   e_module_dialog_show(title, 
+   e_module_dialog_show(module, title, 
 D_(Display current phase of the moon ala e16 E-MoonClock)); 
return 1;
 }



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs