E CVS: alarm englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : alarm

Dir : e_modules/alarm/po


Modified Files:
eo.po 


Log Message:
Update to new .pot file.




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_dialog.c ewl_dialog.h 


Log Message:
fix ewl_dialog_action_position_set()

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_dialog.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- ewl_dialog.c12 Nov 2007 22:42:22 -  1.19
+++ ewl_dialog.c14 Nov 2007 13:08:27 -  1.20
@@ -40,7 +40,7 @@
 int
 ewl_dialog_init(Ewl_Dialog *dialog)
 {
-   Ewl_Widget *w, *o;
+   Ewl_Widget *w;
 
DENTER_FUNCTION(DLEVEL_STABLE);
DCHECK_PARAM_PTR_RET(dialog, FALSE);
@@ -93,24 +93,26 @@
/*
 * Create an action area for buttons
 */
-   o = ewl_cell_new();
-   ewl_widget_appearance_set(o, actionarea);
-   ewl_object_fill_policy_set(EWL_OBJECT(o),
+   dialog-action_area = ewl_cell_new();
+   ewl_widget_appearance_set(dialog-action_area, actionarea);
+   ewl_object_fill_policy_set(EWL_OBJECT(dialog-action_area),
   EWL_FLAG_FILL_HFILL | EWL_FLAG_FILL_VSHRINK);
-   ewl_widget_internal_set(o, TRUE);
-   ewl_container_child_append(EWL_CONTAINER(dialog-box), o);
-   ewl_widget_show(o);
+   ewl_widget_internal_set(dialog-action_area, TRUE);
+   ewl_container_child_append(EWL_CONTAINER(dialog-box), 
+   dialog-action_area);
+   ewl_widget_show(dialog-action_area);
 
-   dialog-action_area = ewl_hbox_new();
-   if (!dialog-action_area) {
+   dialog-action_box = ewl_hbox_new();
+   if (!dialog-action_box) {
DRETURN_INT(FALSE, DLEVEL_STABLE);
}
-   ewl_container_child_append(EWL_CONTAINER(o), dialog-action_area);
-   ewl_box_homogeneous_set(EWL_BOX(dialog-action_area), FALSE);
-   ewl_object_fill_policy_set(EWL_OBJECT(dialog-action_area),
+   ewl_container_child_append(EWL_CONTAINER(dialog-action_area), 
+   dialog-action_box);
+   ewl_box_homogeneous_set(EWL_BOX(dialog-action_box), FALSE);
+   ewl_object_fill_policy_set(EWL_OBJECT(dialog-action_box),
   EWL_FLAG_FILL_NONE);
-   ewl_widget_internal_set(dialog-action_area, TRUE);
-   ewl_widget_show(dialog-action_area);
+   ewl_widget_internal_set(dialog-action_box, TRUE);
+   ewl_widget_show(dialog-action_box);
 
ewl_dialog_active_area_set(dialog, dialog-position);
 
@@ -142,18 +144,22 @@
if (pos  (EWL_POSITION_LEFT | EWL_POSITION_RIGHT)) {
ewl_box_orientation_set(EWL_BOX(d-box),
EWL_ORIENTATION_HORIZONTAL);
-   ewl_box_orientation_set(EWL_BOX(d-separator),
+   ewl_separator_orientation_set(EWL_SEPARATOR((d-separator)),
EWL_ORIENTATION_VERTICAL);
-   ewl_box_orientation_set(EWL_BOX(d-action_area),
+   ewl_box_orientation_set(EWL_BOX(d-action_box),
EWL_ORIENTATION_VERTICAL);
+   ewl_object_fill_policy_set(EWL_OBJECT(d-action_area),
+  EWL_FLAG_FILL_VFILL | EWL_FLAG_FILL_HSHRINK);
}
else {
ewl_box_orientation_set(EWL_BOX(d-box),
EWL_ORIENTATION_VERTICAL);
-   ewl_box_orientation_set(EWL_BOX(d-separator),
+   ewl_separator_orientation_set(EWL_SEPARATOR((d-separator)),
EWL_ORIENTATION_HORIZONTAL);
-   ewl_box_orientation_set(EWL_BOX(d-action_area),
+   ewl_box_orientation_set(EWL_BOX(d-action_box),
EWL_ORIENTATION_HORIZONTAL);
+   ewl_object_fill_policy_set(EWL_OBJECT(d-action_area),
+  EWL_FLAG_FILL_HFILL | EWL_FLAG_FILL_VSHRINK);
}
 
ewl_container_child_remove(EWL_CONTAINER(d-box), d-separator);
@@ -202,14 +208,11 @@
 void
 ewl_dialog_action_fill_policy_set(Ewl_Dialog *d, unsigned int pol)
 {
-   Ewl_Widget *w;
-
DENTER_FUNCTION(DLEVEL_STABLE);
DCHECK_PARAM_PTR(d);
DCHECK_TYPE(d, EWL_DIALOG_TYPE);
 
-   w = ewl_widget_parent_get(d-action_area);
-   ewl_object_fill_policy_set(EWL_OBJECT(w), pol);
+   ewl_object_fill_policy_set(EWL_OBJECT(d-action_box), pol);
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }
@@ -226,7 +229,8 @@
DCHECK_PARAM_PTR_RET(d, EWL_POSITION_BOTTOM);
DCHECK_TYPE_RET(d, EWL_DIALOG_TYPE, EWL_FLAG_FILL_NONE);
 
-   DRETURN_INT(ewl_object_fill_policy_get(EWL_OBJECT(d-action_area)), 
DLEVEL_STABLE);
+   DRETURN_INT(ewl_object_fill_policy_get(EWL_OBJECT(d-action_box)), 
+   DLEVEL_STABLE);
 }
 
 /**
@@ -238,14 +242,11 @@
 void
 ewl_dialog_action_alignment_set(Ewl_Dialog *d, unsigned int align)
 {
-   

E CVS: apps/e kaethorn

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e17
Module  : apps/e

Dir : e17/apps/e/debian


Added Files:
enlightenment.postinst enlightenment.preinst 


Log Message:
Add alternatives configuration via x-window-manager. Thanks to Horst




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas kaethorn

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/debian


Modified Files:
rules 


Log Message:
enable fb, disable directx.

===
RCS file: /cvs/e/e17/libs/evas/debian/rules,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- rules   3 Jul 2007 11:02:53 -   1.20
+++ rules   14 Nov 2007 17:03:12 -  1.21
@@ -4,5 +4,5 @@
 include /usr/share/cdbs/1/class/autotools.mk
 
 debian/stamp-autotools-files:
-   ./autogen.sh --prefix=/usr
+   ./autogen.sh --prefix=/usr --disable-directx --enable-fb
touch debian/stamp-autotools-files



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: penguins englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : penguins

Dir : e_modules/penguins/po


Modified Files:
Makevars it.po 


Log Message:
Use correct keyword 

===
RCS file: /cvs/e/e_modules/penguins/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:48:23 -   1.1
+++ Makevars14 Nov 2007 18:08:53 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: wlan englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : wlan

Dir : e_modules/wlan/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/wlan/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:25:58 -   1.1
+++ Makevars14 Nov 2007 18:10:28 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: forecasts englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : forecasts

Dir : e_modules/forecasts/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/forecasts/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 19:56:55 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mail

Dir : e_modules/mail/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/mail/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 18:36:43 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : language

Dir : e_modules/language/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/language/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 20:27:41 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mixer englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mixer

Dir : e_modules/mixer/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/mixer/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:52:00 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: flame englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : flame

Dir : e_modules/flame/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/flame/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 18:07:44 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: emu englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : emu

Dir : e_modules/emu/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/emu/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 19:35:38 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: snow englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : snow

Dir : e_modules/snow/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/snow/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:43:32 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: alarm englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : alarm

Dir : e_modules/alarm/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/alarm/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 19:42:27 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: rain englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : rain

Dir : e_modules/rain/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/rain/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:47:12 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : mem

Dir : e_modules/mem/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/mem/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:19:45 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: news englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : news

Dir : e_modules/news/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/news/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars12 Nov 2007 17:32:26 -  1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/screenshot/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:45:58 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: photo englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : photo

Dir : e_modules/photo/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/photo/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:09:03 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : cpu

Dir : e_modules/cpu/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/cpu/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 19:51:55 -   1.1
+++ Makevars14 Nov 2007 18:10:26 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: slideshow englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/slideshow/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:44:43 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : tclock

Dir : e_modules/tclock/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/tclock/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:41:06 -   1.1
+++ Makevars14 Nov 2007 18:10:28 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : moon

Dir : e_modules/moon/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/moon/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:50:48 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : net

Dir : e_modules/net/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/net/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:49:46 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : uptime

Dir : e_modules/uptime/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/uptime/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:39:36 -   1.1
+++ Makevars14 Nov 2007 18:10:28 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : weather

Dir : e_modules/weather/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/weather/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:38:31 -   1.1
+++ Makevars14 Nov 2007 18:10:28 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: taskbar englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar/po


Modified Files:
Makevars 


Log Message:
We don't use N_, we do use D_ as keyword.

===
RCS file: /cvs/e/e_modules/taskbar/po/Makevars,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makevars7 Nov 2007 21:42:13 -   1.1
+++ Makevars14 Nov 2007 18:10:27 -  1.2
@@ -8,7 +8,7 @@
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8 --foreign-user
+XGETTEXT_OPTIONS = --keyword=_ --keyword=D_ --from-code=UTF-8 --foreign-user
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_radiobutton.c ewl_radiobutton.h 


Log Message:
add ewl_radiobutton_chain_selected_get()

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_radiobutton.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- ewl_radiobutton.c   12 Nov 2007 22:42:22 -  1.20
+++ ewl_radiobutton.c   14 Nov 2007 20:00:51 -  1.21
@@ -62,6 +62,39 @@
DRETURN_INT(TRUE, DLEVEL_STABLE);
 }
 
+/*
+ * @param rb: the radio button to set the value
+ * @param value: A user defined value. Ewl does't use this value at all.
+ * @return Returns no value.
+ * @brief Set an user defined value.
+ */
+void
+ewl_radiobutton_value_set(Ewl_Radiobutton *rb, void *value)
+{
+   DENTER_FUNCTION(DLEVEL_STABLE);
+   DCHECK_PARAM_PTR(rb);
+   DCHECK_TYPE(rb, EWL_RADIOBUTTON_TYPE);
+
+   rb-value = value;
+
+   DLEAVE_FUNCTION(DLEVEL_STABLE);
+}
+
+/*
+ * @param rb: the radio button to get the value
+ * @return Returns the value of the radio button.
+ * @brief Get the user defined value.
+ */
+void *
+ewl_radiobutton_value_get(Ewl_Radiobutton *rb)
+{
+   DENTER_FUNCTION(DLEVEL_STABLE);
+   DCHECK_PARAM_PTR_RET(rb, 0);
+   DCHECK_TYPE_RET(rb, EWL_RADIOBUTTON_TYPE, 0);
+
+   DRETURN_INT(rb-value, DLEVEL_STABLE);
+}
+
 /**
  * @param rb: the radio button to be added to a chain of radio buttons
  * @param crb: a radio button already in the chain of radio buttons
@@ -97,6 +130,40 @@
rb-chain = crb-chain;
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
+}
+
+/*
+ * @param rb: the radio button to get the checked chain link
+ * @return Returns the current checked chain link
+ * @brief XXX write me
+ */
+Ewl_Radiobutton *
+ewl_radiobutton_chain_selected_get(Ewl_Radiobutton *rb)
+{
+   Ewl_Checkbutton *c;
+
+   DENTER_FUNCTION(DLEVEL_STABLE);
+   DCHECK_PARAM_PTR_RET(rb, NULL);
+   DCHECK_TYPE_RET(rb, EWL_RADIOBUTTON_TYPE, NULL);
+
+   /* if there is no chain or the chain is empty we have to
+* treat it special */
+   if (!rb-chain || ecore_list_empty_is(rb-chain)) {
+   if (ewl_checkbutton_is_checked(EWL_CHECKBUTTON(rb))) {
+   DRETURN_PTR(rb, DLEVEL_STABLE);
+   }
+   else {
+   DRETURN_PTR(NULL, DLEVEL_STABLE);
+   }
+   }
+
+   ecore_list_first_goto(rb-chain);
+   while ((c = ecore_list_next(rb-chain))) {
+   if (ewl_checkbutton_is_checked(c))
+   DRETURN_PTR(c, DLEVEL_STABLE);
+   }
+
+   DRETURN_PTR(NULL, DLEVEL_STABLE);
 }
 
 /**
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_radiobutton.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ewl_radiobutton.h   11 Nov 2007 06:07:46 -  1.17
+++ ewl_radiobutton.h   14 Nov 2007 20:00:51 -  1.18
@@ -54,12 +54,17 @@
 {
Ewl_Checkbutton button; /** Inherit from Ewl_Checkbutton */
Ecore_List *chain; /** List of members of the group */
+   void *value; /** the value of the radio button */
 };
 
 Ewl_Widget *ewl_radiobutton_new(void);
-int ewl_radiobutton_init(Ewl_Radiobutton *cb);
+int ewl_radiobutton_init(Ewl_Radiobutton *rb);
 
-voidewl_radiobutton_chain_set(Ewl_Radiobutton *w, Ewl_Radiobutton 
*c);
+voidewl_radiobutton_value_set(Ewl_Radiobutton *rb, void *v);
+void   *ewl_radiobutton_value_get(Ewl_Radiobutton *rb);
+
+voidewl_radiobutton_chain_set(Ewl_Radiobutton *rb, Ewl_Radiobutton 
*crb);
+Ewl_Radiobutton*ewl_radiobutton_chain_selected_get(Ewl_Radiobutton 
*rb);
 
 /**
  * @def ewl_radiobutton_checked_set(r, c)



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/dialog


Modified Files:
ewl_dialog.c 


Log Message:
tests for different action positions

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/dialog/ewl_dialog.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_dialog.c23 Aug 2007 05:26:44 -  1.7
+++ ewl_dialog.c14 Nov 2007 20:02:58 -  1.8
@@ -2,6 +2,8 @@
 #include Ewl_Test.h
 #include ewl_test_private.h
 #include ewl_button.h
+#include ewl_border.h
+#include ewl_radiobutton.h
 #include ewl_dialog.h
 #include ewl_image.h
 #include ewl_icon_theme.h
@@ -28,6 +30,8 @@
 create_test(Ewl_Container *box)
 {
Ewl_Widget *o;
+   Ewl_Widget *border;
+   Ewl_Widget *chain;
 
o = ewl_label_new();
ewl_label_text_set(EWL_LABEL(o), );
@@ -35,9 +39,46 @@
ewl_widget_name_set(o, dialog_label);
ewl_widget_show(o);
 
+   border = ewl_border_new();
+   ewl_border_label_set(EWL_BORDER(border), Button Position);
+   ewl_container_child_append(EWL_CONTAINER(box), border);
+   ewl_widget_show(border);
+   
+   chain = ewl_radiobutton_new();
+   ewl_button_label_set(EWL_BUTTON(chain), Top);
+   ewl_radiobutton_value_set(EWL_RADIOBUTTON(chain), 
+   (void *)EWL_POSITION_TOP);
+   ewl_container_child_append(EWL_CONTAINER(border), chain);
+   ewl_widget_show(chain);
+
+   o = ewl_radiobutton_new();
+   ewl_button_label_set(EWL_BUTTON(o), Right);
+   ewl_radiobutton_value_set(EWL_RADIOBUTTON(o), 
+   (void *)EWL_POSITION_RIGHT);
+   ewl_radiobutton_chain_set(EWL_RADIOBUTTON(o), EWL_RADIOBUTTON(chain));
+   ewl_container_child_append(EWL_CONTAINER(border), o);
+   ewl_widget_show(o);
+
+   o = ewl_radiobutton_new();
+   ewl_button_label_set(EWL_BUTTON(o), Left);
+   ewl_radiobutton_value_set(EWL_RADIOBUTTON(o), 
+   (void *)EWL_POSITION_LEFT);
+   ewl_radiobutton_chain_set(EWL_RADIOBUTTON(o), EWL_RADIOBUTTON(chain));
+   ewl_container_child_append(EWL_CONTAINER(border), o);
+   ewl_widget_show(o);
+
+   o = ewl_radiobutton_new();
+   ewl_button_label_set(EWL_BUTTON(o), Bottom);
+   ewl_radiobutton_value_set(EWL_RADIOBUTTON(o), 
+   (void *)EWL_POSITION_BOTTOM);
+   ewl_radiobutton_chain_set(EWL_RADIOBUTTON(o), EWL_RADIOBUTTON(chain));
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(o), TRUE);
+   ewl_container_child_append(EWL_CONTAINER(border), o);
+   ewl_widget_show(o);
+
o = ewl_button_new();
ewl_button_label_set(EWL_BUTTON(o), Lanuch Dialog);
-   ewl_callback_append(o, EWL_CALLBACK_CLICKED, run_dialog, NULL);
+   ewl_callback_append(o, EWL_CALLBACK_CLICKED, run_dialog, chain);
ewl_container_child_append(box, o);
ewl_widget_show(o);
 
@@ -45,12 +86,17 @@
 }
 
 static void
-run_dialog(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__)
+run_dialog(Ewl_Widget *w, void *ev __UNUSED__, void *data)
 {
Ewl_Widget *o, *dialog, *hbox;
+   Ewl_Radiobutton *radio;
Ewl_Window *win;
+   Ewl_Position pos;
 
-   /* this is a bad cast, but the ewl_test will ever a standalone app */
+   radio = EWL_RADIOBUTTON(data);
+   pos = (Ewl_Position)ewl_radiobutton_value_get(
+   ewl_radiobutton_chain_selected_get(radio));
+   /* this is a bad cast, but the ewl_test will ever be a standalone app */
win = EWL_WINDOW(ewl_embed_widget_find(w));
 
dialog = ewl_dialog_new();
@@ -60,11 +106,24 @@
ewl_window_transient_for(EWL_WINDOW(dialog), win);
ewl_callback_append(dialog, EWL_CALLBACK_DELETE_WINDOW,
dialog_delete_cb, NULL);
+   ewl_dialog_action_position_set(EWL_DIALOG(dialog), pos);
ewl_widget_show(dialog);
-   ewl_dialog_active_area_set(EWL_DIALOG(dialog), EWL_POSITION_TOP);
+   if (pos == EWL_POSITION_TOP)
+   ewl_dialog_active_area_set(EWL_DIALOG(dialog), 
+   EWL_POSITION_BOTTOM);
+   else if (pos == EWL_POSITION_BOTTOM)
+   ewl_dialog_active_area_set(EWL_DIALOG(dialog), 
+   EWL_POSITION_TOP);
+   else if (pos == EWL_POSITION_LEFT)
+   ewl_dialog_active_area_set(EWL_DIALOG(dialog), 
+   EWL_POSITION_RIGHT);
+   else if (pos == EWL_POSITION_RIGHT)
+   ewl_dialog_active_area_set(EWL_DIALOG(dialog), 
+   EWL_POSITION_LEFT);
 
hbox = ewl_hbox_new();
ewl_container_child_append(EWL_CONTAINER(dialog), hbox);
+   

E CVS: libs/ewl jethomas

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
Ewl.h Makefile.am ewl_enums.h ewl_filedialog.c 
ewl_filedialog.h ewl_filelist.c ewl_filelist.h 
ewl_filelist_model.c ewl_filepicker.c ewl_filepicker.h 
ewl_tree2_view_freebox.c 
Added Files:
ewl_filelist_view.c ewl_filelist_view.h 
Removed Files:
ewl_filelist_column.c ewl_filelist_column.h 
ewl_filelist_icon.c ewl_filelist_icon.h ewl_filelist_list.c 
ewl_filelist_list.h ewl_filelist_tree.c ewl_filelist_tree.h 


Log Message:

Move file selector over to using mvc, fix bug #250

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/Ewl.h,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -3 -r1.32 -r1.33
--- Ewl.h   4 Nov 2007 23:28:03 -   1.32
+++ Ewl.h   14 Nov 2007 20:07:58 -  1.33
@@ -334,10 +334,7 @@
 
 #include ewl_filelist.h
 #include ewl_filelist_model.h
-#include ewl_filelist_list.h
-#include ewl_filelist_icon.h
-#include ewl_filelist_column.h
-#include ewl_filelist_tree.h
+#include ewl_filelist_view.h
 #include ewl_filepicker.h
 #include ewl_filedialog.h
 
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/Makefile.am,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -3 -r1.55 -r1.56
--- Makefile.am 4 Nov 2007 23:28:03 -   1.55
+++ Makefile.am 14 Nov 2007 20:07:58 -  1.56
@@ -42,10 +42,7 @@
ewl_floater.h \
ewl_filelist.h \
ewl_filelist_model.h \
-   ewl_filelist_tree.h\
-   ewl_filelist_list.h\
-   ewl_filelist_icon.h \
-   ewl_filelist_column.h \
+   ewl_filelist_view.h \
ewl_filepicker.h \
ewl_filedialog.h \
ewl_freebox.h \
@@ -131,10 +128,7 @@
ewl_floater.c \
ewl_filelist.c \
ewl_filelist_model.c \
-   ewl_filelist_tree.c \
-   ewl_filelist_list.c \
-   ewl_filelist_icon.c \
-   ewl_filelist_column.c \
+   ewl_filelist_view.c \
ewl_filepicker.c \
ewl_filedialog.c \
ewl_freebox.c \
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_enums.h,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -3 -r1.83 -r1.84
--- ewl_enums.h 11 Nov 2007 02:12:36 -  1.83
+++ ewl_enums.h 14 Nov 2007 20:07:58 -  1.84
@@ -598,7 +598,9 @@
 {
EWL_FILELIST_EVENT_DIR_CHANGE,
EWL_FILELIST_EVENT_SELECTION_CHANGE,
-   EWL_FILELIST_EVENT_FILE_SELECTED
+   EWL_FILELIST_EVENT_FILE_SELECTED,
+   EWL_FILELIST_EVENT_MULTI_TRUE,
+   EWL_FILELIST_EVENT_MULTI_FALSE
 };
 
 /**
@@ -857,6 +859,23 @@
  * The Ewl_Thumbnail_Size
  */
 typedef enum Ewl_Thumbnail_Size Ewl_Thumbnail_Size;
+
+/*
+ * @enum Ewl_Filelist_View
+ * The view used in the filelist
+ */
+enum Ewl_Filelist_View
+{
+   EWL_FILELIST_VIEW_ICON, /** Uses freebox view of tree */
+   EWL_FILELIST_VIEW_LIST, /** Normal tree with no expansions */
+   EWL_FILELIST_VIEW_TREE, /** Normal tree with expansions */
+   EWL_FILELIST_VIEW_COLUMN, /** A custom column view */
+};
+
+/**
+ * The Ewl_Filelist_View
+ */
+typedef enum Ewl_Filelist_View Ewl_Filelist_View;
 
 /**
  * @}
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filedialog.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -3 -r1.39 -r1.40
--- ewl_filedialog.c12 Nov 2007 22:42:22 -  1.39
+++ ewl_filedialog.c14 Nov 2007 20:07:58 -  1.40
@@ -2,10 +2,6 @@
 #include ewl_base.h
 #include ewl_filedialog.h
 #include ewl_filepicker.h
-#include ewl_filelist_column.h
-#include ewl_filelist_icon.h
-#include ewl_filelist_list.h
-#include ewl_filelist_tree.h
 #include ewl_menu.h
 #include ewl_context_menu.h
 #include ewl_macros.h
@@ -168,11 +164,10 @@
  * @brief Set the view to be used for displaying the files in the dialog
  */
 void
-ewl_filedialog_list_view_set(Ewl_Filedialog *fd, Ewl_View *view)
+ewl_filedialog_list_view_set(Ewl_Filedialog *fd, Ewl_Filelist_View view)
 {
DENTER_FUNCTION(DLEVEL_STABLE);
DCHECK_PARAM_PTR(fd);
-   DCHECK_PARAM_PTR(view);
DCHECK_TYPE(fd, EWL_FILEDIALOG_TYPE);
 
ewl_filepicker_list_view_set(EWL_FILEPICKER(fd-fp), view);
@@ -185,7 +180,7 @@
  * @return Returns the Ewl_View set on this file dialog
  * @brief Retrieve the file list view used in this file dialog
  */
-Ewl_View *
+Ewl_Filelist_View *
 ewl_filedialog_list_view_get(Ewl_Filedialog *fd)
 {
DENTER_FUNCTION(DLEVEL_STABLE);
@@ -258,8 +253,8 @@
 ewl_filedialog_multiselect_get(Ewl_Filedialog *fd)
 {
DENTER_FUNCTION(DLEVEL_STABLE);
-   DCHECK_PARAM_PTR_RET(fd, 0);
-   DCHECK_TYPE_RET(fd, EWL_FILEDIALOG_TYPE, 0);
+   DCHECK_PARAM_PTR_RET(fd, FALSE);
+   DCHECK_TYPE_RET(fd, 

E CVS: libs/ewl jethomas

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/filepicker


Modified Files:
ewl_filepicker.c 


Log Message:

Move file selector over to using mvc, fix bug #250

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/filepicker/ewl_filepicker.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ewl_filepicker.c11 Nov 2007 08:03:39 -  1.9
+++ ewl_filepicker.c14 Nov 2007 20:07:58 -  1.10
@@ -130,9 +130,7 @@
if (!file)
printf(No file selected.\n);
else
-   printf(Selected %s/%s\n,
-   ewl_filepicker_directory_get(fp),
-   file);
+   printf(%s\n, file);
break;
}
default:



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/border


Modified Files:
ewl_border.c 


Log Message:
use ewl_checkbutton_checked_set() instead of ewl_radiobutton_checked_set()
NOTE:
ewl_radiobutton_checked_set() and ewl_radiobutton_is_checked() are going to be 
removed soon.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/border/ewl_border.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ewl_border.c23 Aug 2007 05:26:42 -  1.6
+++ ewl_border.c14 Nov 2007 21:15:00 -  1.7
@@ -63,7 +63,7 @@
 
button_aleft = ewl_radiobutton_new();
ewl_button_label_set(EWL_BUTTON(button_aleft), Left);
-   ewl_radiobutton_checked_set(button_aleft, 1);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(button_aleft), TRUE);
ewl_container_child_append(EWL_CONTAINER(avbox), button_aleft);
ewl_radiobutton_chain_set(EWL_RADIOBUTTON(button_aleft),
  EWL_RADIOBUTTON(button_atop));
@@ -130,7 +130,7 @@
 
button_ptop = ewl_radiobutton_new();
ewl_button_label_set(EWL_BUTTON(button_ptop), Top);
-   ewl_radiobutton_checked_set(button_ptop, 1);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(button_ptop), TRUE);
ewl_radiobutton_chain_set(EWL_RADIOBUTTON(button_ptop),
  EWL_RADIOBUTTON(button_pright));
ewl_container_child_append(EWL_CONTAINER(pvbox), button_ptop);
@@ -171,7 +171,7 @@
 border_change_alignment(Ewl_Widget *w, void *ev __UNUSED__,
void *data __UNUSED__)
 {
-   if (!ewl_radiobutton_is_checked(EWL_RADIOBUTTON(w)))
+   if (!ewl_checkbutton_is_checked(EWL_CHECKBUTTON(w)))
return;
 
if (w == button_aleft)
@@ -196,7 +196,7 @@
 border_change_position(Ewl_Widget *w, void *ev __UNUSED__,
void *data __UNUSED__)
 {
-   if (!ewl_radiobutton_is_checked(w))
+   if (!ewl_checkbutton_is_checked(EWL_CHECKBUTTON(w)))
return;
 
if (w == button_pleft)



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_colorpicker.c 


Log Message:
use ewl_checkbutton_checked_set() instead of ewl_radiobutton_checked_set()
NOTE:
ewl_radiobutton_checked_set() and ewl_radiobutton_is_checked() are going to be 
removed soon.

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_colorpicker.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- ewl_colorpicker.c   12 Nov 2007 22:42:22 -  1.42
+++ ewl_colorpicker.c   14 Nov 2007 21:15:00 -  1.43
@@ -245,9 +245,9 @@
ewl_widget_internal_set(o, TRUE);
ewl_button_label_set(EWL_BUTTON(o), modes[i].name);
if (!prev)
-   ewl_radiobutton_checked_set(EWL_RADIOBUTTON(o), TRUE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(o), TRUE);
else
-   ewl_radiobutton_checked_set(EWL_RADIOBUTTON(o), FALSE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(o), FALSE);
 
ewl_container_child_append(EWL_CONTAINER(hbox), o);

ewl_colorpicker_radiobutton_mode_set(EWL_COLORPICKER_RADIOBUTTON(o),



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/media


Modified Files:
ewl_media.c 


Log Message:
use ewl_checkbutton_checked_set() instead of ewl_radiobutton_checked_set()
NOTE:
ewl_radiobutton_checked_set() and ewl_radiobutton_is_checked() are going to be 
removed soon.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/media/ewl_media.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_media.c 23 Aug 2007 05:26:46 -  1.7
+++ ewl_media.c 14 Nov 2007 21:15:00 -  1.8
@@ -70,7 +70,6 @@
 
o = ewl_radiobutton_new();
ewl_button_label_set(EWL_BUTTON(o), Gstreamer);
-   ewl_radiobutton_checked_set(EWL_RADIOBUTTON(o), FALSE);
ewl_container_child_append(box, o);
ewl_callback_append(o, EWL_CALLBACK_VALUE_CHANGED,
cb_gstreamer_change, NULL);
@@ -79,7 +78,7 @@
o2 = ewl_radiobutton_new();
ewl_button_label_set(EWL_BUTTON(o2), Xine);
ewl_radiobutton_chain_set(EWL_RADIOBUTTON(o2), EWL_RADIOBUTTON(o));
-   ewl_radiobutton_checked_set(EWL_RADIOBUTTON(o2), TRUE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(o2), TRUE);
ewl_container_child_append(box, o2);
ewl_callback_append(o2, EWL_CALLBACK_VALUE_CHANGED,
cb_xine_change, NULL);



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/button


Modified Files:
ewl_button.c 


Log Message:
use ewl_checkbutton_checked_set() instead of ewl_radiobutton_checked_set()
NOTE:
ewl_radiobutton_checked_set() and ewl_radiobutton_is_checked() are going to be 
removed soon.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/button/ewl_button.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- ewl_button.c13 Nov 2007 22:32:12 -  1.12
+++ ewl_button.c14 Nov 2007 21:15:00 -  1.13
@@ -143,7 +143,8 @@
 * Create a check button with a label and checked.
 */
check_button[1]  = ewl_checkbutton_new();
-   ewl_button_label_set(EWL_BUTTON(check_button[1] ), With Label and 
checked);
+   ewl_button_label_set(EWL_BUTTON(check_button[1] ), 
+   With Label and checked);
ewl_checkbutton_checked_set(EWL_CHECKBUTTON(check_button[1]), TRUE);
ewl_container_child_append(EWL_CONTAINER(vbox), check_button[1]);
ewl_widget_show(check_button[1]);
@@ -184,7 +185,7 @@
 */
radio_button[0]  = ewl_radiobutton_new();
ewl_button_label_set(EWL_BUTTON(radio_button[0] ), With Label);
-   ewl_radiobutton_checked_set(radio_button[0], TRUE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(radio_button[0]), TRUE);
ewl_container_child_append(EWL_CONTAINER(vbox), radio_button[0]);
ewl_widget_show(radio_button[0]);
 
@@ -196,7 +197,7 @@
 
radio_button[2]  = ewl_radiobutton_new();
ewl_button_label_set(EWL_BUTTON(radio_button[2] ), Disabled);
-   ewl_radiobutton_checked_set(radio_button[2], TRUE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(radio_button[2]), TRUE);
ewl_container_child_append(EWL_CONTAINER(vbox), radio_button[2]);
ewl_widget_disable(radio_button[2]);
ewl_widget_show(radio_button[2]);



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: alarm englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : alarm

Dir : e_modules/alarm/po


Modified Files:
eo.po 


Log Message:
Fix format




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: alarm englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : alarm

Dir : e_modules/alarm/po


Modified Files:
eo.po fr.po it.po ja.po sv.po 


Log Message:
Fix up po files.




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/tools/ewl_config


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/tools/ewl_config/Makefile.am,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Makefile.am 2 Oct 2006 16:59:45 -   1.9
+++ Makefile.am 14 Nov 2007 21:55:31 -  1.10
@@ -1,6 +1,12 @@
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib @ECORE_CFLAGS@ 
@EVAS_CFLAGS@ 
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-DPACKAGE_DATA_DIR=\$(datadir)\ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
+
 AM_CFLAGS = -W -Wall -Wno-implicit
 
 bin_PROGRAMS = ewl_config



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/Makefile.am,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- Makefile.am 26 May 2006 21:23:14 -  1.35
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.36
@@ -1,30 +1,29 @@
-AUTOMAKE_OPTIONS   =   1.4 foreign
 MAINTAINERCLEANFILES   =   Makefile.in
 
 SUBDIRS=   tests
 
-INCLUDES   =   -I$(top_srcdir)/src/lib 
-I$(top_builddir)/src/lib @EDJE_CFLAGS@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ 
@EMOTION_CFLAGS@ @EPSILON_CFLAGS@
+AM_CPPFLAGS=   -I$(top_srcdir)/src/lib 
-I$(top_builddir)/src/lib -DPACKAGE_DATA_DIR=\$(datadir)\ 
-DPACKAGE_LIB_DIR=\$(libdir)\ @EMOTION_CFLAGS@ @EPSILON_CFLAGS@ @EDJE_CFLAGS@ 
@ECORE_CFLAGS@ @EVAS_CFLAGS@
 
-EWLTESTPROGRAMS =  ewl_test ewl_embed_test ewl_simple_test 
+EWLTESTPROGRAMS =  ewl_test ewl_embed_test ewl_simple_test
 
 bin_PROGRAMS   =   $(EWLTESTPROGRAMS)
 
 ewl_test_DEPENDENCIES  =   $(top_builddir)/src/lib/libewl.la
 ewl_test_SOURCES   =   Ewl_Test.h ewl_test_private.h main.c
 
-ewl_test_LDADD =   $(top_builddir)/src/lib/libewl.la 
@EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @EMOTION_LIBS@ @EPSILON_LIBS@
+ewl_test_LDADD =   $(top_builddir)/src/lib/libewl.la 
@EMOTION_LIBS@ @EPSILON_LIBS@ @EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@
 
 ewl_embed_test_DEPENDENCIES=   $(top_builddir)/src/lib/libewl.la
 ewl_embed_test_SOURCES =   ewl_embed_test.c
 
-# ewl_embed_test_LDFLAGS   =   
-ewl_embed_test_LDADD   =   $(top_builddir)/src/lib/libewl.la 
@EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @EMOTION_LIBS@ @EPSILON_LIBS@
+# ewl_embed_test_LDFLAGS   =
+ewl_embed_test_LDADD   =   $(top_builddir)/src/lib/libewl.la 
@EMOTION_LIBS@ @EPSILON_LIBS@ @EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@
 
 ewl_simple_test_DEPENDENCIES   =   $(top_builddir)/src/lib/libewl.la
 ewl_simple_test_SOURCES=   ewl_simple_test.c
 
-# ewl_simple_test_LDFLAGS  =   
-ewl_simple_test_LDADD  =   $(top_builddir)/src/lib/libewl.la 
@EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @EMOTION_LIBS@ @EPSILON_LIBS@
+# ewl_simple_test_LDFLAGS  =
+ewl_simple_test_LDADD  =   $(top_builddir)/src/lib/libewl.la 
@EMOTION_LIBS@ @EPSILON_LIBS@ @EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@
 
 EXTRA_DIST =   $(ewl_test_SOURCES) \
$(ewl_embed_test_SOURCES) \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/menu


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/menu/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:57 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/image


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/image/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:56 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.2
@@ -5,6 +5,8 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
+   -DPACKAGE_SOURCE_DIR=\$(packagesrcdir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/puzzle


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/puzzle/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:58 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/theme


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/theme/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:59 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/tree2


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/tree2/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 05:00:00 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/shadow


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/shadow/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 15 Dec 2006 21:07:24 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.2
@@ -5,6 +5,7 @@
 -I$(top_builddir)/src/lib \
 -I$(top_srcdir)/src/bin \
 -I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
 @EDJE_CFLAGS@ \
 @ECORE_CFLAGS@ \
 @EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas_fb


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_fb/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 29 Mar 2007 19:35:05 -  1.5
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.6
@@ -1,27 +1,25 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas_fb \
-   -I$(top_builddir)/src/engines/evas_fb \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas_fb \
+-I$(top_builddir)/src/engines/evas_fb \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
-if EWL_ENABLE_EVAS_FB
+if EWL_ENABLE_EVAS_FRAMEBUFFER
 
 pkg_LTLIBRARIES = evas_fb.la
 
 evas_fb_la_SOURCES = \
-   Ewl_Engine_Evas_Fb.h \
-   ewl_engine_evas_fb.c
+Ewl_Engine_Evas_Fb.h \
+ewl_engine_evas_fb.c
 
 evas_fb_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_fb_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_fb_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_fb_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas_buffer


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_buffer/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 29 Mar 2007 19:35:05 -  1.4
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.5
@@ -1,27 +1,24 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas_buffer \
-   -I$(top_builddir)/src/engines/evas_buffer \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas_buffer \
+-I$(top_builddir)/src/engines/evas_buffer \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
-if EWL_ENABLE_EVAS_BUFFER
+if EWL_ENABLE_EVAS_SOFTWARE_BUFFER
 
 pkg_LTLIBRARIES = evas_buffer.la
 
 evas_buffer_la_SOURCES = \
-   Ewl_Engine_Evas_Buffer.h \
-   ewl_engine_evas_buffer.c
+Ewl_Engine_Evas_Buffer.h \
+ewl_engine_evas_buffer.c
 
 evas_buffer_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_buffer_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_buffer_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_buffer_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/x11


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/x11/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 29 Mar 2007 19:35:05 -  1.5
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.6
@@ -1,12 +1,11 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/x11 \
-   -I$(top_builddir)/src/engines/x11 \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/x11 \
+-I$(top_builddir)/src/engines/x11 \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
@@ -15,13 +14,11 @@
 pkg_LTLIBRARIES = x11.la
 
 x11_la_SOURCES = \
-   Ewl_Engine_X11.h \
-   ewl_engine_x11.c
+Ewl_Engine_X11.h \
+ewl_engine_x11.c
 
 x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+x11_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 x11_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/m4


Added Files:
ewl_check_engine.m4 


Log Message:
configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/icon


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/icon/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:55 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/Makefile.am,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -3 -r1.56 -r1.57
--- Makefile.am 14 Nov 2007 20:07:58 -  1.56
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.57
@@ -2,9 +2,12 @@
 
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES = \
+AM_CPPFLAGS = \
 -I$(top_builddir) \
 -I$(top_srcdir) \
+-DPACKAGE_DATA_DIR=\$(datadir)\ \
+-DPACKAGE_LIB_DIR=\$(libdir)\ \
+-DPACKAGE_SYSCONF_DIR=\$(sysconfdir)\ \
 @EDJE_CFLAGS@ @ECORE_CFLAGS@ @EVAS_CFLAGS@ @EMOTION_CFLAGS@ @EPSILON_CFLAGS@ 
@EFREET_CFLAGS@
 
 lib_LTLIBRARIES = libewl.la
@@ -192,5 +195,5 @@
 installed_headersdir = $(prefix)/include/ewl
 installed_headers_DATA = $(EWLHEADERS)
 
-libewl_la_LIBADD = @EDJE_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @EMOTION_LIBS@ 
@EPSILON_LIBS@ @EFREET_LIBS@ -lm
-libewl_la_LDFLAGS = -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@
+libewl_la_LIBADD = @EMOTION_LIBS@ @EPSILON_LIBS@ @EFREET_LIBS@ @EDJE_LIBS@ 
@ECORE_LIBS@ @EVAS_LIBS@ -lm
+libewl_la_LDFLAGS = -version-info @INTERFACE_VERSION@



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: alarm englebass

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : alarm

Dir : e_modules/alarm/po


Modified Files:
eo.po ja.po sv.po 


Log Message:
Fix comments.




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/combo


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/combo/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:54 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/Makefile.am,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- Makefile.am 9 Nov 2007 06:39:22 -   1.51
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.52
@@ -1,4 +1,3 @@
-AUTOMAKE_OPTIONS   =   1.4 foreign
 MAINTAINERCLEANFILES   =   Makefile.in
 
 SUBDIRS= \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/pointer


Modified Files:
ewl_pointer.c 


Log Message:
remove unused code

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/pointer/ewl_pointer.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ewl_pointer.c   23 Aug 2007 05:26:47 -  1.10
+++ ewl_pointer.c   14 Nov 2007 21:10:14 -  1.11
@@ -8,11 +8,6 @@
 #include stdlib.h
 
 static int create_test(Ewl_Container *win);
-static void cb_destroy(Ewl_Widget *w, void *ev, void *data);
-static int timer_cb_in(void *data);
-static int timer_cb_out(void *data);
-
-static Ecore_Timer *cur_timer;
 
 void
 test_info(Ewl_Test *test)
@@ -32,59 +27,17 @@
 
pointer_win = ewl_cursor_new();
ewl_widget_appearance_set(pointer_win, dndcursor);
-   ewl_callback_append(pointer_win, EWL_CALLBACK_DESTROY,
-   cb_destroy, NULL);
ewl_widget_show(pointer_win);
 
-   o = ewl_button_new();
-   // ewl_container_child_append(EWL_CONTAINER(pointer_win), o);
-   /* ewl_widget_color_set(EWL_WIDGET(o), 255, 255, 255, 200); */
-   ewl_widget_show(o);
-
-   cur_timer = ecore_timer_add(2.0, timer_cb_in, o);
-
o = ewl_entry_new();
ewl_attach_mouse_argb_cursor_set(o, pointer_win);
ewl_text_text_set(EWL_TEXT(o), Expect to see a button cursor\n
   over this entry and a normal cursor\n
   over other parts of the window);
ewl_entry_editable_set(EWL_ENTRY(o), FALSE);
-   ewl_object_fill_policy_set(EWL_OBJECT(o), EWL_FLAG_FILL_HFILL);
+   ewl_object_fill_policy_set(EWL_OBJECT(o), EWL_FLAG_FILL_NONE);
ewl_container_child_append(EWL_CONTAINER(box), o);
ewl_widget_show(o);
 
return 1;
-}
-
-static int
-timer_cb_in(void *data)
-{
-   Ewl_Widget *button = EWL_WIDGET(data);
-
-   ewl_callback_call(button, EWL_CALLBACK_MOUSE_IN);
-
-   cur_timer = ecore_timer_add(2.0, timer_cb_out, data);
-
-   return 0;
-}
-
-static int
-timer_cb_out(void *data)
-{
-   Ewl_Widget *button = EWL_WIDGET(data);
-
-   ewl_callback_call(button, EWL_CALLBACK_MOUSE_OUT);
-
-   cur_timer = ecore_timer_add(2.0, timer_cb_in, data);
-
-   return 0;
-}
-
-static void
-cb_destroy(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__,
-   void *data __UNUSED__)
-{
-   if (cur_timer)
-   ecore_timer_del(cur_timer);
-   cur_timer = NULL;
 }



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
configure.in 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/configure.in,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -3 -r1.118 -r1.119
--- configure.in9 Nov 2007 06:39:22 -   1.118
+++ configure.in14 Nov 2007 21:55:28 -  1.119
@@ -1,9 +1,12 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(configure.in)
+AC_INIT(ewl, 0.5.1.011, [EMAIL PROTECTED])
+AC_PREREQ(2.52)
+AC_CONFIG_SRCDIR(configure.in)
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
-AM_INIT_AUTOMAKE(ewl, 0.5.1.011)
+
+AM_INIT_AUTOMAKE(1.6 dist-bzip2)
 AM_CONFIG_HEADER(ewl-config.h)
 
 AC_ISC_POSIX
@@ -11,38 +14,14 @@
 AM_PROG_CC_STDC
 AC_HEADER_STDC
 AC_C_CONST
-AM_ENABLE_SHARED
-AM_PROG_LIBTOOL
 AC_C___ATTRIBUTE__
-AC_FUNC_ALLOCA
 
-dnl Check for Solaris or other OS
-case $host in
- *-sun-*)
-AC_DEFINE(HAVE_SUN, 1, [Support for SunOS/Solaris])
-;;
- *) ;;
-esac
-
-dnl Set PACKAGE_LOCALE_DIR in config.h.
-# if test x${prefix} = xNONE; then
-#   AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, 
${ac_default_prefix}/${PACKAGE}/locale, [Locale data directory])
-# else
-#   AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, ${prefix}/${PACKAGE}/locale, 
[Locale data directory])
-# fi
-
-dnl Set PACKAGE_SYSCONF_DIR in config.h.
-AC_DEFINE_DIR([PACKAGE_SYSCONF_DIR], [sysconfdir], [System Configuration 
Directory.])
-
-dnl Set PACKAGE_DATA_DIR in config.h.
-AC_DEFINE_DIR([PACKAGE_DATA_DIR], [datadir], [Shared Data Directory.])
-
-dnl Set PACKAGE_LIB_DIR in config.h.
-AC_DEFINE_DIR([PACKAGE_LIB_DIR], [libdir], [Library Module Directory.])
-
-dnl Set PACKAGE_SOURCE_DIR in config.h.
-packagesrcdir=`cd $srcdir  pwd`
-AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, ${packagesrcdir}, [Source code 
directory])
+AC_LIBTOOL_WIN32_DLL
+define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl
+define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
+AC_PROG_LIBTOOL
+
+AC_FUNC_ALLOCA
 
 dnl Use -Wall if we have gcc.
 changequote(,)dnl
@@ -54,255 +33,74 @@
 fi
 changequote([,])dnl
 
-PCFLAGS=$CFLAGS
-
 have_evas=no
 PKG_CHECK_MODULES(EVAS, [evas = 0.9.9], [have_evas=yes])
-CFLAGS=$EVAS_CFLAGS $CFLAGS
 AM_CONDITIONAL(EWL_ENABLE_EVAS, test x$have_evas = xyes)
 
 PKG_CHECK_MODULES(EFREET, [
 efreet = 0.0.3
 efreet-mime
 ])
-CFLAGS=$EFREET_CFLAGS $CFLAGS
 
 PKG_CHECK_MODULES(ECORE, [
   ecore-txt
   ecore-file
 ])
-CFLAGS=$ECORE_CFLAGS $CFLAGS
-
-dnl software X11
-AC_ARG_ENABLE(software-x11,
-  [
-AC_HELP_STRING(
-  [--enable-software-x11],
-  [enable software X11 support])
-  ],
-  [enable_software_x11=$enableval],
-  [enable_software_x11=auto])
-
-if test x$enable_software_x11 != xno ; then
-  PKG_CHECK_MODULES(EVAS_SOFTWARE_X11,
-[evas-software-x11 = 0.9.9],
-[
-  PKG_CHECK_MODULES(ECORE_X,
-[ecore-x = 0.9.9],
-[have_software_x11=yes],
-[have_software_x11=no])
-],
-[have_software_x11=no])
-  if test x$have_software_x11 = xyes ; then
-AC_DEFINE(ENABLE_EWL_SOFTWARE_X11, 1, [Enable X11 Software])
-  elif test x$enable_software_x11 = xyes ; then
-AC_MSG_ERROR(software X11 requested but no evas/ecore support found)
-  fi
-fi
-AM_CONDITIONAL(EWL_ENABLE_EVAS_SOFTWARE_X11, test x$have_software_x11 = xyes)
 
-dnl software X11 16 bpp
-AC_ARG_ENABLE(software-16-x11,
-  [
-AC_HELP_STRING(
-  [--enable-software-16-x11],
-  [enable software 16 bpp X11 support])
-  ],
-  [enable_software_16_x11=$enableval],
-  [enable_software_16_x11=auto])
+PKG_CHECK_MODULES(EDJE, [edje = 0.5.0])
 
-if test x$enable_software_16_x11 != xno ; then
-  PKG_CHECK_MODULES(EVAS_SOFTWARE_16_X11,
-[evas-software-16-x11 = 0.9.9],
-[
-  PKG_CHECK_MODULES(ECORE_X,
-[ecore-x = 0.9.9],
-[have_software_16_x11=yes],
-[have_software_16_x11=no])
-],
-[have_software_16_x11=no])
-  if test x$have_software_16_x11 = xyes ; then
-AC_DEFINE(ENABLE_EWL_SOFTWARE_16_X11, 1, [Enable X11 16 bpp Software])
-  elif test x$enable_software_16_x11 = xyes ; then
-

E CVS: libs/ewl pfritz

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/notebook


Modified Files:
ewl_notebook.c 


Log Message:
use ewl_checkbutton_checked_set() instead of ewl_radiobutton_checked_set()
NOTE:
ewl_radiobutton_checked_set() and ewl_radiobutton_is_checked() are going to be 
removed soon.

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/notebook/ewl_notebook.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_notebook.c  23 Aug 2007 05:26:46 -  1.7
+++ ewl_notebook.c  14 Nov 2007 21:15:01 -  1.8
@@ -248,7 +248,7 @@
EWL_RADIOBUTTON(o2));
 
if (!strcmp(alignment[i], center))
-   ewl_radiobutton_checked_set(EWL_RADIOBUTTON(o), TRUE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(o), TRUE);
 
ewl_widget_show(o);
 
@@ -275,7 +275,7 @@
EWL_RADIOBUTTON(o2));
 
if (!strcmp(alignment[i], top))
-   ewl_radiobutton_checked_set(EWL_RADIOBUTTON(o), TRUE);
+   ewl_checkbutton_checked_set(EWL_CHECKBUTTON(o), TRUE);
 
ewl_widget_show(o);
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 28 Oct 2007 14:24:44 -  1.5
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.6
@@ -1,12 +1,11 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas \
-   -I$(top_builddir)/src/engines/evas \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas \
+-I$(top_builddir)/src/engines/evas \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
@@ -15,13 +14,11 @@
 pkg_LTLIBRARIES = evas.la
 
 evas_la_SOURCES = \
-   Ewl_Engine_Evas.h \
-   ewl_engine_evas.c
+Ewl_Engine_Evas.h \
+ewl_engine_evas.c
 
 evas_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas_gl_x11


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_gl_x11/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 28 Oct 2007 16:02:39 -  1.6
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.7
@@ -1,12 +1,12 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas_gl_x11 \
-   -I$(top_builddir)/src/engines/evas_gl_x11 \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas_gl_x11 \
+-I$(top_builddir)/src/engines/evas_gl_x11 \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
@@ -15,13 +15,11 @@
 pkg_LTLIBRARIES = evas_gl_x11.la
 
 evas_gl_x11_la_SOURCES = \
-   Ewl_Engine_Evas_Gl_X11.h \
-   ewl_engine_evas_gl_x11.c
+Ewl_Engine_Evas_Gl_X11.h \
+ewl_engine_evas_gl_x11.c
 
 evas_gl_x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_gl_x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_gl_x11_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_gl_x11_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas_software_x11


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_software_x11/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 29 Mar 2007 19:35:05 -  1.5
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.6
@@ -1,12 +1,12 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas_software_x11 \
-   -I$(top_builddir)/src/engines/evas_software_x11 \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas_software_x11 \
+-I$(top_builddir)/src/engines/evas_software_x11 \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
@@ -15,13 +15,11 @@
 pkg_LTLIBRARIES = evas_software_x11.la
 
 evas_software_x11_la_SOURCES = \
-   Ewl_Engine_Evas_Software_X11.h \
-   ewl_engine_evas_software_x11.c
+Ewl_Engine_Evas_Software_X11.h \
+ewl_engine_evas_software_x11.c
 
 evas_software_x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_software_x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_software_x11_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_software_x11_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e urandom

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : urandom
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_intl


Modified Files:
e_int_config_intl.c 


Log Message:
Most languages have been translated, using wikipedia.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_intl/e_int_config_intl.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e_int_config_intl.c 13 Nov 2007 05:58:24 -  1.4
+++ e_int_config_intl.c 14 Nov 2007 22:20:45 -  1.5
@@ -128,140 +128,140 @@
 };
 
 const E_Intl_Pair language_predefined_pairs[ ] = {
-   {aa, Afar},
+   {aa, Qafár af},
{af, Afrikaans},
{ak, Akan},
-   {am, Amharic},
-   {an, Aragonese},
-   {ar, Arabic},
-   {as, Assamese},
-   {az, Azerbaijani},
-   {be, Belarusian},
-   {bg, Bulgarian},
-   {bn, Bengali},
-   {br, Breton},
-   {bs, Bosnian},
-   {byn, Blin},
-   {ca, Catalan},
+   {am, አማርኛ},
+   {an, Aragonés},
+   {ar, ةيبرعلا},
+   {as, অসমীয়া},
+   {az, Azərbaycan dili},
+   {be, Беларуская мова},
+   {bg, Български},
+   {bn, বাংলা},
+   {br, Brezhoneg},
+   {bs, Bosanski},
+   {byn, ብሊና},
+   {ca, Català},
{cch, Atsam},
-   {cs, Czech},
-   {cy, Welsh},
-   {da, Danish},
-   {de, German},
-   {dv, Divehi},
+   {cs, Čeština},
+   {cy, Cymraeg},
+   {da, Dansk},
+   {de, Deutsch},
+   {dv, ދިވެހި},
{dz, Dzongkha},
-   {ee, Ewe},
-   {el, Greek},
+   {ee, Eʋegbe},
+   {el, Ελληνικά},
{en, English},
{eo, Esperanto},
-   {es, Spanish},
-   {et, Estonian},
-   {eu, Basque},
-   {fa, Persian},
-   {fi, Finnish},
-   {fo, Faroese},
-   {fr, French},
-   {fur, Friulian},
-   {ga, Irish},
-   {gaa, Ga},
-   {gez, Geez},
-   {gl, Galician},
+   {es, Español},
+   {et, Eesti keel},
+   {eu, Euskara},
+   {fa, یسراف},
+   {fi, Suomi},
+   {fo, Føroyskt},
+   {fr, Français},
+   {fur, Furlan},
+   {ga, Gaeilge},
+   {gaa, Gã},
+   {gez, ግዕዝ},
+   {gl, Galego},
{gu, Gujarati},
-   {gv, Manx},
+   {gv, Yn Ghaelg},
{ha, Hausa},
-   {haw, Hawaiian},
-   {he, Hebrew},
+   {haw, ʻŌlelo Hawaiʻi},
+   {he, תירבע},
{hi, Hindi},
-   {hr, Croatian},
-   {hu, Hungarian},
-   {hy, Armenian},
+   {hr, Hrvatski},
+   {hu, Magyar},
+   {hy, Հայերեն},
{ia, Interlingua},
{id, Indonesian},
{ig, Igbo},
-   {is, Icelandic},
-   {it, Italian},
-   {iu, Inuktitut},
-   {iw, Hebrew},
-   {ja, Japanese},
-   {ka, Georgian},
+   {is, Íslenska},
+   {it, Italiano},
+   {iu, ᐃᓄᒃᑎᑐᑦ},
+   {iw, תירבע},
+   {ja, 日本語},
+   {ka, ქართული},
{kaj, Jju},
-   {kam, Kamba},
+   {kam, Kikamba},
{kcg, Tyap},
{kfo, Koro},
-   {kk, Kazakh},
+   {kk, Qazaq},
{kl, Kalaallisut},
{km, Khmer},
-   {kn, Kannada},
-   {ko, Korean},
+   {kn, ಕನ್ನಡ},
+   {ko, 한국어},
{kok, Konkani},
-   {ku, Kurdish},
-   {kw, Cornish},
-   {ky, Kirghiz},
-   {ln, Lingala},
-   {lo, Lao},
-   {lt, Lithuanian},
-   {lv, Latvian},
-   {mi, Maori},
-   {mk, Macedonian},
-   {ml, Malayalam},
-   {mn, Mongolian},
-   {mr, Marathi},
-   {ms, Malay},
-   {mt, Maltese},
-   {nb, Norwegian Bokmål},
-   {ne, Nepali},
-   {nl, Dutch},
+   {ku, یدروك},
+   {kw, Kernowek},
+   {ky, Кыргыз тили},
+   {ln, Lingála},
+   {lo, ພາສາລາວ},
+   {lt, Lietuvių kalba},
+   {lv, Latviešu},
+   {mi, Te Reo Māori},
+   {mk, Македонски},
+   {ml, മലയാളം},
+   {mn, Монгол},
+   {mr, मराठी},
+   {ms, Bahasa Melayu},
+   {mt, Malti},
+   {nb, Norsk},
+   {ne, नेपाली},
+   {nl, Nederlands},
{nn, Norwegian Nynorsk},
{no, Norwegian},
-   {nr, South Ndebele},
-   {nso, Northern Sotho},
-   {ny, Nyanja; Chichewa; Chewa},
+   {nr, isiNdebele},
+   {nso, Sesotho sa Leboa},
+   {ny, Chicheŵa},
{oc, Occitan},
{om, Oromo},
-   {or, Oriya},
-   {pa, Punjabi},
-   {pl, Polish},
-   {ps, Pashto},
-   {pt, Portuguese},
-   {ro, Romanian},
-   {ru, Russian},
+   {or, ଓଡ଼ିଆ},
+   {pa, ਪੰਜਾਬੀ},
+   {pl, Polski},
+   {ps, وتښپ},
+   {pt, Português},
+   {ro, Română},
+   {ru, Русский},
{rw, Kinyarwanda},
-  

E CVS: apps/e urandom

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : urandom
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
AUTHORS 


Log Message:
Most languages have been translated, using wikipedia.

===
RCS file: /cvs/e/e17/apps/e/AUTHORS,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- AUTHORS 27 Jul 2007 19:17:07 -  1.37
+++ AUTHORS 14 Nov 2007 22:20:40 -  1.38
@@ -8,7 +8,7 @@
 Aleksej Struk [EMAIL PROTECTED]
 Brian Mattern [EMAIL PROTECTED]
 devilhorns (Christopher Michael) [EMAIL PROTECTED]
-Viktor Kojouharov [EMAIL PROTECTED]
+/dev/urandom (Viktor Kojouharov) [EMAIL PROTECTED]
 ilLogict [EMAIL PROTECTED]
 Stafford Horne [EMAIL PROTECTED]
 Cedric Bail [EMAIL PROTECTED]



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/image_thumbnail


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/image_thumbnail/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:56 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:29 -  1.2
@@ -5,6 +5,8 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
+   -DPACKAGE_SOURCE_DIR=\$(packagesrcdir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas_software_sdl


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_software_sdl/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2007 02:00:57 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.2
@@ -1,12 +1,12 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas_software_sdl \
-   -I$(top_builddir)/src/engines/evas_software_sdl \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas_software_sdl \
+-I$(top_builddir)/src/engines/evas_software_sdl \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
@@ -15,13 +15,11 @@
 pkg_LTLIBRARIES = evas_software_sdl.la
 
 evas_software_sdl_la_SOURCES = \
-   Ewl_Engine_Evas_Software_SDL.h \
-   ewl_engine_evas_software_sdl.c
+Ewl_Engine_Evas_Software_SDL.h \
+ewl_engine_evas_software_sdl.c
 
 evas_software_sdl_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_software_sdl_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_software_sdl_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_software_sdl_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/freebox


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/freebox/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:55 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/tools


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/tools/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 1 Oct 2006 07:27:11 -   1.4
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.5
@@ -1,4 +1,3 @@
-AUTOMAKE_OPTIONS = 1.4 foreign
 MAINTAINERCLEANFILES = Makefile.in
 
 SUBDIRS= ewl_config



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/plugins


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/plugins/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 4 Oct 2006 15:42:55 -   1.4
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.5
@@ -1,7 +1,6 @@
-AUTOMAKE_OPTIONS   =   1.4 foreign
 MAINTAINERCLEANFILES   =   Makefile.in
 
-INCLUDES   =   -I$(top_srcdir)/src/lib \
+AM_CPPFLAGS=   -I$(top_srcdir)/src/lib \
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
@@ -12,28 +11,23 @@
 
 pkgdir  = $(libdir)/ewl/plugins
 
-pkg_LTLIBRARIES= ewl_io_manager_text_plugin.la \
+pkg_LTLIBRARIES= \
+ewl_io_manager_text_plugin.la \
 ewl_io_manager_text_c_plugin.la \
 ewl_io_manager_image_plugin.la
 
 ewl_io_manager_text_plugin_la_SOURCES   = ewl_io_manager_text_plugin.c
 ewl_io_manager_text_plugin_la_LIBADD= $(top_builddir)/src/lib/libewl.la
-ewl_io_manager_text_plugin_la_LDFLAGS  = -module -avoid-version \
- -L$(top_builddir)/src/lib \
- -L$(top_builddir)/src/lib/.libs
-ewl_io_manager_text_plugin_la_DEPENDENCIES = 
+ewl_io_manager_text_plugin_la_LDFLAGS  = -module -avoid-version
+ewl_io_manager_text_plugin_la_DEPENDENCIES =
 
 ewl_io_manager_text_c_plugin_la_SOURCES   = ewl_io_manager_text_c_plugin.c
 ewl_io_manager_text_c_plugin_la_LIBADD= $(top_builddir)/src/lib/libewl.la
-ewl_io_manager_text_c_plugin_la_LDFLAGS= -module -avoid-version \
- -L$(top_builddir)/src/lib \
- -L$(top_builddir)/src/lib/.libs
-ewl_io_manager_text_c_plugin_la_DEPENDENCIES = 
+ewl_io_manager_text_c_plugin_la_LDFLAGS= -module -avoid-version
+ewl_io_manager_text_c_plugin_la_DEPENDENCIES =
 
 ewl_io_manager_image_plugin_la_SOURCES   = ewl_io_manager_image_plugin.c
 ewl_io_manager_image_plugin_la_LIBADD= $(top_builddir)/src/lib/libewl.la
-ewl_io_manager_image_plugin_la_LDFLAGS = -module -avoid-version \
- -L$(top_builddir)/src/lib \
- -L$(top_builddir)/src/lib/.libs
-ewl_io_manager_image_plugin_la_DEPENDENCIES = 
+ewl_io_manager_image_plugin_la_LDFLAGS = -module -avoid-version
+ewl_io_manager_image_plugin_la_DEPENDENCIES =
 



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e urandom

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : urandom
Project : e17
Module  : apps/e

Dir : e17/apps/e/po


Modified Files:
bg.po 


Log Message:
update




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/histogram


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/histogram/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 17 Oct 2006 04:59:55 -  1.1
+++ Makefile.am 14 Nov 2007 21:55:28 -  1.2
@@ -5,6 +5,7 @@
-I$(top_builddir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_builddir)/src/bin \
+   -DPACKAGE_DATA_DIR=\$(datadir)\ \
@EDJE_CFLAGS@ \
@ECORE_CFLAGS@ \
@EVAS_CFLAGS@ \



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl doursse

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/engines/evas_xrender_x11


Modified Files:
Makefile.am 


Log Message:

build system update:

configure.in:

 * use non deprecated version of autoconf, autoamake and libtool macro
 * remove the check of C++ and fortran compiler by libtool.
 * add AC_LIBTOOL_WIN32_DLL
 * pass variables based on $prefix into Makefile
 * remove the definition of HAVE_SUN (not used anymore)
 * use an m4 macro to check for the engines
 * disable the xcb engine for now
 * add INTERFACE_VERSION for the version of the shared libs (instead of
   the current long name.
 * remove the PCFLAGS as it's not used at all

Makefile.am in general:

 * remove AUTOMAKE_OPTIONS variable
 * use INTERFACE_VERSION when needed
 * remove -L flag passed to *_LDFLAGS (not needed)
 * use AM_CPPFLAGS instead of INCLUDES (the latter is deprecated)

Makefile.am of the engines:

 * add the needed *_CFLAGS to AM_CPPFLAGS

===
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_xrender_x11/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 29 Mar 2007 19:35:05 -  1.5
+++ Makefile.am 14 Nov 2007 21:55:30 -  1.6
@@ -1,12 +1,12 @@
-MAINTAINERCLEANFILES = Makefile Makefile.in
+MAINTAINERCLEANFILES = Makefile.in
 
-AUTOMAKE_OPTIONS = 1.4 foreign
-
-INCLUDES = -I$(top_srcdir)/src/lib \
-   -I$(top_builddir)/src/lib \
-   -I$(top_srcdir)/src/engines/evas_xrender_x11 \
-   -I$(top_builddir)/src/engines/evas_xrender_x11 \
-   @ECORE_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-I$(top_srcdir)/src/engines/evas_xrender_x11 \
+-I$(top_builddir)/src/engines/evas_xrender_x11 \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
 pkgdir = $(libdir)/ewl/engines
 
@@ -15,13 +15,11 @@
 pkg_LTLIBRARIES = evas_xrender_x11.la
 
 evas_xrender_x11_la_SOURCES = \
-   Ewl_Engine_Evas_Xrender_X11.h \
-   ewl_engine_evas_xrender_x11.c
+Ewl_Engine_Evas_Xrender_X11.h \
+ewl_engine_evas_xrender_x11.c
 
 evas_xrender_x11_la_LIBADD = $(top_builddir)/src/lib/libewl.la
-evas_xrender_x11_la_LDFLAGS = -module -version-info 
@INTERFACE_CURRENT@:@INTERFACE_REVISION@:@INTERFACE_AGE@ \
-   -L$(top_builddir)/src/lib \
-   -L$(top_builddir)/src/lib/.libs
+evas_xrender_x11_la_LDFLAGS = -module -version-info @INTERFACE_VERSION@
 evas_xrender_x11_la_DEPENDENCIES =
 
 endif



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: jethomas jethomas

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : devs
Module  : jethomas

Dir : devs/jethomas


Modified Files:
info.txt 


Log Message:

Spell my name properly

===
RCS file: /cvs/e/devs/jethomas/info.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- info.txt31 Oct 2007 17:10:34 -  1.2
+++ info.txt14 Nov 2007 23:00:38 -  1.3
@@ -1,6 +1,6 @@
 Login:  jethomas
 IRC Nick:   jethomas
-Name:   Jamie Thomas
+Name:   Jaime Thomas
 Location:   Hamilton, Ontario, Canada
 E-Mail: [EMAIL PROTECTED]
 WWW:



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot devilhorns

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
configure.in 


Log Message:
Fix formatting a bit.

===
RCS file: /cvs/e/e_modules/screenshot/configure.in,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- configure.in13 Nov 2007 06:39:03 -  1.29
+++ configure.in15 Nov 2007 02:54:57 -  1.30
@@ -70,14 +70,14 @@
 if test -z $SCROT; then
 AC_MSG_WARN([Scrot not found])
 else
-   AC_DEFINE_UNQUOTED(HAVE_SCROT, 1, You Have Scrot)
-   AC_DEFINE_UNQUOTED(SCROT_PATH, $SCROT, You Have Scrot)
+AC_DEFINE_UNQUOTED(HAVE_SCROT, 1, You Have Scrot)
+AC_DEFINE_UNQUOTED(SCROT_PATH, $SCROT, You Have Scrot)
 fi
 
 if test -z $IMPORT; then
-   if test -z $SCROT; then
-   AC_MSG_ERROR(You do not have import or scrot 
installed.)  
-   fi
+   if test -z $SCROT; then
+  AC_MSG_ERROR(You do not have import or scrot installed.)
+   fi
 fi
 
 AC_OUTPUT([



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore raster

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_x


Modified Files:
Ecore_X.h ecore_x_dnd.c ecore_x_events.c ecore_x_private.h 
ecore_x_window.c ecore_xcb_dnd.c 


Log Message:


improve xdnd performance by thousdands of times. it was HORRID. note the
comments in the code.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/Ecore_X.h,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -3 -r1.191 -r1.192
--- Ecore_X.h   5 Nov 2007 20:47:29 -   1.191
+++ Ecore_X.h   15 Nov 2007 04:48:36 -  1.192
@@ -1090,6 +1090,7 @@
 EAPI void ecore_x_window_defaults_set(Ecore_X_Window win);
 EAPI int  ecore_x_window_visible_get(Ecore_X_Window win);
 EAPI Ecore_X_Window   
ecore_x_window_shadow_tree_at_xy_with_skip_get(Ecore_X_Window base, int x, int 
y, Ecore_X_Window *skip, int skip_num);
+EAPI Ecore_X_Window   ecore_x_window_shadow_parent_get(Ecore_X_Window root, 
Ecore_X_Window win);
 EAPI void ecore_x_window_shadow_tree_flush(void);
 EAPI Ecore_X_Window   ecore_x_window_root_get(Ecore_X_Window win);
 EAPI Ecore_X_Window   ecore_x_window_at_xy_get(int x, int y);
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_dnd.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -3 -r1.32 -r1.33
--- ecore_x_dnd.c   5 Oct 2007 12:39:06 -   1.32
+++ ecore_x_dnd.c   15 Nov 2007 04:48:36 -  1.33
@@ -43,6 +43,14 @@
 static Ecore_X_DND_Target *_target = NULL;
 static int _ecore_x_dnd_init_count = 0;
 
+typedef struct _Version_Cache_Item
+{
+   Ecore_X_Window win;
+   int ver;
+} Version_Cache_Item;
+static Version_Cache_Item *_version_cache = NULL;
+static int _version_cache_num = 0, _version_cache_alloc = 0;
+
 void
 _ecore_x_dnd_init(void)
 {
@@ -163,15 +171,50 @@
unsigned char *prop_data;
int num;
 
+   // this looks hacky - and it is, but we need a way of caching info about
+   // a window while dragging, because we literally query this every mouse
+   // move and going to and from x multiple times per move is EXPENSIVE
+   // and slows things down, puts lots of load on x etc.
+   if (_source-state == ECORE_X_DND_SOURCE_DRAGGING)
+ {
+   if (_version_cache)
+ {
+int i;
+
+for (i = 0; i  _version_cache_num; i++)
+  {
+ if (_version_cache[i].win == win)
+   return _version_cache[i].ver;
+  }
+ }
+ }
+ 
if (ecore_x_window_prop_property_get(win, ECORE_X_ATOM_XDND_AWARE,
 XA_ATOM, 32, prop_data, num))
  {
int version = (int) *prop_data;
free(prop_data);
+   if (_source-state == ECORE_X_DND_SOURCE_DRAGGING)
+ {
+_version_cache_num++;
+if (_version_cache_num  _version_cache_alloc)
+  _version_cache_alloc += 16;
+_version_cache = realloc(_version_cache, _version_cache_alloc * 
sizeof(Version_Cache_Item));
+_version_cache[_version_cache_num - 1].win = win;
+_version_cache[_version_cache_num - 1].ver = version;
+ }
return version;
  }
-   else
- return 0;
+   if (_source-state == ECORE_X_DND_SOURCE_DRAGGING)
+ {
+   _version_cache_num++;
+   if (_version_cache_num  _version_cache_alloc)
+ _version_cache_alloc += 16;
+   _version_cache = realloc(_version_cache, _version_cache_alloc * 
sizeof(Version_Cache_Item));
+   _version_cache[_version_cache_num - 1].win = win;
+   _version_cache[_version_cache_num - 1].ver = 0;
+ }
+   return 0;
 }
 
 EAPI int
@@ -331,6 +374,15 @@
if (!ecore_x_selection_xdnd_set(source, data, size))
  return 0;
 
+   if (_version_cache)
+ {
+   free(_version_cache);
+   _version_cache = NULL;
+   _version_cache_num = 0;
+   _version_cache_alloc = 0;
+ }
+   ecore_x_window_shadow_tree_flush();
+   
_source-win = source;
ecore_x_window_ignore_set(_source-win, 1);
_source-state = ECORE_X_DND_SOURCE_DRAGGING;
@@ -462,7 +514,7 @@
 }
 
 void
-_ecore_x_dnd_drag(int x, int y)
+_ecore_x_dnd_drag(Ecore_X_Window root, int x, int y)
 {
XEvent  xev;
Ecore_X_Window  win;
@@ -480,9 +532,17 @@
 
/* Attempt to find a DND-capable window under the cursor */
skip = ecore_x_window_ignore_list(num);
-   win = ecore_x_window_at_xy_with_skip_get(x, y, skip, num);
+// WARNING - this function is HEAVY. it goes to and from x a LOT walking the
+// window tree - use the SHADOW version - makes a 1-off tree copy, then uses
+// that instead.
+//   win = ecore_x_window_at_xy_with_skip_get(x, y, skip, num);
+   win = ecore_x_window_shadow_tree_at_xy_with_skip_get(root, x, y, skip, num);
+
+// NOTE: This now uses the shadow version to 

E CVS: apps/e raster

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_dnd.c 


Log Message:


prtintfs disabled in dnd - was hunting the dnd performance bug. fixed.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_dnd.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -3 -r1.64 -r1.65
--- e_dnd.c 13 Nov 2007 23:30:07 -  1.64
+++ e_dnd.c 15 Nov 2007 04:48:53 -  1.65
@@ -55,6 +55,7 @@
 static Evas_Hash *_drop_win_hash = NULL;
 
 static Ecore_X_Window _drag_win = 0;
+static Ecore_X_Window _drag_win_root = 0;
 
 static Evas_List *_drag_list = NULL;
 static E_Drag*_drag_current = NULL;
@@ -219,6 +220,7 @@
drag-x = x;
drag-y = y;
drag-xy_update = 1;
+//   printf(DND MOVE %i %i\n, x, y);
 }
 
 EAPI void
@@ -247,6 +249,7 @@
_drag_win = ecore_x_window_input_new(drag-container-win, 
drag-container-x, drag-container-y,
drag-container-w, drag-container-h);
+   _drag_win_root = ecore_x_window_root_get(_drag_win);
ecore_x_window_show(_drag_win);
if (!e_grabinput_get(_drag_win, 1, _drag_win))
  {
@@ -478,6 +481,7 @@
  }
 if (drag-xy_update)
  {
+//  printf(DND REAL MOVE\n);
 ecore_evas_move(drag-ecore_evas, drag-x, drag-y);
 e_container_shape_move(drag-shape, drag-x, drag-y);
 drag-xy_update = 0;
@@ -520,6 +524,7 @@
drag-x = x - drag-dx;
drag-y = y - drag-dy;
drag-xy_update = 1;
+//   printf(DND MOVE 2 %i %i\n, x, y);
 }
 
 static void
@@ -653,6 +658,7 @@
int dx, dy, dw, dh;
Ecore_X_Window win, ignore_win[2];
 
+//   double t1 = ecore_time_get(); 
if (_drag_current)
  {
ignore_win[0] = _drag_current-evas_win;
@@ -762,6 +768,8 @@
   }
  }
  }
+//   double t2 = ecore_time_get() - t1; 
+//   printf(DND UPDATE %3.7f\n, t2); 
 }
 
 static void
@@ -992,7 +1000,7 @@
ev = event;
if (ev-win != _drag_win) return 1;
 
-   _e_drag_end(ecore_x_window_root_get(ev-win), ev-x, ev-y);
+   _e_drag_end(_drag_win_root, ev-x, ev-y);
 
return 1;
 }
@@ -1005,7 +1013,7 @@
ev = event;
if (ev-win != _drag_win) return 1;
 
-   _e_drag_update(ecore_x_window_root_get(ev-win), ev-x, ev-y);
+   _e_drag_update(_drag_win_root, ev-x, ev-y);
return 1;
 }
 
@@ -1137,8 +1145,14 @@
int active;
 
ev = event;
+//   double t1 = ecore_time_get(); 
id = e_util_winid_str_get(ev-win);
-   if (!evas_hash_find(_drop_win_hash, id)) return 1;
+   if (!evas_hash_find(_drop_win_hash, id))
+ {
+// double t2 = ecore_time_get() - t1; 
+// printf(DND POS EV 1 %3.7f\n, t2); 
+   return 1;
+ }
 
rect.x = 0;
rect.y = 0;
@@ -1160,9 +1174,11 @@
  }
else
  {
-   _e_drag_update(ecore_x_window_root_get(ev-win), ev-position.x, 
ev-position.y);
+   _e_drag_update(_drag_win_root, ev-position.x, ev-position.y);
ecore_x_dnd_send_status(1, 0, rect, ECORE_X_DND_ACTION_PRIVATE);
  }
+//   double t2 = ecore_time_get() - t1; 
+//   printf(DND POS EV 2 %3.7f\n, t2); 
return 1;
 }
 
@@ -1242,7 +1258,7 @@
for (i = 0; i  files-num_files; i++)
  l = evas_list_append(l, files-files[i]), printf(file: %s\n, 
files-files[i]);
_xdnd-data = l;
-   _e_drag_xdnd_end(ecore_x_window_root_get(ev-win), _xdnd-x, _xdnd-y);
+   _e_drag_xdnd_end(_drag_win_root, _xdnd-x, _xdnd-y);
evas_list_free(l);
  }
else if (!strcmp(text/x-moz-url, _xdnd-type))
@@ -1281,12 +1297,12 @@
l = evas_list_append(l, file);
 
_xdnd-data = l;
-   _e_drag_xdnd_end(ecore_x_window_root_get(ev-win), _xdnd-x, _xdnd-y);
+   _e_drag_xdnd_end(_drag_win_root, _xdnd-x, _xdnd-y);
evas_list_free(l);
  }
else
  {
-   _e_drag_xdnd_end(ecore_x_window_root_get(ev-win), _xdnd-x, _xdnd-y);
+   _e_drag_xdnd_end(_drag_win_root, _xdnd-x, _xdnd-y);
  }
/* FIXME: When to execute this? It could be executed in ecore_x after 
getting
 * the drop property... */



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto/epdf barbieri

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : proto/epdf

Dir : e17/proto/epdf/src/plugins/epsilon


Modified Files:
epsilon_thumbnailer.c 


Log Message:
Add missing include for stdlib.h, fixes missing calloc() prototype.

===
RCS file: /cvs/e/e17/proto/epdf/src/plugins/epsilon/epsilon_thumbnailer.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- epsilon_thumbnailer.c   30 Aug 2007 09:18:19 -  1.3
+++ epsilon_thumbnailer.c   15 Nov 2007 05:00:05 -  1.4
@@ -3,6 +3,7 @@
 #include Epsilon.h
 #include Epsilon_Plugin.h
 #include Epdf.h
+#include stdlib.h
 
 Imlib_Image
 epsilon_thumb_imlib_standardize ()



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto/epdf barbieri

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : proto/epdf

Dir : e17/proto/epdf/src/bin


Modified Files:
epdf_etk_test.c 


Log Message:
Update etk_init() usage.

===
RCS file: /cvs/e/e17/proto/epdf/src/bin/epdf_etk_test.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- epdf_etk_test.c 30 Aug 2007 09:18:19 -  1.11
+++ epdf_etk_test.c 15 Nov 2007 05:02:09 -  1.12
@@ -31,7 +31,7 @@
 return -1;
   }
 
-  etk_init (argc, argv);
+  etk_init (argc, argv);
 
   /* We open the pdf file */
   pdf = etk_pdf_new ();



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto/epdf barbieri

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : proto/epdf

Dir : e17/proto/epdf/src/bin


Modified Files:
epdf_esmart_test.c 


Log Message:
Add black background, avoid garbage on screen.

===
RCS file: /cvs/e/e17/proto/epdf/src/bin/epdf_esmart_test.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- epdf_esmart_test.c  16 Apr 2006 22:28:42 -  1.2
+++ epdf_esmart_test.c  15 Nov 2007 05:04:20 -  1.3
@@ -17,7 +17,7 @@
 {
   Ecore_Evas *ee;
   Evas *evas;
-  Evas_Object *o;
+  Evas_Object *o, *bg;
   char *filename;
   int page_number;
 
@@ -52,6 +52,12 @@
   
   evas = ecore_evas_get(ee);
 
+  bg = evas_object_rectangle_add(evas);
+  evas_object_color_set(bg, 0, 0, 0, 255);
+  evas_object_resize(bg, 600, 850);
+  evas_object_show(bg);
+  ecore_evas_data_set(ee, bg, bg);
+
   o = esmart_pdf_add (evas);
   if (!esmart_pdf_init (o)) {
 ecore_evas_shutdown ();
@@ -79,10 +85,12 @@
 {
Evas_Coord w, h;
Evas *evas;
+   Evas_Object *bg;

evas = ecore_evas_get(ee);
evas_output_viewport_get(evas, NULL, NULL, w, h);
-/*bg_resize(w, h); */
+   bg = ecore_evas_data_get(ee, bg);
+   evas_object_resize(bg, w, h);
 }
 
 static int



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_entry.c 


Log Message:
Remove extra blank line.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_entry.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -3 -r1.46 -r1.47
--- e_entry.c   14 Aug 2007 20:32:52 -  1.46
+++ e_entry.c   15 Nov 2007 06:29:10 -  1.47
@@ -563,7 +563,6 @@
if ((!selecting) ||
(!(text = e_editable_text_range_get(editable, start_pos, end_pos
  return;
-  
 
ecore_x_selection_primary_set(win-evas_win, text, strlen(text) + 1);
free(text);



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl jethomas

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/bin/tests/image


Modified Files:
ewl_image.c 


Log Message:

Fix tests as filedialog now returns full path to file

===
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/image/ewl_image.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ewl_image.c 11 Nov 2007 08:03:39 -  1.10
+++ ewl_image.c 15 Nov 2007 04:05:48 -  1.11
@@ -343,32 +343,14 @@
e = ev;
 
if (e-response == EWL_STOCK_OK) {
-   const char *path;
char *filename;
-   char *file;
-   int   l1;
-   int   l2;
 
-   path = ewl_filedialog_directory_get (EWL_FILEDIALOG (w));
filename = ewl_filedialog_selected_file_get (EWL_FILEDIALOG 
(w));
-   l1 = strlen (path);
-   l2 = strlen (filename);
-
-   if (!path || (path[0] == '\0'))
-   file = strdup (filename);
-   else {
-   file = (char *)malloc (sizeof (char) * (l1 + l2 + 2));
-   memcpy (file, path, l1);
-   file[l1] = '/';
-   memcpy (file + l1 + 1, filename, l2);
-   file [l1 + l2 + 1] = '\0';
-   }
-
-   printf(File open from image test: %s\n, file);
-   if (file) {
-   ewl_text_text_set(EWL_TEXT(entry), file);
+   printf(File open from image test: %s\n, filename);
+   if (filename) {
+   ewl_text_text_set(EWL_TEXT(entry), filename);
image_load();
-   free (file);
+   free (filename);
// free(path); FIXME: Is text widget allocated 
correctly?
}
}



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: www raster

2007-11-14 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : web
Module  : www

Dir : web/www/p/main8


Modified Files:
en-label 


Log Message:


Tracker is better

===
RCS file: /cvs/e/web/www/p/main8/en-label,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- en-label15 Nov 2007 07:21:52 -  1.3
+++ en-label15 Nov 2007 07:23:36 -  1.4
@@ -1 +1 @@
-Status
+Tracker



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs