E CVS: forecasts devilhorns

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : forecasts

Dir : e_modules/forecasts


Modified Files:
Makefile.am autogen.sh configure.in e_mod_main.c 
Added Files:
module.desktop 
Removed Files:
module.desktop.in module.edj 


Log Message:
As per saturn's request, convert forecasts module to use new .desktop stuff
for efreet so that the module shows in the list.

===
RCS file: /cvs/e/e_modules/forecasts/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 24 Feb 2007 08:21:40 -  1.1
+++ Makefile.am 31 Mar 2007 09:06:30 -  1.2
@@ -11,7 +11,7 @@
 filesdir = $(datadir)
 
 files_DATA = module.desktop \
-module.edj \
+e-module-forecasts.edj \
 forecasts.edj
 
 EXTRA_DIST = $(files_DATA) \
===
RCS file: /cvs/e/e_modules/forecasts/autogen.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- autogen.sh  24 Feb 2007 08:21:40 -  1.1
+++ autogen.sh  31 Mar 2007 09:06:30 -  1.2
@@ -5,6 +5,7 @@
 
 touch README
 
+echo Running autopoint... ; autopoint -f || :
 echo Running aclocal... ; aclocal $ACLOCAL_FLAGS || exit 1
 echo Running autoheader... ; autoheader || exit 1
 echo Running autoconf... ; autoconf || exit 1
===
RCS file: /cvs/e/e_modules/forecasts/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in3 Mar 2007 18:29:20 -   1.3
+++ configure.in31 Mar 2007 09:06:30 -  1.4
@@ -148,7 +148,6 @@
 
 AC_OUTPUT([
 Makefile
-module.desktop
 images/Makefile
 po/Makefile
 e_modules-forecasts.spec
===
RCS file: /cvs/e/e_modules/forecasts/e_mod_main.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- e_mod_main.c14 Mar 2007 11:39:02 -  1.7
+++ e_mod_main.c31 Mar 2007 09:06:30 -  1.8
@@ -248,7 +248,7 @@
char buf[4096];
 
o = edje_object_add(evas);
-   snprintf(buf, sizeof(buf), %s/module.edj,
+   snprintf(buf, sizeof(buf), %s/e-module-forecasts.edj,
 e_module_dir_get(forecasts_config-module));
edje_object_file_set(o, buf, icon);
return o;



-
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: forecasts devilhorns

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : forecasts

Dir : e_modules/forecasts


Added Files:
e-module-forecasts.edj 


Log Message:
Forgot to add the new module icon edj.




-
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: libs/embryo tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo/src/lib


Modified Files:
Embryo.h embryo_amx.c 


Log Message:
fixed some const char*/char* confusion.

===
RCS file: /cvs/e/e17/libs/embryo/src/lib/Embryo.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- Embryo.h10 Feb 2007 17:23:05 -  1.14
+++ Embryo.h31 Mar 2007 10:28:20 -  1.15
@@ -93,14 +93,14 @@
EAPI Embryo_Program  *embryo_program_const_new(void *data, int size);
EAPI Embryo_Program  *embryo_program_load(char *file);
EAPI void embryo_program_free(Embryo_Program *ep);
-   EAPI void embryo_program_native_call_add(Embryo_Program *ep, 
char *name, Embryo_Cell (*func) (Embryo_Program *ep, Embryo_Cell *params));
+   EAPI void embryo_program_native_call_add(Embryo_Program *ep, 
const char *name, Embryo_Cell (*func) (Embryo_Program *ep, Embryo_Cell 
*params));
EAPI void embryo_program_vm_reset(Embryo_Program *ep);
EAPI void embryo_program_vm_push(Embryo_Program *ep);
EAPI void embryo_program_vm_pop(Embryo_Program *ep);
EAPI void embryo_swap_16(unsigned short *v);
EAPI void embryo_swap_32(unsigned int *v);
-   EAPI Embryo_Function  embryo_program_function_find(Embryo_Program *ep, char 
*name);
-   EAPI Embryo_Cell  embryo_program_variable_find(Embryo_Program *ep, char 
*name);
+   EAPI Embryo_Function  embryo_program_function_find(Embryo_Program *ep, 
const char *name);
+   EAPI Embryo_Cell  embryo_program_variable_find(Embryo_Program *ep, 
const char *name);
EAPI int  embryo_program_variable_count_get(Embryo_Program *ep);
EAPI Embryo_Cell  embryo_program_variable_get(Embryo_Program *ep, int 
num);
EAPI void embryo_program_error_set(Embryo_Program *ep, int 
error);
@@ -110,7 +110,7 @@
EAPI const char  *embryo_error_string_get(int error);
EAPI int  embryo_data_string_length_get(Embryo_Program *ep, 
Embryo_Cell *str_cell);
EAPI void embryo_data_string_get(Embryo_Program *ep, 
Embryo_Cell *str_cell, char *dst);
-   EAPI void embryo_data_string_set(Embryo_Program *ep, char *src, 
Embryo_Cell *str_cell);
+   EAPI void embryo_data_string_set(Embryo_Program *ep, const char 
*src, Embryo_Cell *str_cell);
EAPI Embryo_Cell *embryo_data_address_get(Embryo_Program *ep, 
Embryo_Cell addr);
EAPI Embryo_Cell  embryo_data_heap_push(Embryo_Program *ep, int cells);
EAPI void embryo_data_heap_pop(Embryo_Program *ep, Embryo_Cell 
down_to);
@@ -120,7 +120,7 @@
EAPI void embryo_program_max_cycle_run_set(Embryo_Program *ep, 
int max);
EAPI int  embryo_program_max_cycle_run_get(Embryo_Program *ep);
EAPI int  embryo_parameter_cell_push(Embryo_Program *ep, 
Embryo_Cell cell);
-   EAPI int  embryo_parameter_string_push(Embryo_Program *ep, char 
*str);
+   EAPI int  embryo_parameter_string_push(Embryo_Program *ep, 
const char *str);
EAPI int  embryo_parameter_cell_array_push(Embryo_Program *ep, 
Embryo_Cell *cells, int num);

 #ifdef  __cplusplus
===
RCS file: /cvs/e/e17/libs/embryo/src/lib/embryo_amx.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- embryo_amx.c7 Jun 2006 23:30:13 -   1.30
+++ embryo_amx.c31 Mar 2007 10:28:20 -  1.31
@@ -371,7 +371,7 @@
  * @ingroup Embryo_Func_Group
  */
 EAPI void
-embryo_program_native_call_add(Embryo_Program *ep, char *name, Embryo_Cell 
(*func) (Embryo_Program *ep, Embryo_Cell *params))
+embryo_program_native_call_add(Embryo_Program *ep, const char *name, 
Embryo_Cell (*func) (Embryo_Program *ep, Embryo_Cell *params))
 {
Embryo_Func_Stub *func_entry;
Embryo_Header*hdr;
@@ -560,7 +560,7 @@
  * @ingroup Embryo_Func_Group
  */
 EAPI Embryo_Function
-embryo_program_function_find(Embryo_Program *ep, char *name)
+embryo_program_function_find(Embryo_Program *ep, const char *name)
 {
intfirst, last, mid, result;
char   pname[sNAMEMAX + 1];
@@ -604,7 +604,7 @@
  * @ingroup Embryo_Public_Variable_Group
  */
 EAPI Embryo_Cell
-embryo_program_variable_find(Embryo_Program *ep, char *name)
+embryo_program_variable_find(Embryo_Program *ep, const char *name)
 {
intfirst, last, mid, result;
char   pname[sNAMEMAX + 1];
@@ -863,7 +863,7 @@
  * @ingroup Embryo_Data_String_Group
  */
 EAPI void
-embryo_data_string_set(Embryo_Program *ep, char *src, Embryo_Cell *str_cell)
+embryo_data_string_set(Embryo_Program *ep, const char *src, Embryo_Cell 
*str_cell)
 {
inti;
Embryo_Header *hdr;
@@ -2272,7 +2272,7 @@
  * 

E CVS: libs/edje tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/lib


Modified Files:
edje_load.c 


Log Message:
remove an unused variable

===
RCS file: /cvs/e/e17/libs/edje/src/lib/edje_load.c,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -3 -r1.97 -r1.98
--- edje_load.c 16 Mar 2007 21:37:57 -  1.97
+++ edje_load.c 31 Mar 2007 10:32:48 -  1.98
@@ -446,7 +446,6 @@
 edje_file_data_get(const char *file, const char *key)
 {
Edje_File *edf;
-   Evas_List *l;
char *str = NULL;
int error_ret = 0;




-
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: libs/edje tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/lib


Modified Files:
edje_calc.c 


Log Message:
fixed some const char*/char* confusion.

===
RCS file: /cvs/e/e17/libs/edje/src/lib/edje_calc.c,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -3 -r1.94 -r1.95
--- edje_calc.c 17 Nov 2006 14:47:30 -  1.94
+++ edje_calc.c 31 Mar 2007 10:33:24 -  1.95
@@ -1067,7 +1067,7 @@
if (ep-calculating  flags)
  {
 #if 1
-   char *axes = NONE, *faxes = NONE;
+   const char *axes = NONE, *faxes = NONE;

if ((ep-calculating  FLAG_X)  
(ep-calculating  FLAG_Y))



-
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: libs/edje tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/bin


Modified Files:
edje_cc.h edje_cc_out.c 


Log Message:
fixed some const char*/char* confusion.

===
RCS file: /cvs/e/e17/libs/edje/src/bin/edje_cc.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- edje_cc.h   12 Oct 2006 05:35:14 -  1.28
+++ edje_cc.h   31 Mar 2007 10:33:23 -  1.29
@@ -15,13 +15,13 @@
 
 struct _New_Object_Handler
 {
-   char *type;
+   const char *type;
void (*func)(void);
 };
 
 struct _New_Statement_Handler
 {
-   char *type;
+   const char *type;
void (*func)(void);
 };
 
===
RCS file: /cvs/e/e17/libs/edje/src/bin/edje_cc_out.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -3 -r1.54 -r1.55
--- edje_cc_out.c   17 Nov 2006 14:47:30 -  1.54
+++ edje_cc_out.c   31 Mar 2007 10:33:23 -  1.55
@@ -45,7 +45,7 @@
 };
 
 static void data_queue_image_pc_lookup(Edje_Part_Collection *pc, char *name, 
int *dest);
-static void data_process_string(Edje_Part_Collection *pc, char *prefix, char 
*s, void (*func)(Edje_Part_Collection *pc, char *name, int *val));
+static void data_process_string(Edje_Part_Collection *pc, const char *prefix, 
char *s, void (*func)(Edje_Part_Collection *pc, char *name, int *val));
 
 Edje_File *edje_file = NULL;
 Evas_List *edje_collections = NULL;
@@ -1008,7 +1008,7 @@
 }
 
 static void
-data_process_string(Edje_Part_Collection *pc, char *prefix, char *s, void 
(*func)(Edje_Part_Collection *pc, char *name, int *val))
+data_process_string(Edje_Part_Collection *pc, const char *prefix, char *s, 
void (*func)(Edje_Part_Collection *pc, char *name, int *val))
 {
char *p;
char *key;



-
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: libs/edje tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/bin


Modified Files:
edje_cc_handlers.c 


Log Message:
hooked up the 'alternate font metrics stuff' in edje_cc.

===
RCS file: /cvs/e/e17/libs/edje/src/bin/edje_cc_handlers.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -3 -r1.71 -r1.72
--- edje_cc_handlers.c  12 Oct 2006 05:35:14 -  1.71
+++ edje_cc_handlers.c  31 Mar 2007 10:53:22 -  1.72
@@ -43,6 +43,7 @@
 static void st_collections_group_parts_part_effect(void);
 static void st_collections_group_parts_part_mouse_events(void);
 static void st_collections_group_parts_part_repeat_events(void);
+static void st_collections_group_parts_part_use_alternate_font_metrics(void);
 static void st_collections_group_parts_part_clip_to_id(void);
 static void st_collections_group_parts_part_dragable_x(void);
 static void st_collections_group_parts_part_dragable_y(void);
@@ -176,6 +177,7 @@
  {collections.group.parts.part.effect, 
st_collections_group_parts_part_effect},
  {collections.group.parts.part.mouse_events, 
st_collections_group_parts_part_mouse_events},
  {collections.group.parts.part.repeat_events, 
st_collections_group_parts_part_repeat_events},
+ {collections.group.parts.part.use_alternate_font_metrics, 
st_collections_group_parts_part_use_alternate_font_metrics},
  {collections.group.parts.part.clip_to, 
st_collections_group_parts_part_clip_to_id},
  {collections.group.parts.part.dragable.x, 
st_collections_group_parts_part_dragable_x},
  {collections.group.parts.part.dragable.y, 
st_collections_group_parts_part_dragable_y},
@@ -893,6 +895,7 @@
ep-type = EDJE_PART_TYPE_IMAGE;
ep-mouse_events = 1;
ep-repeat_events = 0;
+   ep-use_alternate_font_metrics = 0;
ep-clip_to_id = -1;
ep-dragable.confine_id = -1;
ep-dragable.events_id = -1;
@@ -973,6 +976,19 @@
pc = evas_list_data(evas_list_last(edje_collections));
ep = evas_list_data(evas_list_last(pc-parts));
ep-repeat_events = parse_bool(0);
+}
+
+static void
+st_collections_group_parts_part_use_alternate_font_metrics(void)
+{
+   Edje_Part_Collection *pc;
+   Edje_Part *ep;
+
+   check_arg_count(1);
+   
+   pc = evas_list_data(evas_list_last(edje_collections));
+   ep = evas_list_data(evas_list_last(pc-parts));
+   ep-use_alternate_font_metrics = parse_bool(0);
 }
 
 static void



-
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: apps/e maxerba

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
it.po 


Log Message:





-
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: net maxerba

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : maxerba
Project : e_modules
Module  : net

Dir : e_modules/net/po


Modified Files:
it.po 


Log Message:





-
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: libs/ecore doursse

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/m4


Added Files:
ecore_check_module.m4 


Log Message:
use an m4 macro to check all the modules (except evaso_evas engine modules)




-
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: libs/ecore doursse

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:
use an m4 macro to check all the modules (except evaso_evas engine modules)

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -3 -r1.184 -r1.185
--- configure.in30 Mar 2007 19:47:46 -  1.184
+++ configure.in31 Mar 2007 11:11:02 -  1.185
@@ -63,7 +63,7 @@
 requirements_ecore_config=
 requirements_ecore_dbus=
 requirements_ecore_desktop=
-requirements_ecore_directfb=directfb
+requirements_ecore_directfb=
 requirements_ecore_evas=evas
 requirements_ecore_fb=
 requirements_ecore_file=
@@ -89,135 +89,81 @@
 
 AC_SUBST(winsock_libs)
 
-ecore_txt_cflags=
-ecore_txt_libs=
-AC_ARG_ENABLE(ecore-txt,
-  AC_HELP_STRING(
-[--enable-ecore-txt],
-[enable the ecore_txt module. [[default=enabled]]]
-  ), [
-want_ecore_txt=$enableval
-  ], [
-want_ecore_txt=maybe
-  ]
-)
-
 iconv_cflags=
 iconv_libs=
-AC_MSG_CHECKING(for explicit iconv link options)
+have_iconv=no
 AC_ARG_WITH(iconv-link,
   [  --with-iconv-link=ICONV_LINK explicitly specify an iconv link option],
   [
 iconv_libs=$withval
-AC_MSG_RESULT($iconv_libs)
-  ],[
-AC_MSG_RESULT(none)
+have_iconv=yes
   ]
 )
+AC_MSG_CHECKING(for explicit iconv link options)
+AC_MSG_RESULT($iconv_libs)
 
-have_ecore_txt=no
-if test x$want_ecore_txt != xno ; then
-  if test x$iconv_libs = x ; then 
-AC_CHECK_LIB(iconv, libiconv,
+if test x$have_iconv = xno ; then
+  AC_CHECK_LIB(iconv, libiconv,
+[
+ iconv_libs=-liconv
+ have_iconv=yes
+]
+  )
+  
+  if test x$have_iconv != xyes; then
+AC_CHECK_LIB(iconv, iconv,
   [
-iconv_libs=-liconv
-ecore_txt_libs=-lecore_txt $iconv_libs
-have_ecore_txt=yes
+   iconv_libs=-liconv
+   have_iconv=yes
   ]
 )
-  
-if test x$have_ecore_txt != xyes; then
-  AC_CHECK_LIB(iconv, iconv,
-[
-  iconv_libs=-liconv
-  ecore_txt_libs=-lecore_txt $iconv_libs
-  have_ecore_txt=yes
-]
-  )
-fi
-
-if test x$have_ecore_txt != xyes; then
-  AC_CHECK_LIB(c, libiconv,
-[
-  ecore_txt_libs=-lecore_txt $iconv_libs
-  have_ecore_txt=yes
-]
-  )
-fi
-
-if test x$have_ecore_txt != xyes; then
-  AC_CHECK_LIB(c, iconv,
-[
-  ecore_txt_libs=-lecore_txt $iconv_libs
-  have_ecore_txt=yes
-]
-  )
-fi
-  else
-ecore_txt_libs=-lecore_txt $iconv_libs
-have_ecore_txt=yes
   fi
-fi
 
-dnl we already did the tests, now display the result
-AC_MSG_CHECKING(whether ecore_txt module is to be built)
-AC_MSG_RESULT($have_ecore_txt)
+  if test x$have_ecore_txt != xyes; then
+AC_CHECK_LIB(c, libiconv,
+  [
+   have_iconv=yes
+  ]
+)
+  fi
 
-if test x$have_ecore_txt = xyes ; then
-  AC_DEFINE(BUILD_ECORE_TXT, 1, [Build Ecore_Txt Module])
+  if test x$have_ecore_txt != xyes; then
+AC_CHECK_LIB(c, iconv,
+  [
+   have_iconv=yes
+  ]
+)
+  fi
 fi
 
 AC_SUBST(iconv_cflags)
 AC_SUBST(iconv_libs)
 
-AC_SUBST(ecore_txt_cflags)
-AC_SUBST(ecore_txt_libs)
-
-have_ecore_x=no;
-ecore_x_cflags=;
-ecore_x_libs=;
+ECORE_CHECK_MODULE([Txt], [yes], [$have_iconv],
+  [ecore_txt_libs=$ecore_txt_libs $iconv_libs])
 
+have_x=no
 x_dir=;
 x_includes=;
 x_cflags=;
 x_libs=;
-
-AC_ARG_ENABLE(ecore-x,
-  AC_HELP_STRING(
-[--enable-ecore-x],
-[enable the ecore_x module. [[default=enabled]]]
-  ), [
-want_ecore_x=$enableval
-  ], [
-want_ecore_x=yes
+AC_PATH_XTRA
+AC_CHECK_HEADER(X11/X.h,
+  [
+   have_x=yes
+   x_dir=${x_dir:-/usr/X11R6}
+   x_cflags=${x_cflags:--I${x_includes:-$x_dir/include}}
+   x_libs=${x_libs:--L${x_libraries:-$x_dir/lib}} -lX11 -lXext
   ]
 )
 
-AC_MSG_CHECKING(whether ecore_x module is to be built)
-
-if test x$have_ecore_txt = xyes; then
-  AC_MSG_RESULT(yes)
-else
-  AC_MSG_RESULT([no (ecore_txt not enabled)])
-  want_ecore_x=no
-fi
-
-if test x$want_ecore_x = xyes; then
-  AC_PATH_XTRA
-  AC_CHECK_HEADER(X11/X.h, [
-  AC_DEFINE(BUILD_ECORE_X, 1, [Build Ecore_X Module])
-  have_ecore_x=yes
-  x_dir=${x_dir:-/usr/X11R6}
-  x_cflags=${x_cflags:--I${x_includes:-$x_dir/include}}
-  x_libs=${x_libs:--L${x_libraries:-$x_dir/lib}} -lX11 -lXext
-  ecore_x_libs=-lecore_x $x_libs;
-  ])
-fi
-
 AC_SUBST(x_cflags)
 AC_SUBST(x_includes)
 AC_SUBST(x_libs)
 
+ECORE_CHECK_MODULE([X], [yes], [$have_x],
+  [ecore_x_libs=$ecore_x_libs $x_libs])
+
 if test x$have_ecore_x = xyes; then
   Xcursor_libs=
   Xcursor_cflags=
@@ -268,146 +214,43 @@
   requirements_ecore_evas=$requirements_ecore_evas ecore-x
 fi
 
-AC_SUBST(ecore_x_cflags)
-AC_SUBST(ecore_x_libs)
+ECORE_CHECK_MODULE([Job], [yes])
 
-
-have_ecore_job=no;
-ecore_job_cflags=;
-ecore_job_libs=;
-

E CVS: apps/entrance raster

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/src/client


Modified Files:
Makefile.am entrance_login.c 


Log Message:


fix entrance so it.. works again. back to lib dir (good reasons why too)

===
RCS file: /cvs/e/e17/apps/entrance/src/client/Makefile.am,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- Makefile.am 13 Mar 2007 23:19:39 -  1.22
+++ Makefile.am 31 Mar 2007 13:07:12 -  1.23
@@ -4,10 +4,12 @@
 INCLUDES = @EDJE_CFLAGS@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ \
 @ESMART_CFLAGS@
 
+entrancelibdir = $(libdir)/$(PACKAGE)
+
 #bin_PROGRAMS = entrance entrance_edit
 bin_PROGRAMS = entrance
 
-sbin_PROGRAMS = entrance_login
+entrancelib_PROGRAMS = entrance_login
 
 entrance_SOURCES = \
entrance_auth.c entrance_auth.h \
===
RCS file: /cvs/e/e17/apps/entrance/src/client/entrance_login.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- entrance_login.c26 Oct 2006 08:05:55 -  1.7
+++ entrance_login.c31 Mar 2007 13:07:12 -  1.8
@@ -58,7 +58,11 @@
if (argc != 2)
 #endif
{
-  syslog(LOG_CRIT, Wrong number of arguments: %d!, argc);
+#ifdef HAVE_PAM
+  syslog(LOG_CRIT, Wrong number of arguments: %d - expected 4!, argc);
+#else
+  syslog(LOG_CRIT, Wrong number of arguments: %d - expected 2!, argc);
+#endif  
   return 0;
}
 



-
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: apps/entrance raster

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
entrance.spec.in 


Log Message:


fix entrance so it.. works again. back to lib dir (good reasons why too)

===
RCS file: /cvs/e/e17/apps/entrance/entrance.spec.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- entrance.spec.in13 Mar 2007 23:19:39 -  1.6
+++ entrance.spec.in31 Mar 2007 13:07:12 -  1.7
@@ -49,7 +49,7 @@
 %{_bindir}/entrance*
 %{_includedir}/*.h
 %{_libdir}/libentrance*
-%{_sbindir}/entrance*
+%{_libdir}/entrance
 %{_datadir}/%{name}
 %{_var}/run/%{name}
 



-
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: apps/entrance raster

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/debian


Modified Files:
entrance.install 


Log Message:


fix entrance so it.. works again. back to lib dir (good reasons why too)

===
RCS file: /cvs/e/e17/apps/entrance/debian/entrance.install,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- entrance.install17 Mar 2007 00:30:16 -  1.2
+++ entrance.install31 Mar 2007 13:07:12 -  1.3
@@ -5,4 +5,4 @@
 debian/tmp/usr/bin/entrance
 debian/tmp/usr/bin/entrance_edit
 debian/tmp/usr/bin/entrance_wrapper
-debian/tmp/usr/sbin/*
+debian/tmp/usr/lib/entrance/*



-
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: libs/ecore doursse

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/m4


Modified Files:
ecore_check_module.m4 


Log Message:
AC_DEFINE removed by error

===
RCS file: /cvs/e/e17/libs/ecore/m4/ecore_check_module.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ecore_check_module.m4   31 Mar 2007 11:11:02 -  1.1
+++ ecore_check_module.m4   31 Mar 2007 14:35:51 -  1.2
@@ -1,4 +1,4 @@
-dnl use: AC_CHECK_ECORE_MODULE(Foo, default-enabled[, dependancy[, 
ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]])
+dnl use: ECORE_CHECK_MODULE(Foo, default-enabled[, dependancy[, 
ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]])
 AC_DEFUN([ECORE_CHECK_MODULE],
 [
 pushdef([UP], translit([$1], [a-z], [A-Z]))dnl
@@ -32,6 +32,7 @@
 
 if test x$want_ecore_[]DOWN = xyes ; then
   if test x$3 = x -o x$3 = xyes ; then
+AC_DEFINE(BUILD_ECORE_[]UP, 1, [Build Ecore_$1 Module])
 have_ecore_[]DOWN=yes
 ecore_[]DOWN[]_libs=-lecore_[]DOWN
 AC_MSG_RESULT([yes])



-
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: libs/ecore doursse

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:
rename AC_CHECK_X_EXTENSION into ECORE_CHECK_X_EXTENSION

===
RCS file: /cvs/e/e17/libs/ecore/configure.in,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -3 -r1.185 -r1.186
--- configure.in31 Mar 2007 11:11:02 -  1.185
+++ configure.in31 Mar 2007 14:55:15 -  1.186
@@ -199,17 +199,17 @@
   AC_SUBST(Xcursor_cflags)
   AC_SUBST(Xcursor_libs)
   
-  AC_CHECK_X_EXTENSION([Xdamage], [Xdamage.h], [Xdamage], [XDamageSubtract])
-  AC_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xdpms], [DPMSQueryExtension])
+  ECORE_CHECK_X_EXTENSION([Xdamage], [Xdamage.h], [Xdamage], [XDamageSubtract])
+  ECORE_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xdpms], [DPMSQueryExtension])
   if test x$use_xdpms = xno ; then
-AC_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xext], [DPMSQueryExtension])
+ECORE_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xext], [DPMSQueryExtension])
   fi
-  AC_CHECK_X_EXTENSION([Xfixes], [Xfixes.h], [Xfixes], [XFixesExpandRegion])
-  AC_CHECK_X_EXTENSION([Xinerama], [Xinerama.h], [Xinerama], 
[XineramaQueryScreens])
-  AC_CHECK_X_EXTENSION([Xprint], [Print.h], [Xp], [XpQueryScreens])
-  AC_CHECK_X_EXTENSION([Xrandr], [Xrandr.h], [Xrandr], [XRRSizes])
-  AC_CHECK_X_EXTENSION([Xrender], [Xrender.h], [Xrender], 
[XRenderFindVisualFormat])
-  AC_CHECK_X_EXTENSION([Xss], [scrnsaver.h], [Xss], [XScreenSaverSelectInput])
+  ECORE_CHECK_X_EXTENSION([Xfixes], [Xfixes.h], [Xfixes], [XFixesExpandRegion])
+  ECORE_CHECK_X_EXTENSION([Xinerama], [Xinerama.h], [Xinerama], 
[XineramaQueryScreens])
+  ECORE_CHECK_X_EXTENSION([Xprint], [Print.h], [Xp], [XpQueryScreens])
+  ECORE_CHECK_X_EXTENSION([Xrandr], [Xrandr.h], [Xrandr], [XRRSizes])
+  ECORE_CHECK_X_EXTENSION([Xrender], [Xrender.h], [Xrender], 
[XRenderFindVisualFormat])
+  ECORE_CHECK_X_EXTENSION([Xss], [scrnsaver.h], [Xss], 
[XScreenSaverSelectInput])
 
   requirements_ecore_evas=$requirements_ecore_evas ecore-x
 fi



-
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: libs/ecore doursse

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/m4


Modified Files:
check_x_extension.m4 


Log Message:
rename AC_CHECK_X_EXTENSION into ECORE_CHECK_X_EXTENSION

===
RCS file: /cvs/e/e17/libs/ecore/m4/check_x_extension.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- check_x_extension.m415 Mar 2007 00:25:53 -  1.1
+++ check_x_extension.m431 Mar 2007 14:55:16 -  1.2
@@ -1,5 +1,5 @@
-dnl use: ECORE_CHECK_X_EXT(Foo, header, lib, func)
-AC_DEFUN([AC_CHECK_X_EXTENSION],
+dnl use: ECORE_CHECK_X_EXTENSION(Foo, header, lib, func)
+AC_DEFUN([ECORE_CHECK_X_EXTENSION],
 [
 pushdef([UP], translit([$1], [a-z], [A-Z]))dnl
 pushdef([DOWN], translit([$1], [A-Z], [a-z]))dnl



-
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: libs/evas tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
.cvsignore Makefile.am configure.in 
Added Files:
evas-cairo-x11.pc.in evas-directfb.pc.in 
evas-framebuffer.pc.in evas-glitz-x11.pc.in 
evas-opengl-x11.pc.in evas-software-buffer.pc.in 
evas-software-qtopia.pc.in evas-software-x11.pc.in 
evas-software-xcb.pc.in evas-xrender-x11.pc.in 
evas-xrender-xcb.pc.in 


Log Message:
added per-engine pc files

===
RCS file: /cvs/e/e17/libs/evas/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- .cvsignore  24 Aug 2005 16:03:20 -  1.10
+++ .cvsignore  31 Mar 2007 16:07:43 -  1.11
@@ -11,7 +11,7 @@
 libtool
 config.status
 evas-config
-evas.pc
+*.pc
 config.h
 stamp-h1
 evas_docs.tar.gz
===
RCS file: /cvs/e/e17/libs/evas/Makefile.am,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -3 -r1.36 -r1.37
--- Makefile.am 28 Oct 2006 07:04:16 -  1.36
+++ Makefile.am 31 Mar 2007 16:07:43 -  1.37
@@ -8,6 +8,17 @@
   stamp-h.in build-stamp configure-stamp depcomp \
   evas_docs.tar.gz evas.c \
   README \
+  evas-cairo-x11.pc
+  evas-directfb.pc
+  evas-framebuffer.pc
+  evas-glitz-x11.pc
+  evas-opengl-x11.pc
+  evas-software-buffer.pc
+  evas-software-qtopia.pc
+  evas-software-x11.pc
+  evas-software-xcb.pc
+  evas-xrender-x11.pc
+  evas-xrender-xcb.pc
   evas.pc \
   evas.spec \
   debian/changelog
@@ -18,6 +29,18 @@
  Doxyfile \
 README.in README \
 evas.pc.in \
+evas-cairo-x11.pc
+evas-directfb.pc
+evas-framebuffer.pc
+evas-glitz-x11.pc
+evas-opengl-x11.pc
+evas-software-buffer.pc
+evas-software-qtopia.pc
+evas-software-x11.pc
+evas-software-xcb.pc
+evas-xrender-x11.pc
+evas-xrender-xcb.pc
+evas.pc \
 evas.spec.in evas.spec \
 debian/changelog \
 debian/changelog.in \
@@ -48,5 +71,52 @@
 debian/libevas0.install \
 debian/rules
 
+if BUILD_ENGINE_SOFTWARE_X11
+psoftwarex11 = evas-software-x11.pc
+endif
+
+if BUILD_ENGINE_SOFTWARE_XCB
+psoftwarexcb = evas-software-xcb.pc
+endif
+
+if BUILD_ENGINE_DIRECTFB
+pdirectfb = evas-directfb.pc
+endif
+
+if BUILD_ENGINE_FB
+pframebuffer = evas-framebuffer.pc
+endif
+
+if BUILD_ENGINE_GLITZ_X11
+pglitzx11 = evas-glitz-x11.pc
+endif
+
+if BUILD_ENGINE_BUFFER
+psoftwarebuffer = evas-software-buffer.pc
+endif
+
+if BUILD_ENGINE_SOFTWARE_QTOPIA
+psoftwareqtopia = evas-software-qtopia.pc
+endif
+
+if BUILD_ENGINE_GL_X11
+popenglx11 = evas-opengl-x11.pc
+endif
+
+if BUILD_ENGINE_CAIRO_X11
+pcairox11 = evas-cairo-x11.pc
+endif
+
+if BUILD_ENGINE_XRENDER_X11
+pxrenderx11 = evas-xrender-x11.pc
+endif
+
+if BUILD_ENGINE_XRENDER_XCB
+pxrenderxcb = evas-xrender-xcb.pc
+endif
+
 pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = evas.pc
+pkgconfig_DATA = \
+   evas.pc $(psoftwarex11) $(psoftwarexcb) $(pdirectfb) $(pframebuffer) \
+   $(psoftwarebuffer) $(psoftwareqtopia) $(popenglx11) $(pcairox11) \
+   $(pxrenderx11) $(pglitzx11)
===
RCS file: /cvs/e/e17/libs/evas/configure.in,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -3 -r1.211 -r1.212
--- configure.in23 Mar 2007 22:26:26 -  1.211
+++ configure.in31 Mar 2007 16:07:43 -  1.212
@@ -1919,6 +1919,17 @@
 
 AC_OUTPUT([
 Makefile
+evas-cairo-x11.pc
+evas-directfb.pc
+evas-framebuffer.pc
+evas-glitz-x11.pc
+evas-opengl-x11.pc
+evas-software-buffer.pc
+evas-software-qtopia.pc
+evas-software-x11.pc
+evas-software-xcb.pc
+evas-xrender-x11.pc
+evas-xrender-xcb.pc
 evas.pc
 src/Makefile
 src/lib/Makefile



-
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: libs/engrave tilman

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave


Modified Files:
engrave.pc.in 


Log Message:
fixed engrave's includedir. spotted by Gustavo Sverzut Barbieri.

===
RCS file: /cvs/e/e17/libs/engrave/engrave.pc.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- engrave.pc.in   21 Mar 2007 17:24:06 -  1.1
+++ engrave.pc.in   31 Mar 2007 16:34:01 -  1.2
@@ -1,7 +1,7 @@
 [EMAIL PROTECTED]@
 [EMAIL PROTECTED]@
 [EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@/engrave
 
 Name: engrave
 Description: An Edje editing library



-
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: apps/entrance mej

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/src/client


Modified Files:
Makefile.am 


Log Message:
Sat Mar 31 13:27:09 2007Michael Jennings (mej)

The FHS specifies superuser binaries go in /sbin, NOT /usr/lib.
--

===
RCS file: /cvs/e/e17/apps/entrance/src/client/Makefile.am,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- Makefile.am 31 Mar 2007 13:07:12 -  1.23
+++ Makefile.am 31 Mar 2007 17:27:11 -  1.24
@@ -4,12 +4,10 @@
 INCLUDES = @EDJE_CFLAGS@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ \
 @ESMART_CFLAGS@
 
-entrancelibdir = $(libdir)/$(PACKAGE)
-
 #bin_PROGRAMS = entrance entrance_edit
 bin_PROGRAMS = entrance
 
-entrancelib_PROGRAMS = entrance_login
+sbin_PROGRAMS = entrance_login
 
 entrance_SOURCES = \
entrance_auth.c entrance_auth.h \



-
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: apps/entrance mej

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
entrance.spec.in 


Log Message:
Sat Mar 31 13:27:09 2007Michael Jennings (mej)

The FHS specifies superuser binaries go in /sbin, NOT /usr/lib.
--

===
RCS file: /cvs/e/e17/apps/entrance/entrance.spec.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- entrance.spec.in31 Mar 2007 13:07:12 -  1.7
+++ entrance.spec.in31 Mar 2007 17:27:11 -  1.8
@@ -49,7 +49,7 @@
 %{_bindir}/entrance*
 %{_includedir}/*.h
 %{_libdir}/libentrance*
-%{_libdir}/entrance
+%{_sbindir}/entrance*
 %{_datadir}/%{name}
 %{_var}/run/%{name}
 



-
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: apps/entrance mej

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/debian


Modified Files:
entrance.install 


Log Message:
Sat Mar 31 13:27:09 2007Michael Jennings (mej)

The FHS specifies superuser binaries go in /sbin, NOT /usr/lib.
--

===
RCS file: /cvs/e/e17/apps/entrance/debian/entrance.install,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- entrance.install31 Mar 2007 13:07:12 -  1.3
+++ entrance.install31 Mar 2007 17:27:11 -  1.4
@@ -5,4 +5,4 @@
 debian/tmp/usr/bin/entrance
 debian/tmp/usr/bin/entrance_edit
 debian/tmp/usr/bin/entrance_wrapper
-debian/tmp/usr/lib/entrance/*
+debian/tmp/usr/sbin/*



-
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: equate pfritz

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : misc
Module  : equate

Dir : misc/equate/src


Modified Files:
gui.c 


Log Message:
let it compile again, thanks to João Vale

===
RCS file: /cvs/e/misc/equate/src/gui.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- gui.c   28 Sep 2006 22:11:15 -  1.49
+++ gui.c   31 Mar 2007 19:25:20 -  1.50
@@ -176,16 +176,16 @@
 
ev = ev_data;
 
-   if (ev-keyname  !strcmp(ev-keyname, q))
+   if (ev-base.keyname  !strcmp(ev-base.keyname, q))
   equate_quit();
else
-  if ((!strcmp(ev-keyname, Enter) || !strcmp(ev-keyname, KP_Enter) ||
-   !strcmp(ev-keyname, Return) || !strcmp(ev-keyname, 
KP_Return)))
+  if ((!strcmp(ev-base.keyname, Enter) || !strcmp(ev-base.keyname, 
KP_Enter) ||
+   !strcmp(ev-base.keyname, Return) || !strcmp(ev-base.keyname, 
KP_Return)))
   calc_exec();
-   else if (!strcmp(ev-keyname, Escape))
+   else if (!strcmp(ev-base.keyname, Escape))
   calc_clear();
else
-  do_key(ev-keyname, EWL_CALLBACK_MOUSE_DOWN);
+  do_key(ev-base.keyname, EWL_CALLBACK_MOUSE_DOWN);
 }
 
 void
@@ -194,7 +194,7 @@
Ewl_Event_Key_Up *ev;
 
ev = ev_data;
-   do_key(ev-keyname, EWL_CALLBACK_MOUSE_UP);
+   do_key(ev-base.keyname, EWL_CALLBACK_MOUSE_UP);
 }
 
 int



-
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: apps/e devilhorns

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_dpms.c 


Log Message:
Run the config_save first before we call dpms_init because dpms_init reads
the e_config variables and we want to be sure it is reading current values.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_dpms.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_int_config_dpms.c 17 Mar 2007 10:26:48 -  1.8
+++ e_int_config_dpms.c 31 Mar 2007 21:24:58 -  1.9
@@ -161,10 +161,9 @@
e_config-dpms_standby_timeout = cfdata-standby_timeout * 60;
e_config-dpms_suspend_timeout = cfdata-suspend_timeout * 60;
e_config-dpms_off_timeout = cfdata-off_timeout * 60;
-   
-   e_dpms_init();
- 
+
e_config_save_queue();
+   e_dpms_init();
return 1;
 }
 



-
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: mail devilhorns

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
autogen.sh 


Log Message:
Add autopoint for mail module.

===
RCS file: /cvs/e/e_modules/mail/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- autogen.sh  26 Aug 2006 19:27:18 -  1.2
+++ autogen.sh  31 Mar 2007 22:14:18 -  1.3
@@ -5,6 +5,7 @@
 
 touch README
 
+echo Running autopoint... ; autopoint -f || :
 echo Running aclocal... ; aclocal $ACLOCAL_FLAGS || exit 1
 echo Running autoheader... ; autoheader || exit 1
 echo Running autoconf... ; autoconf || exit 1



-
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: mixer devilhorns

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mixer

Dir : e_modules/mixer


Modified Files:
autogen.sh 


Log Message:
Add autopoint for mixer module.

===
RCS file: /cvs/e/e_modules/mixer/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- autogen.sh  12 Oct 2006 18:29:04 -  1.2
+++ autogen.sh  31 Mar 2007 22:14:42 -  1.3
@@ -3,6 +3,7 @@
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
+echo Running autopoint... ; autopoint -f || :
 echo Running aclocal... ; aclocal $ACLOCAL_FLAGS || exit 1
 echo Running autoheader... ; autoheader || exit 1
 echo Running autoconf... ; autoconf || exit 1



-
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: proto davemds

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : davemds
Project : e17
Module  : proto

Dir : e17/proto/edje_editor/src/bin


Modified Files:
callbacks.c interface.c 


Log Message:
Etk signals renamed.

===
RCS file: /cvs/e/e17/proto/edje_editor/src/bin/callbacks.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- callbacks.c 13 Mar 2007 05:27:11 -  1.18
+++ callbacks.c 31 Mar 2007 23:27:46 -  1.19
@@ -913,7 +913,7 @@
if (UI_ColorWin) etk_widget_show_all(UI_ColorWin);
current_color_object = (int)data;
 
-   etk_signal_block(color_changed, ETK_OBJECT(UI_ColorPicker), 
ETK_CALLBACK(on_ColorDialog_change));
+   etk_signal_block(color-changed, ETK_OBJECT(UI_ColorPicker), 
ETK_CALLBACK(on_ColorDialog_change));
switch (current_color_object)
{
   case COLOR_OBJECT_RECT:
@@ -937,7 +937,7 @@
  etk_colorpicker_current_color_set(ETK_COLORPICKER(UI_ColorPicker), c);
  break;
}
-   etk_signal_unblock(color_changed, ETK_OBJECT(UI_ColorPicker), 
ETK_CALLBACK(on_ColorDialog_change));
+   etk_signal_unblock(color-changed, ETK_OBJECT(UI_ColorPicker), 
ETK_CALLBACK(on_ColorDialog_change));
 }
 
 void
===
RCS file: /cvs/e/e17/proto/edje_editor/src/bin/interface.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- interface.c 13 Mar 2007 05:27:11 -  1.21
+++ interface.c 31 Mar 2007 23:27:46 -  1.22
@@ -158,7 +158,7 @@
Etk_Combobox_Item *ComboItem;
 
//Stop signal propagation
-   etk_signal_disconnect(active_item_changed, ETK_OBJECT(UI_FontComboBox), 
ETK_CALLBACK(on_FontComboBox_changed));
+   etk_signal_disconnect(active-item-changed, ETK_OBJECT(UI_FontComboBox), 
ETK_CALLBACK(on_FontComboBox_changed));
 
printf(Populate Fonts Combo\n);
 
@@ -174,7 +174,7 @@
}
 
//Renable  signal propagation
-   etk_signal_connect(active_item_changed, ETK_OBJECT(UI_FontComboBox), 
ETK_CALLBACK(on_FontComboBox_changed), NULL);
+   etk_signal_connect(active-item-changed, ETK_OBJECT(UI_FontComboBox), 
ETK_CALLBACK(on_FontComboBox_changed), NULL);
 
 }
 
@@ -188,7 +188,7 @@
 
 
//Stop signal propagation
-   etk_signal_disconnect(active_item_changed, ETK_OBJECT(UI_ImageComboBox), 
ETK_CALLBACK(on_ImageComboBox_changed));
+   etk_signal_disconnect(active-item-changed, ETK_OBJECT(UI_ImageComboBox), 
ETK_CALLBACK(on_ImageComboBox_changed));
 
printf(Populate Images Combobox\n);
 
@@ -204,7 +204,7 @@
}
 
//Renable  signal propagation
-   etk_signal_connect(active_item_changed, ETK_OBJECT(UI_ImageComboBox), 
ETK_CALLBACK(on_ImageComboBox_changed), NULL);
+   etk_signal_connect(active-item-changed, ETK_OBJECT(UI_ImageComboBox), 
ETK_CALLBACK(on_ImageComboBox_changed), NULL);
 }
 
 void
@@ -216,10 +216,10 @@
char buf[20];
 
//Stop signal propagation
-   etk_signal_disconnect(active_item_changed, 
ETK_OBJECT(UI_Rel1ToXComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
-   etk_signal_disconnect(active_item_changed, 
ETK_OBJECT(UI_Rel1ToYComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
-   etk_signal_disconnect(active_item_changed, 
ETK_OBJECT(UI_Rel2ToXComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
-   etk_signal_disconnect(active_item_changed, 
ETK_OBJECT(UI_Rel2ToYComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
+   etk_signal_disconnect(active-item-changed, 
ETK_OBJECT(UI_Rel1ToXComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
+   etk_signal_disconnect(active-item-changed, 
ETK_OBJECT(UI_Rel1ToYComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
+   etk_signal_disconnect(active-item-changed, 
ETK_OBJECT(UI_Rel2ToXComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
+   etk_signal_disconnect(active-item-changed, 
ETK_OBJECT(UI_Rel2ToYComboBox), ETK_CALLBACK(on_RelToComboBox_changed));
 
 
etk_combobox_clear(ETK_COMBOBOX(UI_Rel1ToXComboBox));
@@ -258,21 +258,21 @@
   }
}
//Reenable signal propagation
-   etk_signal_connect(active_item_changed, ETK_OBJECT(UI_Rel1ToXComboBox), 
ETK_CALLBACK(on_RelToComboBox_changed), (void *)REL1X_SPINNER);
-   etk_signal_connect(active_item_changed, ETK_OBJECT(UI_Rel1ToYComboBox), 
ETK_CALLBACK(on_RelToComboBox_changed), (void *)REL1Y_SPINNER);
-   etk_signal_connect(active_item_changed, ETK_OBJECT(UI_Rel2ToXComboBox), 
ETK_CALLBACK(on_RelToComboBox_changed), (void *)REL2X_SPINNER);
-   etk_signal_connect(active_item_changed, ETK_OBJECT(UI_Rel2ToYComboBox), 
ETK_CALLBACK(on_RelToComboBox_changed), (void *)REL2Y_SPINNER);
+   etk_signal_connect(active-item-changed, ETK_OBJECT(UI_Rel1ToXComboBox), 
ETK_CALLBACK(on_RelToComboBox_changed), (void *)REL1X_SPINNER);
+   etk_signal_connect(active-item-changed, ETK_OBJECT(UI_Rel1ToYComboBox), 
ETK_CALLBACK(on_RelToComboBox_changed), (void *)REL1Y_SPINNER);
+   etk_signal_connect(active-item-changed, ETK_OBJECT(UI_Rel2ToXComboBox), 

E CVS: proto davemds

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : davemds
Project : e17
Module  : proto

Dir : e17/proto/edje_editor/src/bin


Modified Files:
interface.c 


Log Message:
Etk Table api change

===
RCS file: /cvs/e/e17/proto/edje_editor/src/bin/interface.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- interface.c 31 Mar 2007 23:27:46 -  1.22
+++ interface.c 31 Mar 2007 23:45:15 -  1.23
@@ -1357,7 +1357,7 @@
UI_ImageFrame = etk_frame_new(Image);
 
//table
-   table = etk_table_new (5, 4, FALSE);
+   table = etk_table_new (5, 4, ETK_TABLE_NOT_HOMOGENEOUS);
etk_container_add(ETK_CONTAINER(UI_ImageFrame), table);
 
label = etk_label_new(Image);
@@ -1453,7 +1453,7 @@
etk_container_add(ETK_CONTAINER(UI_TextFrame), vbox);
 
//table
-   table = etk_table_new (5, 4, FALSE);
+   table = etk_table_new (5, 3, ETK_TABLE_NOT_HOMOGENEOUS);
etk_box_append(ETK_BOX(vbox), table, ETK_BOX_START, ETK_BOX_EXPAND_FILL, 0);
 
label = etk_label_new(Text);
@@ -1524,9 +1524,6 @@
etk_combobox_item_data_set (ComboItem, 
(void*)ENGRAVE_TEXT_EFFECT_OUTLINE_SOFT_SHADOW);
etk_table_attach_default (ETK_TABLE(table),UI_EffectComboBox, 1, 4, 2,2);
 
-   label = etk_label_new(Alpha);
-   etk_table_attach_default (ETK_TABLE(table),label, 0, 0, 3,3);
-
//hbox
hbox = etk_hbox_new(ETK_FALSE, 10);
etk_box_append(ETK_BOX(vbox), hbox, ETK_BOX_START, ETK_BOX_EXPAND_FILL, 0);
@@ -1756,12 +1753,12 @@
UI_PartFrame = etk_frame_new(Part property);
 
//table
-   table = etk_table_new (2, 3, FALSE);
+   table = etk_table_new (2, 3, ETK_TABLE_NOT_HOMOGENEOUS);
etk_container_add(ETK_CONTAINER(UI_PartFrame), table);
 
//PartNameEntry
label = etk_label_new(bName/b);
-   etk_table_attach (ETK_TABLE(table), label, 0, 0, 0, 0,0,0,ETK_TABLE_NONE);
+   etk_table_attach (ETK_TABLE(table), label, 0, 0, 0, 0,ETK_TABLE_NONE,0,0);
UI_PartNameEntry = etk_entry_new();
etk_table_attach_default (ETK_TABLE(table),UI_PartNameEntry, 1, 1, 0, 0);
 
@@ -1793,7 +1790,7 @@
UI_ProgramFrame = etk_frame_new(Program);
 
//table
-   table = etk_table_new (4, 10, FALSE);
+   table = etk_table_new (4, 10, ETK_TABLE_NOT_HOMOGENEOUS);
etk_container_add(ETK_CONTAINER(UI_ProgramFrame), table);
 
//UI_ProgramEntry



-
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: photo kiwi

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kiwi
Project : e_modules
Module  : photo

Dir : e_modules/photo


Modified Files:
autogen.sh 


Log Message:
Add autopoint for Photo module

===
RCS file: /cvs/e/e_modules/photo/autogen.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- autogen.sh  7 Jul 2006 17:15:24 -   1.1
+++ autogen.sh  31 Mar 2007 23:53:29 -  1.2
@@ -8,6 +8,7 @@
src/Makefile src/Makefile.in \
src/module/Makefile src/module/Makefile.in
 
+echo Running autopoint... ; autopoint -f || :
 echo Running aclocal... ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo Running autoheader... ; autoheader || exit 1
 echo Running autoconf... ; autoconf || exit 1



-
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: alarm kiwi

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kiwi
Project : e_modules
Module  : alarm

Dir : e_modules/alarm


Modified Files:
autogen.sh 


Log Message:
Add autopoint for Alarm module

===
RCS file: /cvs/e/e_modules/alarm/autogen.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- autogen.sh  8 Nov 2006 10:06:38 -   1.1
+++ autogen.sh  31 Mar 2007 23:54:39 -  1.2
@@ -5,6 +5,7 @@
 
 touch README
 
+echo Running autopoint... ; autopoint -f || :
 echo Running aclocal... ; aclocal $ACLOCAL_FLAGS || exit 1
 echo Running autoheader... ; autoheader || exit 1
 echo Running autoconf... ; autoconf || exit 1



-
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: apps/entrance raster

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/src/client


Modified Files:
Makefile.am 


Log Message:


no - read the code. this is not a superuser binary. it is never meant to be
run by a person. it is ONLY EVER used by entrance itself to reduce its memory
footprint while a user is logged in. it is thus an internal tool only for a
program. also that tool is executed directly by the code given a path - and
moving this binary in the build means the code fails RUNTIME as the path
doesn't match. see my email. this breaks entrance.

===
RCS file: /cvs/e/e17/apps/entrance/src/client/Makefile.am,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- Makefile.am 31 Mar 2007 17:27:11 -  1.24
+++ Makefile.am 1 Apr 2007 00:28:57 -   1.25
@@ -4,10 +4,12 @@
 INCLUDES = @EDJE_CFLAGS@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ \
 @ESMART_CFLAGS@
 
+entrancelibdir = $(libdir)/$(PACKAGE)
+
 #bin_PROGRAMS = entrance entrance_edit
 bin_PROGRAMS = entrance
 
-sbin_PROGRAMS = entrance_login
+entrancelib_PROGRAMS = entrance_login
 
 entrance_SOURCES = \
entrance_auth.c entrance_auth.h \



-
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: apps/entrance raster

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
entrance.spec.in 


Log Message:


no - read the code. this is not a superuser binary. it is never meant to be
run by a person. it is ONLY EVER used by entrance itself to reduce its memory
footprint while a user is logged in. it is thus an internal tool only for a
program. also that tool is executed directly by the code given a path - and
moving this binary in the build means the code fails RUNTIME as the path
doesn't match. see my email. this breaks entrance.

===
RCS file: /cvs/e/e17/apps/entrance/entrance.spec.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- entrance.spec.in31 Mar 2007 17:27:11 -  1.8
+++ entrance.spec.in1 Apr 2007 00:28:57 -   1.9
@@ -49,7 +49,7 @@
 %{_bindir}/entrance*
 %{_includedir}/*.h
 %{_libdir}/libentrance*
-%{_sbindir}/entrance*
+%{_libdir}/entrance
 %{_datadir}/%{name}
 %{_var}/run/%{name}
 



-
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: apps/entrance raster

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/debian


Modified Files:
entrance.install 


Log Message:


no - read the code. this is not a superuser binary. it is never meant to be
run by a person. it is ONLY EVER used by entrance itself to reduce its memory
footprint while a user is logged in. it is thus an internal tool only for a
program. also that tool is executed directly by the code given a path - and
moving this binary in the build means the code fails RUNTIME as the path
doesn't match. see my email. this breaks entrance.

===
RCS file: /cvs/e/e17/apps/entrance/debian/entrance.install,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- entrance.install31 Mar 2007 17:27:11 -  1.4
+++ entrance.install1 Apr 2007 00:28:57 -   1.5
@@ -5,4 +5,4 @@
 debian/tmp/usr/bin/entrance
 debian/tmp/usr/bin/entrance_edit
 debian/tmp/usr/bin/entrance_wrapper
-debian/tmp/usr/sbin/*
+debian/tmp/usr/lib/entrance/*



-
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: screenshot devilhorns

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
e_mod_main.c 


Log Message:
Use E_FREE to free things created via E_NEW.
Fix some EEK messages on stringshare del.
Fix removing event_handler that was already removed.

===
RCS file: /cvs/e/e_modules/screenshot/e_mod_main.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -3 -r1.71 -r1.72
--- e_mod_main.c30 Mar 2007 20:40:29 -  1.71
+++ e_mod_main.c1 Apr 2007 01:19:38 -   1.72
@@ -111,16 +111,13 @@
   inst = gcc-data;
   ss = inst-ss;
 
-  if (inst-filename)
-evas_stringshare_del (inst-filename);
   ss_config-instances = evas_list_remove (ss_config-instances, inst);
 
   evas_object_event_callback_del (ss-ss_obj, EVAS_CALLBACK_MOUSE_DOWN,
  _ss_cb_mouse_down);
 
   _ss_free (ss);
-  free (inst);
-  inst = NULL;
+  E_FREE(inst);
 }
 
 static void
@@ -374,9 +371,6 @@
   ss_config-menu = NULL;
 }
 
-  if (ss_config-exe_exit_handler)
-ecore_event_handler_del (ss_config-exe_exit_handler);
-
   while (ss_config-items)
 {
   Config_Item *ci;
@@ -453,8 +447,7 @@
 _ss_free (Screenshot * ss)
 {
   evas_object_del (ss-ss_obj);
-  free (ss);
-  ss = NULL;
+  E_FREE(ss);
 }
 
 static void



-
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: apps/entrance mej

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/src/client


Modified Files:
Makefile.am entrance_session.c 


Log Message:
Sat Mar 31 22:42:26 2007Michael Jennings (mej)

Fine.  /usr/libexec then, but /usr/lib is still wrong.
--

===
RCS file: /cvs/e/e17/apps/entrance/src/client/Makefile.am,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- Makefile.am 1 Apr 2007 00:28:57 -   1.25
+++ Makefile.am 1 Apr 2007 02:42:29 -   1.26
@@ -4,12 +4,12 @@
 INCLUDES = @EDJE_CFLAGS@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ \
 @ESMART_CFLAGS@
 
-entrancelibdir = $(libdir)/$(PACKAGE)
+entrancelibexecdir = $(libexecdir)/$(PACKAGE)
 
 #bin_PROGRAMS = entrance entrance_edit
 bin_PROGRAMS = entrance
 
-entrancelib_PROGRAMS = entrance_login
+entrancelibexec_PROGRAMS = entrance_login
 
 entrance_SOURCES = \
entrance_auth.c entrance_auth.h \
===
RCS file: /cvs/e/e17/apps/entrance/src/client/entrance_session.c,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -3 -r1.92 -r1.93
--- entrance_session.c  3 Nov 2006 14:36:45 -   1.92
+++ entrance_session.c  1 Apr 2007 02:42:29 -   1.93
@@ -389,7 +389,7 @@
char *user = NULL;
char *session_cmd = NULL;
char *session_name = NULL;
-   char *monitor_cmd = PACKAGE_LIB_DIR / PACKAGE /entrance_login;
+   char *monitor_cmd = PACKAGE_LIBEXEC_DIR / PACKAGE /entrance_login;
struct passwd *pwent = NULL;
Entrance_X_Session *exs = NULL;
 



-
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: apps/entrance mej

2007-03-31 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mej
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
configure.in entrance.spec.in 


Log Message:
Sat Mar 31 22:42:26 2007Michael Jennings (mej)

Fine.  /usr/libexec then, but /usr/lib is still wrong.
--

===
RCS file: /cvs/e/e17/apps/entrance/configure.in,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -3 -r1.69 -r1.70
--- configure.in30 Mar 2007 20:06:49 -  1.69
+++ configure.in1 Apr 2007 02:42:28 -   1.70
@@ -20,8 +20,8 @@
 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, $PACKAGE_DATA_DIR, [Shared data 
directory])
 AC_EXPAND_DIR(PACKAGE_BIN_DIR, $bindir)
 AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, $PACKAGE_BIN_DIR, [Location of binaries])
-AC_EXPAND_DIR(PACKAGE_LIB_DIR, $libdir)
-AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, $PACKAGE_LIB_DIR, [Location of 
libraries])
+AC_EXPAND_DIR(PACKAGE_LIBEXEC_DIR, $libexecdir)
+AC_DEFINE_UNQUOTED(PACKAGE_LIBEXEC_DIR, $PACKAGE_LIBEXEC_DIR, [Location of 
private executables])
 
 # Override autosplat's destination dir settings
 if test $sysconfdir = '${prefix}/etc'; then
===
RCS file: /cvs/e/e17/apps/entrance/entrance.spec.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- entrance.spec.in1 Apr 2007 00:28:57 -   1.9
+++ entrance.spec.in1 Apr 2007 02:42:29 -   1.10
@@ -47,9 +47,10 @@
 %{_sysconfdir}/init.d/entrance
 %{_sysconfdir}/pam.d/entrance
 %{_bindir}/entrance*
+%{_sbindir}/entrance*
 %{_includedir}/*.h
 %{_libdir}/libentrance*
-%{_libdir}/entrance
+%{_libexecdir}/entrance
 %{_datadir}/%{name}
 %{_var}/run/%{name}
 



-
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