E CVS: libs/edje horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/debian


Modified Files:
control 


Log Message:
build depenancy should be automake1.7, not automake-1.7

===
RCS file: /cvs/e/e17/libs/edje/debian/control,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- control 2 Apr 2006 03:15:00 -   1.10
+++ control 2 Apr 2006 08:12:51 -   1.11
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: libeet0-dev, libecore0-dev, libevas0-dev, libembryo0-dev, 
debhelper ( 4.0.0), automake-1.7 | automaken, libtool
+Build-Depends: libeet0-dev, libecore0-dev, libevas0-dev, libembryo0-dev, 
debhelper ( 4.0.0), automake1.7 | automaken, libtool
 Standards-Version: 3.6.1.0
 
 Package: edje0-bin




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_fonts.c 


Log Message:


increas textclass list in config and in .edc's

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_fonts.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_int_config_fonts.c1 Apr 2006 09:59:40 -   1.1
+++ e_int_config_fonts.c2 Apr 2006 08:19:17 -   1.2
@@ -42,10 +42,32 @@
 };
 
 const E_Text_Class_Pair text_class_predefined_names[ ] = {
-   { title_bar,  Border Title Bar},
-   { menu_item,  Menu Item},
-   { ilist_item, Menu List},
-   { tb_plain,   Text Block Plain Text},
+   { title_bar,  Title Bar},
+   { menu_item,  Menu Item},
+   { ilist_item, List Item},
+   { ilist_header,List Header},
+   { tb_plain,   Textblock Plain},
+   { tb_light,Textblock Light},
+   { tb_big,  Textblock Big},
+   { frame,   Frame},
+   { label,   Label},
+   { button, Buttons},
+   { radio_button,Radio Buttons},
+   { check_button,Check Buttons},
+   { move_text,   Move Text},
+   { resize_text, Resize Text},
+   { tlist,   Text List Item},
+   { winlist_title,   Winlist Title},
+   { configure,   Configure Heading},
+   { about_title, About Title},
+   { about_version,   About Version},
+   { button_text, About Text},
+   { desklock_title,  Desklock Title},
+   { desklock_passwd, Desklock Password},
+   { dialog_error,Dialog Error},
+   { exebuf_command,  Exebuf Command},
+   { fileman_typebuf, EFM Typebuf},
+   { fileman_icon,EFM Icon},
{ NULL, NULL}
 };
  
@@ -302,22 +324,22 @@
e_widget_list_object_append(o, of, 1, 1, 0.5);
 
/* Create Hinting Widgets */
-   of = e_widget_framelist_add(evas, _(Font Display Hinting), 0);
+   of = e_widget_framelist_add(evas, _(Hinting), 0);
e_widget_framelist_content_align_set(of, 0.5, 0.5);
rg = e_widget_radio_group_new((cfdata-hinting));

option_enable = evas_font_hinting_can_hint(evas, 
EVAS_FONT_HINTING_BYTECODE);
-   ob = e_widget_radio_add(evas, _(Bytecode Hinting), 0, rg);
+   ob = e_widget_radio_add(evas, _(Bytecode), 0, rg);
e_widget_disabled_set(ob, !option_enable);
e_widget_framelist_object_append(of, ob);
 
option_enable = evas_font_hinting_can_hint(evas, EVAS_FONT_HINTING_AUTO);
-   ob = e_widget_radio_add(evas, _(Automatic Hinting), 1, rg);
+   ob = e_widget_radio_add(evas, _(Automatic), 1, rg);
e_widget_disabled_set(ob, !option_enable);
e_widget_framelist_object_append(of, ob);
 
option_enable = evas_font_hinting_can_hint(evas, EVAS_FONT_HINTING_NONE);
-   ob = e_widget_radio_add(evas, _(No Hinting), 2, rg);
+   ob = e_widget_radio_add(evas, _(None), 2, rg);
e_widget_disabled_set(ob, !option_enable);
e_widget_framelist_object_append(of, ob);
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e_utils horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/e_utils

Dir : e17/apps/e_utils/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/apps/e_utils/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- rules   12 Jan 2005 18:57:32 -  1.1
+++ rules   2 Apr 2006 07:38:04 -   1.2
@@ -53,7 +53,9 @@
rm -f build-stamp configure-stamp
 
# Add here commands to clean up after the build process.
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean 
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/examine horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/examine

Dir : e17/apps/examine/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/apps/examine/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- rules   8 Oct 2004 21:44:52 -   1.1
+++ rules   2 Apr 2006 07:38:05 -   1.2
@@ -46,7 +46,9 @@
dh_testroot
rm -f build-stamp configure-stamp
 
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2_loaders horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/imlib2_loaders

Dir : e17/libs/imlib2_loaders/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/imlib2_loaders/debian/control,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- control 4 Mar 2005 13:34:55 -   1.9
+++ control 2 Apr 2006 08:34:51 -   1.10
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.0.0), libimlib2-dev, libedb1-dev, libeet0-dev, 
xlibs-dev, libfreetype6-dev, automaken, libtool
+Build-Depends: debhelper ( 4.0.0), libimlib2-dev, libedb1-dev, libeet0-dev, 
xlibs-dev, libfreetype6-dev, automake1.7 | automaken, libtool
 Standards-Version: 3.5.8.0
 
 Package: imlib2-loaders




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/express horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/express

Dir : e17/apps/express/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/apps/express/debian/control,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- control 13 Oct 2005 02:53:53 -  1.1
+++ control 2 Apr 2006 08:34:50 -   1.2
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Blake Barnett [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), automaken, libecore-dev, libedje-dev, 
libesmart-dev, libimlib2-dev
+Build-Depends: debhelper ( 3.0.0), automake1.7 | automaken, libecore-dev, 
libedje-dev, libesmart-dev, libimlib2-dev
 Standards-Version: 3.5.7.0
 
 Package: express




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/elicit horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/elicit

Dir : e17/apps/elicit/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/apps/elicit/debian/control,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- control 25 Aug 2005 21:50:48 -  1.2
+++ control 2 Apr 2006 08:34:50 -   1.3
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Blake Barnett [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), automaken, libecore-dev, libedje-dev, 
libesmart-dev, libimlib2-dev
+Build-Depends: debhelper ( 3.0.0), automake1.7 | automaken, libecore-dev, 
libedje-dev, libesmart-dev, libimlib2-dev
 Standards-Version: 3.5.7.0
 
 Package: elicit




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/ewl/debian/control,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- control 5 Oct 2005 23:21:09 -   1.7
+++ control 2 Apr 2006 08:34:51 -   1.8
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.0.0), libedb-dev, libevas-dev, libecore-dev, 
libedje-dev, libemotion-dev, automaken, libtool
+Build-Depends: debhelper ( 4.0.0), libedb-dev, libevas-dev, libecore-dev, 
libedje-dev, libemotion-dev, automake1.7 | automaken, libtool
 Standards-Version: 3.6.1.0
 
 Package: libewl0




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/emotion/debian/control,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- control 7 Oct 2005 22:30:36 -   1.3
+++ control 2 Apr 2006 08:34:51 -   1.4
@@ -1,7 +1,7 @@
 Source: emotion
 Priority: optional
 Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), libeet-dev, libevas-dev, libedje-dev, 
libecore-dev, libembryo-dev, libxine-dev, automaken, libtool, 
libgstreamer0.8-dev
+Build-Depends: debhelper (= 4.0.0), libeet-dev, libevas-dev, libedje-dev, 
libecore-dev, libembryo-dev, libxine-dev, automake1.7 | automaken, libtool, 
libgstreamer0.8-dev
 Standards-Version: 3.6.1.0
 
 Package: libemotion0




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/libs/engrave/debian/rules,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- rules   3 Dec 2004 23:37:35 -   1.2
+++ rules   2 Apr 2006 07:38:05 -   1.3
@@ -46,7 +46,9 @@
dh_testroot
rm -f build-stamp configure-stamp
 
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto chaos

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : proto

Dir : e17/proto/entropy/src


Modified Files:
plugin_helper.c 


Log Message:
* Plugin porting

===
RCS file: /cvs/e/e17/proto/entropy/src/plugin_helper.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- plugin_helper.c 2 Apr 2006 05:47:38 -   1.13
+++ plugin_helper.c 2 Apr 2006 05:55:14 -   1.14
@@ -117,15 +117,12 @@
 
 Ecore_List* entropy_plugin_filesystem_filelist_get(entropy_file_request* 
request)
 {
-   entropy_plugin* plugin;
-   Ecore_List* (*list_func)(entropy_file_request* request);
+   Entropy_Plugin_File* plugin;
Ecore_List* ret;
 
/*FIXME We should get the caller's current file plugin from the caller 
- i.e. the gui instance*/
-plugin = entropy_plugins_type_get_first(ENTROPY_PLUGIN_BACKEND_FILE 
,ENTROPY_PLUGIN_SUB_TYPE_ALL);
-   list_func = dlsym(plugin-dl_ref, filelist_get);
-
-   ret = (*list_func)(request);
+plugin = 
ENTROPY_PLUGIN_FILE(entropy_plugins_type_get_first(ENTROPY_PLUGIN_BACKEND_FILE 
,ENTROPY_PLUGIN_SUB_TYPE_ALL));
+   ret = (*plugin-file_functions.filelist_get)(request);
 
return ret;

@@ -133,14 +130,12 @@
 
 void entropy_plugin_filesystem_filestat_get(entropy_file_request* request)
 {
-   entropy_plugin* plugin;
-   Ecore_List* (*stat_func)(entropy_file_request* request);
+   Entropy_Plugin_File* plugin;
 
/*FIXME We should get the caller's current file plugin from the caller 
- i.e. the gui instance*/
-plugin = entropy_plugins_type_get_first(ENTROPY_PLUGIN_BACKEND_FILE 
,ENTROPY_PLUGIN_SUB_TYPE_ALL);
-   stat_func = dlsym(plugin-dl_ref, filestat_get);
+plugin = 
ENTROPY_PLUGIN_FILE(entropy_plugins_type_get_first(ENTROPY_PLUGIN_BACKEND_FILE 
,ENTROPY_PLUGIN_SUB_TYPE_ALL));
 
-   (*stat_func)(request);
+   (*plugin-file_functions.filestat_get)(request);
 }
 
 void entropy_plugin_thumbnail_request(entropy_gui_component_instance* 
requestor, entropy_generic_file* file, 
@@ -188,14 +183,13 @@
 
 void entropy_plugin_filesystem_directory_create(entropy_generic_file* file, 
char* dir) 
 {
+   Entropy_Plugin_File* fileplugin;
 entropy_plugin *plugin =
   entropy_plugins_type_get_first (
 ENTROPY_PLUGIN_BACKEND_FILE, ENTROPY_PLUGIN_SUB_TYPE_ALL);
 
-void (*dir_func)(entropy_generic_file*, char*);
-dir_func = dlsym(plugin-dl_ref, 
entropy_filesystem_directory_create);
-
-(*dir_func)(file, dir);
+   fileplugin = ENTROPY_PLUGIN_FILE(plugin);
+(*fileplugin-file_functions.directory_create)(file, dir);
 }
 
 
@@ -203,18 +197,11 @@
 int entropy_plugin_filesystem_file_copy(entropy_generic_file* source, char* 
dest, entropy_gui_component_instance* requester) 
 {
   entropy_gui_component_instance *instance = requester;
-  entropy_plugin *plugin =
-entropy_plugins_type_get_first (ENTROPY_PLUGIN_BACKEND_FILE,
-   ENTROPY_PLUGIN_SUB_TYPE_ALL);
-
-  void (*copy_func) (entropy_generic_file * source, char *dest_uri,
-entropy_gui_component_instance * requester);
-
-
-  /*Get the func ref */
-  copy_func = dlsym (plugin-dl_ref, entropy_filesystem_file_copy);
+  Entropy_Plugin_File* plugin =
+ENTROPY_PLUGIN_FILE(entropy_plugins_type_get_first 
(ENTROPY_PLUGIN_BACKEND_FILE,
+   ENTROPY_PLUGIN_SUB_TYPE_ALL));
 
-  (*copy_func) (source, dest,
+  (*plugin-file_functions.file_copy) (source, dest,
  instance);
 
   return 1;




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: elapse horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : misc
Module  : elapse

Dir : misc/elapse/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/misc/elapse/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- rules   26 Feb 2005 00:34:35 -  1.1
+++ rules   2 Apr 2006 07:34:48 -   1.2
@@ -53,7 +53,9 @@
rm -f build-stamp configure-stamp
 
# Add here commands to clean up after the build process.
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean 
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2 horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/imlib2

Dir : e17/libs/imlib2/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/libs/imlib2/debian/rules,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- rules   29 Jan 2005 18:07:08 -  1.18
+++ rules   2 Apr 2006 07:38:06 -   1.19
@@ -48,7 +48,9 @@
dh_testdir
rm -f build-stamp configure-stamp
 
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/examine horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/examine

Dir : e17/apps/examine/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/apps/examine/debian/control,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- control 29 Mar 2005 16:58:05 -  1.3
+++ control 2 Apr 2006 08:34:50 -   1.4
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Blake Barnett [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), automaken, libecore0-dev, libewl0-dev
+Build-Depends: debhelper ( 3.0.0), automake1.7 | automaken, libecore0-dev, 
libewl0-dev
 Standards-Version: 3.5.7.0
 
 Package: examine




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/engrave/debian/control,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- control 29 Mar 2005 16:49:56 -  1.4
+++ control 2 Apr 2006 08:34:51 -   1.5
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Blake Barnett [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), byacc, flex, automaken, libtool, 
libecore0-dev, libevas0-dev, libeet0-dev
+Build-Depends: debhelper ( 3.0.0), byacc, flex, automake1.7 | automaken, 
libtool, libecore0-dev, libevas0-dev, libeet0-dev
 Standards-Version: 3.5.7.0
 
 Package: libengrave0-dev




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon/debian


Modified Files:
changelog.in control 


Log Message:
Update maintainer to E17 Debian Team
Build depends on zlib1g-dev instead of libz-dev
Build depends on libeX0-dev instead of libeX-dev
prefer automake1.7
Add build depends on libpng12-dev, libevas0-dev, libecore0-dev, libedje0-dev

===
RCS file: /cvs/e/e17/libs/epsilon/debian/changelog.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- changelog.in7 Oct 2005 23:07:07 -   1.1
+++ changelog.in2 Apr 2006 08:18:21 -   1.2
@@ -2,5 +2,5 @@
 
   * a CVS snapshot release.
 
- -- Blake Barnett (shadoi) [EMAIL PROTECTED]  Fri, 23 Sep 2005 12:56:44 -0700
+ -- E17 Debian Team [EMAIL PROTECTED]  Sun, 02 Apr 2006 16:13:04 +0900
 
===
RCS file: /cvs/e/e17/libs/epsilon/debian/control,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- control 7 Oct 2005 23:07:07 -   1.5
+++ control 2 Apr 2006 08:18:21 -   1.6
@@ -1,8 +1,8 @@
 Source: epsilon
 Section: libs
 Priority: optional
-Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), libz-dev, libepeg-dev, libimlib2-dev, 
automaken, libtool
+Maintainer: E17 Debian Team [EMAIL PROTECTED]
+Build-Depends: debhelper ( 3.0.0), zlib1g-dev, libepeg0-dev, libevas0-dev, 
libecore0-dev, libedje0-dev, libimlib2-dev, libpng12-dev, automake1.7 | 
automaken, libtool
 Standards-Version: 3.5.7.0
 
 Package: libepsilon0-dev




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/debian


Modified Files:
control 


Log Message:
Build depends on x-dev so that X.h is available and ECORE_X support can be 
built, which is needed for esmart at least

===
RCS file: /cvs/e/e17/libs/ecore/debian/control,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- control 2 Apr 2006 07:53:15 -   1.19
+++ control 2 Apr 2006 08:26:26 -   1.20
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: E17 Debian Team [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.0.0), libedb1-dev, libeet0-dev, libevas0-dev, 
libssl-dev, libcurl3-dev, libfreetype6-dev, libdirectfb-dev, libxcursor-dev, 
automake1.7 | automaken, libtool, libxss-dev | xlibs-static-dev, libc6-dev | 
libc-dev, zlib1g-dev, libx11-dev, libxrender-dev, libxinerama-dev, 
libxrandr-dev, libxext-dev, libjpeg62-dev | libjpeg-mmx-dev, libfreetype6-dev, 
libexpat1-dev, libfam-dev | libgamin-dev, libxp-dev, libxext-dev
+Build-Depends: debhelper ( 4.0.0), libedb1-dev, libeet0-dev, libevas0-dev, 
libssl-dev, libcurl3-dev, libfreetype6-dev, libdirectfb-dev, libxcursor-dev, 
automake1.7 | automaken, libtool, libxss-dev | xlibs-static-dev, libc6-dev | 
libc-dev, zlib1g-dev, libx11-dev, libxrender-dev, libxinerama-dev, 
libxrandr-dev, libxext-dev, x-dev, libjpeg62-dev | libjpeg-mmx-dev, 
libfreetype6-dev, libexpat1-dev, libfam-dev | libgamin-dev, libxp-dev, 
libxext-dev
 Standards-Version: 3.6.1.0
 
 Package: libecore0
@@ -153,7 +153,7 @@
 Architecture: any
 Section: devel
 Architecture: any
-Depends: libecore0 (= ${Source-Version}), libc6-dev | libc-dev, libeet0-dev, 
libevas0-dev, zlib1g-dev, libssl-dev, libcurl3-dev, libdirectfb-dev, 
libx11-dev, libxcursor-dev, libxrender-dev, libxinerama-dev, libxrandr-dev, 
libxext-dev, libjpeg62-dev | libjpeg-mmx-dev, libfreetype6-dev, libexpat1-dev, 
libfam-dev | libgamin-dev, libxp-dev, libxext-dev, libxss-dev, libecore0-con, 
libecore0-config, libecore0-dbus, libecore0-directfb, libecore0-evas, 
libecore0-fb, libecore0-file, libecore0-ipc, libecore0-job, libecore0-txt, 
libecore0-x
+Depends: libecore0 (= ${Source-Version}), libc6-dev | libc-dev, libeet0-dev, 
libevas0-dev, zlib1g-dev, libssl-dev, libcurl3-dev, libdirectfb-dev, 
libx11-dev, libxcursor-dev, libxrender-dev, libxinerama-dev, libxrandr-dev, 
libxext-dev, x-dev, libjpeg62-dev | libjpeg-mmx-dev, libfreetype6-dev, 
libexpat1-dev, libfam-dev | libgamin-dev, libxp-dev, libxext-dev, libxss-dev, 
libecore0-con, libecore0-config, libecore0-dbus, libecore0-directfb, 
libecore0-evas, libecore0-fb, libecore0-file, libecore0-ipc, libecore0-job, 
libecore0-txt, libecore0-x
 Provides: libecore-dev
 Conflicts: libecore-dev
 Description: libecore0 headers, static libraries and documentation




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : weather

Dir : e_modules/weather/po


Added Files:
ja.po 


Log Message:
Set up message catalogue in init rather than shutdown :)
ja.po from Yasufumi Haga





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : misc
Module  : embrace

Dir : misc/embrace/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/misc/embrace/debian/rules,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- rules   16 Aug 2005 17:05:20 -  1.2
+++ rules   2 Apr 2006 07:34:48 -   1.3
@@ -53,7 +53,9 @@
rm -f build-stamp configure-stamp
 
# Add here commands to clean up after the build process.
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean 
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/epsilon/debian/control,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- control 2 Apr 2006 08:18:21 -   1.6
+++ control 2 Apr 2006 08:34:51 -   1.7
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: E17 Debian Team [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), zlib1g-dev, libepeg0-dev, libevas0-dev, 
libecore0-dev, libedje0-dev, libimlib2-dev, libpng12-dev, automake1.7 | 
automaken, libtool
+Build-Depends: debhelper ( 3.0.0), zlib1g-dev, libepeg0-dev, libevas0-dev, 
libecore0-dev, libedje0-dev, libimlib2-dev, libpng12-dev, automake1.7 | 
automake1.7 | automaken, libtool
 Standards-Version: 3.5.7.0
 
 Package: libepsilon0-dev




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/debian


Modified Files:
control 


Log Message:
Build Dependancy: Prefer new libx11-dev over old xlibs-dev
Build Dependancy: Add libxrender-dev

===
RCS file: /cvs/e/e17/libs/evas/debian/control,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- control 2 Apr 2006 03:11:28 -   1.18
+++ control 2 Apr 2006 08:22:54 -   1.19
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: E17 Debian Team [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.2.0), cdbs (= 0.4.3-1.1), libedb1-dev, 
libeet0-dev, libfreetype6-dev, libpng12-0-dev | libpng-dev, xlibs-dev | 
libx11-dev, zlib1g-dev | libz-dev, libjpeg62-dev, libfontconfig1-dev, 
autotools-dev
+Build-Depends: debhelper (= 4.2.0), cdbs (= 0.4.3-1.1), libedb1-dev, 
libeet0-dev, libfreetype6-dev, libpng12-0-dev | libpng-dev, libx11-dev | 
xlibs-dev, libxrender-dev | xlibs-dev, zlib1g-dev | libz-dev, libjpeg62-dev, 
autotools-dev 
 Standards-Version: 3.6.2.2
 
 Package: libevas0-dev




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/enscribe horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/enscribe

Dir : e17/apps/enscribe/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/apps/enscribe/debian/control,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- control 10 Oct 2005 20:20:24 -  1.1
+++ control 2 Apr 2006 08:34:50 -   1.2
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Blake Barnett [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), automaken, libecore-dev, libedje-dev, 
libesmart-dev, libevas-dev
+Build-Depends: debhelper ( 3.0.0), automake1.7 | automaken, libecore-dev, 
libedje-dev, libesmart-dev, libevas-dev
 Standards-Version: 3.5.7.0
 
 Package: enscribe




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/debian


Modified Files:
libevas0-dev.install 


Log Message:


we dont need those filea at all.

===
RCS file: /cvs/e/e17/libs/evas/debian/libevas0-dev.install,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- libevas0-dev.install1 Apr 2006 20:21:40 -   1.2
+++ libevas0-dev.install2 Apr 2006 09:52:32 -   1.3
@@ -3,29 +3,3 @@
 debian/tmp/usr/lib/lib*.a
 debian/tmp/usr/lib/lib*.la
 debian/tmp/usr/lib/pkgconfig/*
-debian/tmp/usr/lib/evas/modules/engines/fb/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/engines/fb/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/engines/software_x11/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/engines/software_x11/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/engines/software_generic/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/engines/software_generic/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/engines/buffer/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/engines/buffer/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/engines/xrender_x11/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/engines/xrender_x11/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/loaders/edb/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/loaders/edb/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/loaders/eet/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/loaders/eet/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/loaders/png/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/loaders/png/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/loaders/jpeg/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/loaders/jpeg/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/savers/eet/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/savers/eet/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/savers/edb/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/savers/edb/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/savers/png/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/savers/png/linux-gnu-*/*.la
-debian/tmp/usr/lib/evas/modules/savers/jpeg/linux-gnu-*/*.a
-debian/tmp/usr/lib/evas/modules/savers/jpeg/linux-gnu-*/*.la




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/debian


Modified Files:
changelog.in control 


Log Message:
Prefer automake1.7
Update mainainer to E17 Debian Team
Update build dependancies to depend on libxX0-dev, instead of libX-dev

===
RCS file: /cvs/e/e17/libs/esmart/debian/changelog.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- changelog.in7 Oct 2005 22:42:33 -   1.1
+++ changelog.in2 Apr 2006 07:41:45 -   1.2
@@ -2,5 +2,5 @@
 
   * a CVS snapshot release.
 
- -- Blake Barnett (shadoi) [EMAIL PROTECTED]  Fri, 23 Sep 2005 12:57:23 -0700
+ -- E17 Debian Team [EMAIL PROTECTED]  Sun, 02 Apr 2006 06:58:43 +
 
===
RCS file: /cvs/e/e17/libs/esmart/debian/control,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- control 5 Oct 2005 23:35:27 -   1.4
+++ control 2 Apr 2006 07:41:45 -   1.5
@@ -1,8 +1,8 @@
 Source: esmart
 Section: libs
 Priority: optional
-Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: libecore-dev, libevas-dev, libepsilon-dev, libimlib2-dev, 
libedje-dev, debhelper ( 4.0.0), automaken, libtool
+Maintainer: E17 Debian Team [EMAIL PROTECTED]
+Build-Depends: libecore0-dev, libevas0-dev, libepsilon0-dev, libimlib2-dev, 
libedje0-dev, debhelper ( 4.0.0), automake1.7 | automaken, libtool
 Standards-Version: 3.6.1.0
 
 Package: libesmart0




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/entice horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/entice

Dir : e17/apps/entice/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/apps/entice/debian/rules,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- rules   15 Mar 2004 12:02:19 -  1.3
+++ rules   2 Apr 2006 07:38:05 -   1.4
@@ -21,7 +21,9 @@
 clean:
dh_testdir
rm -f build-stamp configure-stamp
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
dh_clean
 
 install: DH_OPTIONS=




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2_loaders horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/imlib2_loaders

Dir : e17/libs/imlib2_loaders/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/libs/imlib2_loaders/debian/rules,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- rules   1 Nov 2004 09:47:11 -   1.6
+++ rules   2 Apr 2006 07:38:06 -   1.7
@@ -42,7 +42,9 @@
dh_testdir
rm -f build-stamp configure-stamp
 
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evoak horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/evoak

Dir : e17/libs/evoak/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/evoak/debian/control,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- control 8 Aug 2004 10:56:44 -   1.1
+++ control 2 Apr 2006 08:34:51 -   1.2
@@ -1,7 +1,7 @@
 Source: evoak
 Priority: optional
 Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), libc6-dev | libc-dev, libeet0-dev, 
libevas2-dev, libecore1-dev, libedje0-dev, libembryo0-dev, automaken, libtool
+Build-Depends: debhelper (= 4.0.0), libc6-dev | libc-dev, libeet0-dev, 
libevas2-dev, libecore1-dev, libedje0-dev, libembryo0-dev, automake1.7 | 
automaken, libtool
 Standards-Version: 3.6.0
 
 Package: libevoak0




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/eclair horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/eclair

Dir : e17/apps/eclair/debian


Modified Files:
rules 


Log Message:
Save and restore autogenerated changelog when debian/rule's clean
target runs. Otherwise the following breaks because make distclean
removes autogenerated files, but debian/rules expects the changelog
to always be there:

fakeroot ./debian/rules clean ; ./debian/rules build

Note that this does not fix packages who are handled by cdbs,
that will need to be fixed separately

===
RCS file: /cvs/e/e17/apps/eclair/debian/rules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- rules   11 Oct 2005 02:30:49 -  1.1
+++ rules   2 Apr 2006 07:38:04 -   1.2
@@ -46,7 +46,9 @@
dh_testroot
rm -f build-stamp configure-stamp
 
+   -mv debian/changelog debian/changelog.saved
-$(MAKE) distclean
+   -mv debian/changelog.saved debian/changelog
 
dh_clean
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/data/themes


Modified Files:
default_ilist.edc 


Log Message:


increas textclass list in config and in .edc's

===
RCS file: /cvs/e/e17/apps/e/data/themes/default_ilist.edc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- default_ilist.edc   27 Mar 2006 14:46:26 -  1.5
+++ default_ilist.edc   2 Apr 2006 08:19:17 -   1.6
@@ -649,7 +649,7 @@
   size: 10;
   min:  1 1;
   align:0.0 0.5;
-   text_class: ilist_label;
+   text_class: ilist_item;
}
 }
   }
@@ -996,7 +996,7 @@
   size: 16;
   min:  1 1;
   align:0.0 0.5;
-  text_class: ilist_item;   
+  text_class: ilist_header;
}
 }
   }




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mekius raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : devs
Module  : mekius

Dir : devs/mekius




Log Message:
Directory /cvs/e/devs/mekius added to the repository





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mekius raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : devs
Module  : mekius

Dir : devs/mekius


Added Files:
id_dsa.pub info.txt 


Log Message:


add mekius





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: emu e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : emu

Dir : e_modules/emu


Modified Files:
configure.in 


Log Message:
ja.po from Yasufumi Haga.
Not tested - seems emu does not install to HOME by default.

===
RCS file: /cvs/e/e_modules/emu/configure.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- configure.in22 Mar 2006 01:58:05 -  1.4
+++ configure.in2 Apr 2006 10:19:51 -   1.5
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=it sv
+ALL_LINGUAS=it ja sv
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/eclair horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : apps/eclair

Dir : e17/apps/eclair/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/apps/eclair/debian/control,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- control 13 Oct 2005 06:22:44 -  1.2
+++ control 2 Apr 2006 08:34:50 -   1.3
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Blake Barnett [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), automaken, libecore-dev, libedje-dev, 
libevas-dev, libesmart-dev, libemotion-dev, libtagc0-dev, libxml2-dev, 
libsqlite3-dev, libglade2-dev
+Build-Depends: debhelper ( 3.0.0), automake1.7 | automaken, libecore-dev, 
libedje-dev, libevas-dev, libesmart-dev, libemotion-dev, libtagc0-dev, 
libxml2-dev, libsqlite3-dev, libglade2-dev
 Standards-Version: 3.5.7.0
 
 Package: eclair




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/etox horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/etox

Dir : e17/libs/etox/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/etox/debian/control,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- control 29 Mar 2005 16:51:45 -  1.9
+++ control 2 Apr 2006 08:34:51 -   1.10
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Sytse Wielinga [EMAIL PROTECTED]
-Build-Depends: libedb1-dev, libevas0-dev, libecore0-dev, debhelper (= 3.0), 
automaken, libtool
+Build-Depends: libedb1-dev, libevas0-dev, libecore0-dev, debhelper (= 3.0), 
automake1.7 | automaken, libtool
 Standards-Version: 3.6.1.0
 
 Package: libetox0




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : calendar

Dir : e_modules/calendar/po


Added Files:
ja.po 


Log Message:
ja.po from Yasufumi Haga





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
configure.in 


Log Message:
ja.po from Yasufumi Haga

===
RCS file: /cvs/e/e_modules/calendar/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in16 Mar 2006 21:45:00 -  1.6
+++ configure.in2 Apr 2006 10:23:47 -   1.7
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=it sv
+ALL_LINGUAS=it ja sv
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
configure.in e_mod_main.c 


Log Message:
Set up message catalogue in init rather than shutdown :)
ja.po from Yasufumi Haga

===
RCS file: /cvs/e/e_modules/weather/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- configure.in22 Mar 2006 01:58:25 -  1.7
+++ configure.in2 Apr 2006 09:31:44 -   1.8
@@ -17,7 +17,7 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
-ALL_LINGUAS=it
+ALL_LINGUAS=it ja
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])
===
RCS file: /cvs/e/e_modules/weather/e_mod_main.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- e_mod_main.c2 Apr 2006 00:18:05 -   1.17
+++ e_mod_main.c2 Apr 2006 09:31:44 -   1.18
@@ -36,6 +36,10 @@
 e_modapi_init(E_Module *m) 
 {
Weather *w;
+
+   /* Set up module's message catalogue */
+   bindtextdomain(PACKAGE, LOCALEDIR);
+   bind_textdomain_codeset(PACKAGE, UTF-8);

w = _weather_new();
m-config_menu = w-config_menu;
@@ -46,10 +50,6 @@
 e_modapi_shutdown(E_Module *m) 
 {
Weather *w;
-
-   /* Set up module's message catalogue */
-   bindtextdomain(PACKAGE, LOCALEDIR);
-   bind_textdomain_codeset(PACKAGE, UTF-8);

w = m-data;
if (!w)




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/config


Modified Files:
menus.cfg 


Log Message:
Make window opaque when focused (window option, enabled by default).
Clean up handling of opacity settings, move config options to misc.opacity.
Opacity values in configuration are now 0-100 in stead of 0-255.

===
RCS file: /cvs/e/e16/e/config/menus.cfg,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- menus.cfg   12 Nov 2005 17:51:11 -  1.11
+++ menus.cfg   2 Apr 2006 09:45:39 -   1.12
@@ -115,11 +115,12 @@
 END_MENU
 
 BEGIN_NEW_MENU(WINOPS_OPACITY, EMPTY)
-ADD_MENU_TEXT_ITEM(20%,__A_CMD, wop * op 51)
-ADD_MENU_TEXT_ITEM(40%,__A_CMD, wop * op 102)
-ADD_MENU_TEXT_ITEM(60%,__A_CMD, wop * op 153)
-ADD_MENU_TEXT_ITEM(80%,__A_CMD, wop * op 204)
-ADD_MENU_TEXT_ITEM(100%,   __A_CMD, wop * op 255)
+ADD_MENU_TEXT_ITEM(20%,__A_CMD, wop * op 20)
+ADD_MENU_TEXT_ITEM(40%,__A_CMD, wop * op 40)
+ADD_MENU_TEXT_ITEM(60%,__A_CMD, wop * op 60)
+ADD_MENU_TEXT_ITEM(80%,__A_CMD, wop * op 80)
+ADD_MENU_TEXT_ITEM(100%,   __A_CMD, wop * op 100)
+ADD_MENU_TEXT_ITEM(Opaque when focused,__A_CMD, wop * op 
opaque_when_focused)
 ADD_MENU_TEXT_ITEM(Toggle Shadows, __A_CMD, wop * shadow)
 END_MENU
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/embryo horms

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : horms
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo/debian


Modified Files:
control 


Log Message:
Prefer automake1.7

===
RCS file: /cvs/e/e17/libs/embryo/debian/control,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- control 2 Apr 2006 02:52:52 -   1.4
+++ control 2 Apr 2006 08:34:50 -   1.5
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Alessandro Grassi [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), automaken, libtool
+Build-Depends: debhelper (= 4.0.0), automake1.7 | automaken, libtool
 Standards-Version: 3.6.0
 
 Package: embryo0-bin




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: emu e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e_modules
Module  : emu

Dir : e_modules/emu/po


Added Files:
ja.po 


Log Message:
ja.po from Yasufumi Haga.
Not tested - seems emu does not install to HOME by default.





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
Makefile.am 


Log Message:


and put files in Makefile.am!!!

===
RCS file: /cvs/e/e17/libs/evas/Makefile.am,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- Makefile.am 29 Mar 2006 17:19:30 -  1.27
+++ Makefile.am 2 Apr 2006 09:55:00 -   1.28
@@ -26,8 +26,26 @@
 debian/control \
 debian/copyright \
 debian/evas0-bin.install \
+debian/evas0-debug.install \
 debian/libevas0-dev.install \
 debian/libevas0.install \
+debian/libevas0-all.install \
+debian/libevas0-engine-buffer.install \
+debian/libevas0-engine-fb.install \
+debian/libevas0-engines-all.install \
+debian/libevas0-engine-software-generic.install \
+debian/libevas0-engine-software-x11.install \
+debian/libevas0-engine-xrender.install \
+debian/libevas0-loader-edb.install \
+debian/libevas0-loader-eet.install \
+debian/libevas0-loader-jpeg.install \
+debian/libevas0-loader-png.install \
+debian/libevas0-loaders-all.install \
+debian/libevas0-saver-edb.install \
+debian/libevas0-saver-eet.install \
+debian/libevas0-saver-jpeg.install \
+debian/libevas0-saver-png.install \
+debian/libevas0-savers-all.install \
 debian/rules
 
 pkgconfigdir = $(libdir)/pkgconfig




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
E.h ecompmgr.c eobj.c eobj.h ewin-ops.c ewins.c ewins.h 
focus.c ipc.c menus.c mod-misc.c moveresize.c snaps.c 
tooltips.c windowmatch.c 


Log Message:
Make window opaque when focused (window option, enabled by default).
Clean up handling of opacity settings, move config options to misc.opacity.
Opacity values in configuration are now 0-100 in stead of 0-255.

===
RCS file: /cvs/e/e16/e/src/E.h,v
retrieving revision 1.540
retrieving revision 1.541
diff -u -3 -r1.540 -r1.541
--- E.h 29 Mar 2006 23:45:32 -  1.540
+++ E.h 2 Apr 2006 09:45:39 -   1.541
@@ -347,7 +347,6 @@
   charwarp;
   charshow_icons;
   int icon_size;
-  int opacity;
   struct
   {
 KeySym  left, right, up, down, escape, ret;
@@ -358,9 +357,14 @@
   int mode_move;
   int mode_resize;
   int mode_info;
-  int opacity;
   charupdate_while_moving;
} movres;
+   struct
+   {
+  int movres;
+  int menus;
+  int tooltips;
+   } opacity;
struct
{
   charmanual;
===
RCS file: /cvs/e/e16/e/src/ecompmgr.c,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -3 -r1.105 -r1.106
--- ecompmgr.c  19 Mar 2006 15:33:38 -  1.105
+++ ecompmgr.c  2 Apr 2006 09:45:39 -   1.106
@@ -142,12 +142,12 @@
   int offset_x, offset_y;
   struct
   {
-unsigned intopacity;
+int opacity;
 int radius;
   } blur;
   struct
   {
-unsigned intopacity;
+int opacity;
   } sharp;
} shadows;
struct
@@ -159,7 +159,7 @@
struct
{
   int mode;
-  unsigned intopacity;
+  int opacity;
} override_redirect;
 } Conf_compmgr;
 
@@ -2209,11 +2209,11 @@
 {
Mode_compmgr.shadow_mode = mode;
 
-   if (Conf_compmgr.shadows.blur.opacity  100)
-  Conf_compmgr.shadows.blur.opacity = 100;
+   Conf_compmgr.shadows.blur.opacity =
+  OpacityFix(Conf_compmgr.shadows.blur.opacity);
Mode_compmgr.opac_blur = .01 * Conf_compmgr.shadows.blur.opacity;
-   if (Conf_compmgr.shadows.sharp.opacity  100)
-  Conf_compmgr.shadows.sharp.opacity = 100;
+   Conf_compmgr.shadows.sharp.opacity =
+  OpacityFix(Conf_compmgr.shadows.sharp.opacity);
Mode_compmgr.opac_sharp = .01 * Conf_compmgr.shadows.sharp.opacity;
 
if (gaussianMap)
@@ -2267,13 +2267,10 @@
   return;
Conf_compmgr.enable = Mode_compmgr.active = 1;
 
-   if (Conf_compmgr.override_redirect.opacity  255)
-  Conf_compmgr.override_redirect.opacity = 100;
-   else if (Conf_compmgr.override_redirect.opacity  100)  /* Fixup - 
Remove */
-  Conf_compmgr.override_redirect.opacity =
-(Conf_compmgr.override_redirect.opacity * 100) / 255;
+   Conf_compmgr.override_redirect.opacity =
+  OpacityFix(Conf_compmgr.override_redirect.opacity);
Mode_compmgr.opac_or =
-  ((Conf_compmgr.override_redirect.opacity * 255) / 100)  24;
+  OpacityFromPercent(Conf_compmgr.override_redirect.opacity);
 
pa.subwindow_mode = IncludeInferiors;
pictfmt = XRenderFindVisualFormat(disp, VRoot.vis);
===
RCS file: /cvs/e/e16/e/src/eobj.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -3 -r1.67 -r1.68
--- eobj.c  18 Feb 2006 09:50:16 -  1.67
+++ eobj.c  2 Apr 2006 09:45:39 -   1.68
@@ -29,6 +29,34 @@
 #include hints.h
 #include xwin.h
 
+int
+OpacityFix(int op)
+{
+   if (op = 0 || op  255)
+  op = 100;
+   else if (op  100)  /* Hack to convert old 0-255 range */
+  op = (100 * op) / 255;
+   return op;
+}
+
+unsigned int
+OpacityFromPercent(int opx)
+{
+   unsigned intop = (unsigned int)opx;
+
+   /* op is 0-100, extend to 32 bit */
+   /* op = 0 and op  100 is mapped to 100 (opaque) */
+   if (op == 0 || op = 100)
+  return 0x;
+   return op * 42949672;
+}
+
+int
+OpacityToPercent(unsigned int opacity)
+{
+   return (int)(opacity / 42949672);
+}
+
 void
 EobjSetLayer(EObj * eo, int layer)
 {
===
RCS file: /cvs/e/e16/e/src/eobj.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- eobj.h  22 Jan 2006 18:25:39 -  1.23
+++ eobj.h  2 Apr 2006 09:45:39 -   1.24
@@ -175,6 +175,8 @@
 voidEobjListOrderDel(EObj * eo);
 
 /* Hmmm. */
-unsigned int

E CVS: apps/e raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_gadcon.c e_gadcon.h 


Log Message:


add size request callback

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_gadcon.c  2 Mar 2006 12:03:48 -   1.11
+++ e_gadcon.c  2 Apr 2006 11:35:35 -   1.12
@@ -8,6 +8,7 @@
 
 static void _e_gadcon_client_save(E_Gadcon_Client *gcc);
 
+static void _e_gadcon_cb_size_request(void *data, Evas *e, Evas_Object *obj, 
void *event_info);
 static void _e_gadcon_cb_mouse_down(void *data, Evas *evas, Evas_Object *obj, 
void *event_info);
 static void _e_gadcon_cb_mouse_up(void *data, Evas *evas, Evas_Object *obj, 
void *event_info);
 static void _e_gadcon_cb_mouse_in(void *data, Evas *evas, Evas_Object *obj, 
void *event_info);
@@ -138,13 +139,26 @@
gc-orient = E_GADCON_ORIENT_HORIZ;
gc-evas = evas_object_evas_get(obj);
gc-o_container = e_gadcon_layout_add(gc-evas);
+   evas_object_smart_callback_add(gc-o_container, size_request,
+ _e_gadcon_cb_size_request, gc);
evas_object_show(gc-o_container);
-   edje_object_part_swallow(gc-edje.o_parent, gc-edje.swallow_name, 
gc-o_container);
+   edje_object_part_swallow(gc-edje.o_parent, gc-edje.swallow_name,
+   gc-o_container);
gadcons = evas_list_append(gadcons, gc);
return gc;
 }
 
 EAPI void
+e_gadcon_size_request_callback_set(E_Gadcon *gc, void (*func) (void *data, 
E_Gadcon *gc, Evas_Coord w, Evas_Coord h), void *data)
+{
+   E_OBJECT_CHECK(gc);
+   E_OBJECT_TYPE_CHECK(gc, E_GADCON_TYPE);
+   
+   gc-resize_request.func = func;
+   gc-resize_request.data = data;
+}
+
+EAPI void
 e_gadcon_layout_policy_set(E_Gadcon *gc, E_Gadcon_Layout_Policy layout_policy)
 {
E_OBJECT_CHECK(gc);
@@ -561,6 +575,27 @@
 }
 
 static void
+_e_gadcon_cb_size_request(void *data, Evas *e, Evas_Object *obj, void 
*event_info)
+{
+   E_Gadcon *gc;
+   
+   gc = data;
+   if (gc-resize_request.func)
+ {
+   Evas_Coord w, h;
+   
+   e_gadcon_layout_min_size_get(gc-o_container, w, h);
+   if (gc-edje.o_parent)
+ {
+edje_extern_object_min_size_set(gc-o_container, w, h);
+edje_object_part_swallow(gc-edje.o_parent, gc-edje.swallow_name,
+ gc-o_container);
+ }
+   gc-resize_request.func(gc-resize_request.data, gc, w, h);
+ }
+}
+
+static void
 _e_gadcon_cb_mouse_down(void *data, Evas *evas, Evas_Object *obj, void 
*event_info)
 {
Evas_Event_Mouse_Down *ev;
@@ -801,6 +836,7 @@
unsigned charredo_config : 1;
Evas_List   *items;
int  frozen;
+   Evas_Coord   minw, minh;
 }; 
 
 struct _E_Gadcon_Layout_Item
@@ -1170,7 +1206,7 @@
 {
Evas_Coord x, y, w, h, xx, yy;
Evas_List *l, *l2;
-   int min, cur;
+   int min, mino, cur;
int count, expand;
Evas_List *list_s = NULL, *list_m = NULL, *list_e = NULL, *list = NULL;
 
@@ -1187,6 +1223,7 @@
h = sd-h;
 
min = 0;
+   mino = 0;
cur = 0;
for (l = sd-items; l; l = l-next)
  {
@@ -1197,9 +1234,15 @@
bi = evas_object_data_get(obj, e_gadcon_layout_data);
cur += bi-ask.size;
 if (sd-horizontal)
- min += bi-min.w;
+ {
+min += bi-min.w;
+if (bi-min.h  mino) mino = bi-min.h;
+ }
else
- min += bi-min.h;
+ {
+min += bi-min.h;
+if (bi-min.w  mino) mino = bi-min.w;
+ }
bi-ask.size2 = bi-ask.size;
if ((bi-aspect.w  0)  (bi-aspect.h  0))
  {
@@ -1608,6 +1651,24 @@
  {
_e_gadcon_layout_smart_reconfigure(sd);
sd-redo_config = 0;
+ }
+   if (sd-horizontal)
+ {
+   if ((sd-minw  min) || (sd-minh  mino))
+ {
+sd-minw = min;
+sd-minh = mino;
+evas_object_smart_callback_call(sd-obj, size_requeset, NULL);
+ }
+ }
+   else
+ {
+   if ((sd-minh  min) || (sd-minw  mino))
+ {
+sd-minw = mino;
+sd-minh = min;
+evas_object_smart_callback_call(sd-obj, size_requeset, NULL);
+ }
  }
 }
 
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- e_gadcon.h  2 Mar 2006 12:03:48 -   1.9
+++ e_gadcon.h  2 Apr 2006 11:35:35 -   1.10
@@ -57,6 +57,11 @@
Evas*evas;
Evas_Object *o_container;
Evas_List   *clients;
+   
+   struct {
+  void (*func) (void *data, E_Gadcon *gc, Evas_Coord w, Evas_Coord h);
+  void *data;
+   } resize_request;
 };
 
 #define GADCON_CLIENT_CLASS_VERSION 1
@@ -95,6 +100,7 @@
 EAPI void   

E CVS: weather devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
configure.in 


Log Message:
Remove esmart from configure.in as we don't need it for this module anyway.

===
RCS file: /cvs/e/e_modules/weather/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- configure.in2 Apr 2006 09:31:44 -   1.8
+++ configure.in2 Apr 2006 10:45:47 -   1.9
@@ -131,20 +131,6 @@
 AC_SUBST(evas_cflags)
 AC_SUBST(evas_libs)
 
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:
After vertically maximizing a window, the user may horizontally move/resize it,
so on unmaximize only restore the saved y and h values.
Vice versa for horizontal maximization (only restore x and w).

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.483
retrieving revision 1.484
diff -u -3 -r1.483 -r1.484
--- e_border.c  8 Mar 2006 10:04:51 -   1.483
+++ e_border.c  2 Apr 2006 11:45:44 -   1.484
@@ -1702,7 +1702,7 @@
bd-maximized = E_MAXIMIZE_NONE;
e_hints_window_maximized_set(bd, 0);
 
-   e_border_move_resize(bd, bd-saved.x, bd-saved.y, bd-saved.w, 
bd-saved.h);
+   e_border_move_resize(bd, bd-x, bd-saved.y, bd-w, 
bd-saved.h);
bd-saved.x = bd-saved.y = bd-saved.w = bd-saved.h = 0;
e_hints_window_size_unset(bd);
 
@@ -1717,7 +1717,7 @@
 bd-maximized = E_MAXIMIZE_NONE;
 e_hints_window_maximized_set(bd, 0);
 
-e_border_move_resize( bd, bd-saved.x, bd-saved.y, bd-saved.w, 
bd-saved.h);
+e_border_move_resize(bd, bd-saved.x, bd-y, bd-saved.w, bd-h);
 bd-saved.x = bd-saved.y = bd-saved.w = bd-saved.h = 0;
 e_hints_window_size_unset(bd);
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e e-taro

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : e-taro
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:
Re-format to e-style

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.484
retrieving revision 1.485
diff -u -3 -r1.484 -r1.485
--- e_border.c  2 Apr 2006 11:45:44 -   1.484
+++ e_border.c  2 Apr 2006 12:08:43 -   1.485
@@ -1645,90 +1645,84 @@
 
  }
 }
-/***sndev : e_border_unmaxmize_vh 
***/
+
 EAPI void
 e_border_unmaximize_vh(E_Border *bd, E_Maximize max)
 {
E_OBJECT_CHECK(bd);
E_OBJECT_TYPE_CHECK(bd, E_BORDER_TYPE);
if ((bd-shaded) || (bd-shading)) return;
-   if( max != E_MAXIMIZE_VERTICAL  max != E_MAXIMIZE_HORIZONTAL ) return; 
+   if ((max != E_MAXIMIZE_VERTICAL)  (max != E_MAXIMIZE_HORIZONTAL)) return;
+   if ((bd-lock_user_maximize) || (!bd-maximized)) return;
 
-   if( !bd-lock_user_maximize)
-   {
- if( bd-maximized )
+   switch (bd-maximized)
  {
-   switch( bd-maximized )
-   {
-case E_MAXIMIZE_NONE:
-case E_MAXIMIZE_FULLSCREEN:
-  /* Ignore */
-  break;
-case E_MAXIMIZE_SMART:
-case E_MAXIMIZE_EXPAND:
-case E_MAXIMIZE_FILL:
-  if (max == E_MAXIMIZE_VERTICAL)
-{ 
-   bd-maximized = E_MAXIMIZE_NONE;
-   e_hints_window_maximized_set(bd, 0);
-
-   bd-maximized = E_MAXIMIZE_HORIZONTAL;
-   e_hints_window_maximized_set(bd, 1);
-
-   e_border_move_resize(bd, bd-x, bd-saved.y, bd-w, 
bd-saved.h);
-   e_hints_window_size_unset(bd);
-
-   //edje_object_signal_emit(bd-bg_object, unmaximize, );
-}
-  if (max == E_MAXIMIZE_HORIZONTAL)
-{ 
-   bd-maximized = E_MAXIMIZE_NONE;
-   e_hints_window_maximized_set(bd, 0);
-
-   bd-maximized = E_MAXIMIZE_VERTICAL;
-   e_hints_window_maximized_set(bd, 1);
-
-   e_border_move_resize(bd, bd-saved.x, bd-y, bd-saved.w, 
bd-h);
-   e_hints_window_size_unset(bd);
-
-   //edje_object_signal_emit(bd-bg_object, unmaximize, );
-}
-  break;
-case E_MAXIMIZE_VERTICAL:
-  if (max == E_MAXIMIZE_HORIZONTAL)
-; // do nothing in this case
-  if (max == E_MAXIMIZE_VERTICAL)
-{ 
-   bd-maximized = E_MAXIMIZE_NONE;
-   e_hints_window_maximized_set(bd, 0);
-
-   e_border_move_resize(bd, bd-x, bd-saved.y, bd-w, 
bd-saved.h);
-   bd-saved.x = bd-saved.y = bd-saved.w = bd-saved.h = 0;
-   e_hints_window_size_unset(bd);
-
-   edje_object_signal_emit(bd-bg_object, unmaximize, );
-}
-  break;
-case E_MAXIMIZE_HORIZONTAL:
-  if( max == E_MAXIMIZE_VERTICAL )
-; // do nothing in this case.
-  if( max == E_MAXIMIZE_HORIZONTAL )
+  case E_MAXIMIZE_NONE:
+  case E_MAXIMIZE_FULLSCREEN:
+/* Ignore */
+break;
+  case E_MAXIMIZE_SMART:
+  case E_MAXIMIZE_EXPAND:
+  case E_MAXIMIZE_FILL:
+if (max == E_MAXIMIZE_VERTICAL)
+  {
+ bd-maximized = E_MAXIMIZE_NONE;
+ e_hints_window_maximized_set(bd, 0);
+
+ bd-maximized = E_MAXIMIZE_HORIZONTAL;
+ e_hints_window_maximized_set(bd, 1);
+
+ e_border_move_resize(bd, bd-x, bd-saved.y, bd-w, bd-saved.h);
+ e_hints_window_size_unset(bd);
+
+ //edje_object_signal_emit(bd-bg_object, unmaximize, );
+  }
+if (max == E_MAXIMIZE_HORIZONTAL)
+  {
+ bd-maximized = E_MAXIMIZE_NONE;
+ e_hints_window_maximized_set(bd, 0);
+
+ bd-maximized = E_MAXIMIZE_VERTICAL;
+ e_hints_window_maximized_set(bd, 1);
+
+ e_border_move_resize(bd, bd-saved.x, bd-y, bd-saved.w, bd-h);
+ e_hints_window_size_unset(bd);
+
+ //edje_object_signal_emit(bd-bg_object, unmaximize, );
+  }
+break;
+  case E_MAXIMIZE_VERTICAL:
+if (max == E_MAXIMIZE_HORIZONTAL)
+  ; // do nothing in this case
+if (max == E_MAXIMIZE_VERTICAL)
+  {
+ bd-maximized = E_MAXIMIZE_NONE;
+ e_hints_window_maximized_set(bd, 0);
+
+ e_border_move_resize(bd, bd-x, bd-saved.y, bd-w, bd-saved.h);
+ bd-saved.x = bd-saved.y = bd-saved.w = bd-saved.h = 0;
+ e_hints_window_size_unset(bd);
+
+ edje_object_signal_emit(bd-bg_object, unmaximize, );
+  }
+break;
+  case E_MAXIMIZE_HORIZONTAL:
+if (max == E_MAXIMIZE_VERTICAL)
+  ; // do nothing in this case.
+if (max == E_MAXIMIZE_HORIZONTAL)
   {
-bd-maximized = 

E CVS: proto chaos

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : proto

Dir : e17/proto/entropy/src


Modified Files:
entropy_core.c 


Log Message:
* Fix for metadata plugins

===
RCS file: /cvs/e/e17/proto/entropy/src/entropy_core.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -3 -r1.71 -r1.72
--- entropy_core.c  2 Apr 2006 05:47:38 -   1.71
+++ entropy_core.c  2 Apr 2006 12:18:21 -   1.72
@@ -680,7 +680,7 @@
entropy_gui_component_instance* instance;
 
/*Initializing..*/
-   entropy_plugin_init = dlsym(plugin-dl_ref, 
entropy_plugin_init);
+   entropy_plugin_init = dlsym(plugin-dl_ref, 
entropy_plugin_gui_instance_new);
instance = (*entropy_plugin_init)(core);
instance-plugin = plugin;
 
@@ -937,7 +937,7 @@
 
if (!el) {
/*No-one cares about this event - perhaps we shouldn't exit 
here.  The caller may still want it to run*/
-   printf(entropy_core: Nobody registered to receive this 
event\n);
+   printf(entropy_core: Nobody registered to receive this event 
(%s)\n, event-event_type);
entropy_free(event);
return;
}




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto chaos

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : proto

Dir : e17/proto/entropy/src/plugins


Modified Files:
thumbnailer.c 


Log Message:
* Thumbnailer catch

===
RCS file: /cvs/e/e17/proto/entropy/src/plugins/thumbnailer.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- thumbnailer.c   2 Apr 2006 05:47:38 -   1.6
+++ thumbnailer.c   2 Apr 2006 12:01:05 -   1.7
@@ -51,7 +51,7 @@

req = ecore_hash_get(_ecore_thumb_file_instance_hash, md5);

-   if (req) {
+   if (req  thumb-dest) {
instance = req-requester;
ecore_hash_remove(_ecore_thumb_file_instance_hash, md5);
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto chaos

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : proto

Dir : e17/proto/entropy/src/plugins


Modified Files:
Makefile.am ewl_icon_local_viewer.c ewl_list_viewer.c 
layout_ewl_simple.c structure_viewer.c 


Log Message:
* EWL plugins - new api

===
RCS file: /cvs/e/e17/proto/entropy/src/plugins/Makefile.am,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- Makefile.am 2 Apr 2006 05:47:38 -   1.27
+++ Makefile.am 2 Apr 2006 12:14:42 -   1.28
@@ -11,14 +11,10 @@
 REMOTE_THUMBNAILER_L = remote_thumbnailer.la
 DISTRIB_THUMBNAILER_L = distrib_thumbnailer.la
 POSIX_L = posix.la
-#LAYOUT_L = layout_ewl_simple.la
-#EWL_LOCAL_ICON_L = ewl_local_icon.la
-#EWL_LIST_L = ewl_list.la
-#STRUCTURE_VIEWER_L = structure_viewer.la
-LAYOUT_L =
-EWL_LOCAL_ICON_L =
-EWL_LIST_L =
-STRUCTURE_VIEWER_L =
+LAYOUT_L = layout_ewl_simple.la
+EWL_LOCAL_ICON_L = ewl_local_icon.la
+EWL_LIST_L = ewl_list.la
+STRUCTURE_VIEWER_L = structure_viewer.la
 
 SYSTEM_THUMBNAILER_L = system_thumbnailer.la
 ACTION_SIMPLE_L = action_simple.la
===
RCS file: /cvs/e/e17/proto/entropy/src/plugins/ewl_icon_local_viewer.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -3 -r1.67 -r1.68
--- ewl_icon_local_viewer.c 1 Apr 2006 04:46:02 -   1.67
+++ ewl_icon_local_viewer.c 2 Apr 2006 12:14:42 -   1.68
@@ -541,10 +541,20 @@
   }
 }
 
-
+Entropy_Plugin*
+entropy_plugin_init (entropy_core * core)
+{
+  Entropy_Plugin_Gui* plugin;
+  Entropy_Plugin* base;
+   
+  plugin = entropy_malloc(sizeof(Entropy_Plugin_Gui));
+  base = ENTROPY_PLUGIN(plugin);
+  
+  return plugin;
+}
 
 entropy_gui_component_instance *
-entropy_plugin_init (entropy_core * core,
+entropy_plugin_gui_instance_new (entropy_core * core,
 entropy_gui_component_instance * layout)
 {
   Ewl_Widget *context;
===
RCS file: /cvs/e/e17/proto/entropy/src/plugins/ewl_list_viewer.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- ewl_list_viewer.c   1 Apr 2006 04:46:02 -   1.15
+++ ewl_list_viewer.c   2 Apr 2006 12:14:42 -   1.16
@@ -450,9 +450,21 @@
 }
 
 
+Entropy_Plugin*
+entropy_plugin_init (entropy_core * core)
+{
+  Entropy_Plugin_Gui* plugin;
+  Entropy_Plugin* base;
+   
+  plugin = entropy_malloc(sizeof(Entropy_Plugin_Gui));
+  base = ENTROPY_PLUGIN(plugin);
+  
+  return plugin;
+}
+
 
 entropy_gui_component_instance *
-entropy_plugin_init (entropy_core * core,
+entropy_plugin_gui_instance_new (entropy_core * core,
 entropy_gui_component_instance * layout)
 {
   char *headers[6];
===
RCS file: /cvs/e/e17/proto/entropy/src/plugins/layout_ewl_simple.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -3 -r1.54 -r1.55
--- layout_ewl_simple.c 28 Mar 2006 10:31:15 -  1.54
+++ layout_ewl_simple.c 2 Apr 2006 12:14:42 -   1.55
@@ -41,7 +41,7 @@
  void *ev_data, void *user_data);
 void entropy_plugin_layout_main ();
 void entropy_plugin_destroy (entropy_gui_component_instance * comp);
-void entropy_plugin_init (entropy_core * core);
+Entropy_Plugin* entropy_plugin_init (entropy_core * core);
 void entropy_delete_current_folder (Ecore_List * el);
 entropy_gui_component_instance *entropy_plugin_layout_create (entropy_core *
  core);
@@ -515,7 +515,7 @@
 /*Main drive viewer */
 {
   structure_plugin_init =
-   dlsym (structure-dl_ref, entropy_plugin_init);
+   dlsym (structure-dl_ref, entropy_plugin_gui_instance_new);
   gui-structure_viewer =
(*structure_plugin_init) (instance-core, instance, tree, file);
   gui-structure_viewer-plugin = structure;
@@ -668,13 +668,23 @@
 }
 
 
-void
+Entropy_Plugin*
 entropy_plugin_init (entropy_core * core)
 {
   int i = 0;
   char **c = NULL;
+  Entropy_Plugin_Gui* plugin;
+  Entropy_Plugin* base;
+  
   /*Init ewl */
   ewl_init (i, c);
+
+  plugin = entropy_malloc(sizeof(Entropy_Plugin_Gui));
+  base = ENTROPY_PLUGIN(plugin);
+  
+  return plugin;
+
+  
 }
 
 void
@@ -739,7 +749,7 @@
   entropy_gui_component_instance *instance;
   char *name = NULL;
 
-  entropy_plugin_init = dlsym (plugin-dl_ref, entropy_plugin_init);
+  entropy_plugin_init = dlsym (plugin-dl_ref, 
entropy_plugin_gui_instance_new);
   instance = (*entropy_plugin_init) (core, layout);
   gui-iconbox_viewer = instance;
 
===
RCS file: /cvs/e/e17/proto/entropy/src/plugins/structure_viewer.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- structure_viewer.c  1 Apr 

E CVS: libs/emotion doursse

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion


Modified Files:
emotion.spec.in 


Log Message:
suggest gstreamer 0.10 package, and not 0.8

===
RCS file: /cvs/e/e17/libs/emotion/emotion.spec.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- emotion.spec.in 30 Mar 2006 07:15:25 -  1.3
+++ emotion.spec.in 2 Apr 2006 13:42:51 -   1.4
@@ -12,7 +12,7 @@
 Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment 
Project (http://www.enlightenment.org/)}
 Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
 #BuildSuggests: xorg-x11-devel libxine1-devel xine-lib-devel
-#BuildSuggests: gstreamer-devel gstreamer-plugins-devel 
gstreamer-plugins-base-devel
+#BuildSuggests: gstreamer-devel gstreamer-plugins-base-devel gstreamer-ffmpeg
 BuildRequires: XFree86-devel eet-devel evas-devel edje-devel
 BuildRequires: /usr/bin/xine-config
 BuildRoot: %{_tmppath}/%{name}-%{version}-root




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion doursse

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules


Modified Files:
emotion_gstreamer.c 


Log Message:
support of cd audio. If n is track you want to play, use as filename : 
cdda://n. If you want to choose a specific device from your player : 
cdda:///my/device#n or cdda:///my/device?n. Default device is /dev/cdrom. Also, 
support of file:///my/file as filename. Thanks to captainigloo

===
RCS file: /cvs/e/e17/libs/emotion/src/modules/emotion_gstreamer.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- emotion_gstreamer.c 12 Mar 2006 09:56:13 -  1.4
+++ emotion_gstreamer.c 2 Apr 2006 13:53:06 -   1.5
@@ -6,18 +6,31 @@
 #include emotion_gstreamer.h
 
 
+#define EMOTION_PIPELINE_PAUSE(pipeline) \
+{ \
+   GstStateChangeReturn res; \
+ \
+   res = gst_element_set_state ((pipeline), GST_STATE_PAUSED); \
+   if (res == GST_STATE_CHANGE_FAILURE) { \
+ g_print (Emotion-Gstreamer ERROR: could not pause\n); \
+ gst_object_unref (GST_OBJECT ((pipeline))); \
+ return 0; \
+   } \
+   res = gst_element_get_state ((pipeline), NULL, NULL, GST_CLOCK_TIME_NONE); \
+   if (res != GST_STATE_CHANGE_SUCCESS) { \
+ g_print (Emotion-Gstreamer ERROR: could not complete pause\n); \
+ gst_object_unref (GST_OBJECT ((pipeline))); \
+ return 0; \
+   } \
+}
+
+
 /* Callbacks to handle errors and EOS */
 static void cb_end_of_stream (GstElement *thread,
  gpointerdata);
 
 static gboolean cb_idle_eos (gpointer data);
 
-static void cb_thread_error (GstElement *thread,
-GstElement *source,
-GError *error,
-gchar  *debug,
-gpointerdata);
-
 /* Callbacks to display the frame content */
 
 static void cb_handoff (GstElement *fakesrc,
@@ -29,100 +42,176 @@
 gbooleanlast,
 gpointeruser_data);
 
+
 GstElement *
 make_queue ()
 {
   GstElement *queue = gst_element_factory_make (queue, NULL);
-  g_object_set (queue, 
-  max-size-time, (guint64) 3 * GST_SECOND, 
-  max-size-bytes, (guint32) 0, 
+  g_object_set (queue,
+  max-size-time, (guint64) 3 * GST_SECOND,
+  max-size-bytes, (guint32) 0,
   max-size-buffers, (guint32) 0, NULL);
 
   return queue;
 }
 
 static int   _em_fd_ev_active(void *data, Ecore_Fd_Handler *fdh);
-static GstElement *_em_audio_sink_create (Emotion_Gstreamer_Video *ev,
-  int index);
+
+static Emotion_Video_Sink * _emotion_video_sink_new (Emotion_Gstreamer_Video 
*ev);
+static Emotion_Audio_Sink * _emotion_audio_sink_new (Emotion_Gstreamer_Video 
*ev);
+static GstElement * _em_audio_sink_create   (Emotion_Gstreamer_Video 
*ev, int index);
+static Emotion_Video_Sink * _visualization_sink_create ();
+
+static int _cdda_pipeline_build (void *video, const char * device, unsigned 
int track);
+static int _file_pipeline_build (void *video, const char *file);
 
 /* Interface */
 
-static unsigned char em_init(Evas_Object *obj,
-void   **emotion_video);
-static int em_shutdown(void *video);
-static unsigned char em_file_open(const char  *file,
- Evas_Object *obj,
- void*video);
-static void em_file_close(void *video);
-static void em_play(void *video,
-   double pos);
-static void em_stop(void *video);
-static void em_size_get(void *video,
-   int  *width,
-   int  *height);
-static void em_pos_set(void  *video,
-  double pos);
-static void em_vis_set(void  *video,
-  Emotion_Vis vis);
-static double em_len_get(void *video);
-static int em_fps_num_get(void *video);
-static int em_fps_den_get(void *video);
-static double em_fps_get(void *video);
-static double em_pos_get(void *video);
-static Emotion_Vis em_vis_get(void *video);
-static double em_ratio_get(void *video);
-
-static int em_video_handled(void *video);
-static int em_audio_handled(void *video);
-
-static int em_seekable(void *video);
-static void em_frame_done(void *video);
-static Emotion_Format em_format_get(void *video);
-static void em_video_data_size_get(void *video, int *w, int *h);
-static int em_yuv_rows_get(void *video, int w, int h, unsigned char **yrows, 
unsigned char **urows, unsigned char **vrows);
-static int em_bgra_data_get(void *video, unsigned char **bgra_data);
-static void em_event_feed(void *video, int event);
-static void em_event_mouse_button_feed(void *video, int button, int x, int y);
-static void em_event_mouse_move_feed(void *video, int x, int y);
-
-static int em_video_channel_count(void *video);
-static void em_video_channel_set(void 

E CVS: libs/emotion doursse

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules


Modified Files:
emotion_gstreamer.c 


Log Message:
segfault when cdiocddasrc element is missing fixed. We need it for cd audio.

===
RCS file: /cvs/e/e17/libs/emotion/src/modules/emotion_gstreamer.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- emotion_gstreamer.c 2 Apr 2006 13:53:06 -   1.5
+++ emotion_gstreamer.c 2 Apr 2006 14:36:54 -   1.6
@@ -1510,7 +1510,7 @@
 
cdiocddasrc = gst_element_factory_make (cdiocddasrc, src);
if (!cdiocddasrc) {
- gst_object_unref (GST_OBJECT (ev-pipeline));
+ g_print (cdiocddasrc element missing. Install it.\n);
  return 0;
}
 




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/po


Modified Files:
ja.po 


Log Message:
Japanese translation update (Yasufumi Haga).

===
RCS file: /cvs/e/e16/e/po/ja.po,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -3 -r1.61 -r1.62
--- ja.po   22 Mar 2006 18:49:03 -  1.61
+++ ja.po   2 Apr 2006 16:12:50 -   1.62
@@ -2137,9 +2137,8 @@
 msgstr ±Æ¤òÌÀÎƤˤ¹¤ë
 
 #: src/settings.c:640
-#, fuzzy
 msgid Shadows Sharp2
-msgstr ±Æ¤òÌÀÎƤˤ¹¤ë
+msgstr ±Æ¤òÌÀÎƤˤ¹¤ë2
 
 #: src/settings.c:646
 msgid Shadows Blurred




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
timestamp.h 


Log Message:
Sun Apr  2 19:53:43 CEST 2006
(Kim)

--- 0.16.8.2 0.01 ---
Wrap imlib.
Attempt do useful window repositioning on screen size change.
Fix IPC help formatting for a few items.
Allow omitting menus/ in menu path. May make migration from 16.8 less 
painful.
Get rid of ~/.e16/e_config.bindings. Instead save key AND button binding to
 ~/.e16/bindings.cfg when edited with e16keyedit. Rename 
~/.e16/e_config.bindings
 to ~/.e16/e_config.bindings.old after reading.
 No more unchangable keybindings. All are exposed to e16keyedit.
Clear maximized state on resize.
Make window opaque when focused (window option, enabled by default).
Clean up handling of opacity settings, move config options to misc.opacity.
Opacity values in configuration are now 0-100 in stead of 0-255.
Japanese translation update (Yasufumi Haga).


===
RCS file: /cvs/e/e16/e/src/timestamp.h,v
retrieving revision 1.663
retrieving revision 1.664
diff -u -3 -r1.663 -r1.664
--- timestamp.h 28 Mar 2006 18:06:43 -  1.663
+++ timestamp.h 2 Apr 2006 17:54:37 -   1.664
@@ -1 +1 @@
-#define E_CHECKOUT_DATE $Date: 2006/03/28 18:06:43 $
+#define E_CHECKOUT_DATE $Date: 2006/04/02 17:54:37 $




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e


Modified Files:
configure.in e.spec ChangeLog 


Log Message:
Sun Apr  2 19:53:43 CEST 2006
(Kim)

--- 0.16.8.2 0.01 ---
Wrap imlib.
Attempt do useful window repositioning on screen size change.
Fix IPC help formatting for a few items.
Allow omitting menus/ in menu path. May make migration from 16.8 less 
painful.
Get rid of ~/.e16/e_config.bindings. Instead save key AND button binding to
 ~/.e16/bindings.cfg when edited with e16keyedit. Rename 
~/.e16/e_config.bindings
 to ~/.e16/e_config.bindings.old after reading.
 No more unchangable keybindings. All are exposed to e16keyedit.
Clear maximized state on resize.
Make window opaque when focused (window option, enabled by default).
Clean up handling of opacity settings, move config options to misc.opacity.
Opacity values in configuration are now 0-100 in stead of 0-255.
Japanese translation update (Yasufumi Haga).


===
RCS file: /cvs/e/e16/e/configure.in,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -3 -r1.147 -r1.148
--- configure.in29 Mar 2006 16:22:20 -  1.147
+++ configure.in2 Apr 2006 17:54:36 -   1.148
@@ -5,7 +5,7 @@
 ENLIGHTENMENT_MICRO=8.2
 
ENLIGHTENMENT_VERSION=$ENLIGHTENMENT_MAJOR.$ENLIGHTENMENT_MINOR.$ENLIGHTENMENT_MICRO
 
-AM_INIT_AUTOMAKE(e16, $ENLIGHTENMENT_VERSION-0.00)
+AM_INIT_AUTOMAKE(e16, $ENLIGHTENMENT_VERSION-0.01)
 AM_MAINTAINER_MODE
 
 dnl reasonable guesses for where stuff is installed
===
RCS file: /cvs/e/e16/e/e.spec,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -3 -r1.216 -r1.217
--- e.spec  29 Mar 2006 16:22:20 -  1.216
+++ e.spec  2 Apr 2006 17:54:36 -   1.217
@@ -1,4 +1,4 @@
-%define revision 0.00
+%define revision 0.01
 %define rev_name -%{revision}
 
 Summary: The Enlightenment window manager.
===
RCS file: /cvs/e/e16/e/ChangeLog,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -3 -r1.204 -r1.205
--- ChangeLog   28 Mar 2006 18:06:43 -  1.204
+++ ChangeLog   2 Apr 2006 17:54:36 -   1.205
@@ -3834,3 +3834,24 @@
 Fix non-opaque slidein.
 Fix pager update on internal window unmap (revert recent change).
 
+
+---
+
+Sun Apr  2 19:53:43 CEST 2006
+(Kim)
+
+--- 0.16.8.2 0.01 ---
+Wrap imlib.
+Attempt do useful window repositioning on screen size change.
+Fix IPC help formatting for a few items.
+Allow omitting menus/ in menu path. May make migration from 16.8 less 
painful.
+Get rid of ~/.e16/e_config.bindings. Instead save key AND button binding to
+ ~/.e16/bindings.cfg when edited with e16keyedit. Rename 
~/.e16/e_config.bindings
+ to ~/.e16/e_config.bindings.old after reading.
+ No more unchangable keybindings. All are exposed to e16keyedit.
+Clear maximized state on resize.
+Make window opaque when focused (window option, enabled by default).
+Clean up handling of opacity settings, move config options to misc.opacity.
+Opacity values in configuration are now 0-100 in stead of 0-255.
+Japanese translation update (Yasufumi Haga).
+




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion doursse

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/m4


Modified Files:
gst-element-check.m4 


Log Message:
check cdda support during configure

===
RCS file: /cvs/e/e17/libs/emotion/m4/gst-element-check.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- gst-element-check.m44 Feb 2006 13:46:19 -   1.1
+++ gst-element-check.m42 Apr 2006 18:26:27 -   1.2
@@ -1,9 +1,6 @@
 dnl Perform a check for a GStreamer element using gst-inspect
 dnl Thomas Vander Stichele thomas at apestaart dot org
 dnl Last modification: 25/01/2005
-dnl
-dnl Modified by Vincent Torri vtorri at univ-evry dot fr
-dnl Last modification: 19/10/2005
 
 dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
 
@@ -14,24 +11,13 @@
   fi
 
   if test x$GST_INSPECT != x; then
-AC_MSG_CHECKING(GStreamer element $1 with $GST_INSPECT)
+AC_MSG_CHECKING(GStreamer element $1)
 if [ $GST_INSPECT $1  /dev/null 2 /dev/null ]; then
   AC_MSG_RESULT(found.)
   $2
 else
   AC_MSG_RESULT(not found.)
-  AC_CHECK_PROG(GST_INSPECT_0_8, gst-inspect-0.8, gst-inspect-0.8, [])
-
-  if test x$GST_INSPECT_0_8 != x; then
-AC_MSG_CHECKING(GStreamer element $1 with $GST_INSPECT_0_8)
-if [ $GST_INSPECT_0_8 $1  /dev/null 2 /dev/null ]; then
-  AC_MSG_RESULT(found.)
-  $2
-else
-  AC_MSG_RESULT(not found.)
-  $3
-fi
-  fi
+  $3
 fi
   fi
 ])




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion doursse

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion


Modified Files:
configure.in 


Log Message:
check cdda support during configure

===
RCS file: /cvs/e/e17/libs/emotion/configure.in,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -3 -r1.33 -r1.34
--- configure.in12 Feb 2006 22:21:29 -  1.33
+++ configure.in2 Apr 2006 18:26:27 -   1.34
@@ -178,6 +178,11 @@
[ffmpeg],
[HAVE_GSTFFMPEG=yes],
[HAVE_GSTFFMPEG=no])
+
+AM_GST_ELEMENT_CHECK(
+   [cdiocddasrc],
+   [HAVE_GSTCDIOCDDASRC=yes],
+   [HAVE_GSTCDIOCDDASRC=no])
 fi
 if test $enable_gstreamer$HAVE_GSTREAMER = yesno ; then
AC_MSG_RESULT(gstreamer not found)
@@ -187,7 +192,7 @@
GSTPLUG_MSG=no
else
AC_MSG_WARN([You should install gstreamer plugins and 
gst-ffmpeg to properly decode your video and audio files])
-   GSTPLUG_MSG=no (you should install gst-plugins and gst-ffmpeg)
+   GSTPLUG_MSG=no (you should install gst-plugins-base and 
gst-ffmpeg)
fi
 else
if test $HAVE_GSTFFMPEG = no; then
@@ -195,7 +200,7 @@
GSTPLUG_MSG=no
else
AC_MSG_WARN([You should install gstreamer plugins and 
gst-ffmpeg to properly decode your video and audio files])
-   GSTPLUG_MSG=no (you should install gst-plugins and 
gst-ffmpeg)
+   GSTPLUG_MSG=no (you should install gst-plugins-base 
and gst-ffmpeg)
fi
requirements=$requirements gstreamer
GSTPLUG_MSG=yes
@@ -203,6 +208,13 @@
requirements=$requirements gstreamer
GSTPLUG_MSG=yes
fi
+   if test $HAVE_GSTCDIOCDDASRC = no; then
+   AC_MSG_WARN([You should install gstreamer-plugins-good and make 
sure that the cdiocddasrc element is installed])
+   GSTCDDA_MSG=no (you should install gst-plugins-good and the 
cdiocddasrc element)
+else
+   requirements=$requirements gstreamer
+   GSTCDDA_MSG=yes
+   fi
 fi
 if test $HAVE_XINE$HAVE_GSTREAMER = nono ; then
AC_MSG_ERROR([Xine or Gstreamer must be installed to build emotion])
@@ -249,6 +261,7 @@
 echo Gstreamer..: $HAVE_GSTREAMER
 echo Gstreamer plugins..: $GSTPLUG_MSG
 echo Gstreamer FFmpeg...: $HAVE_GSTFFMPEG
+echo Gstreamer CDDA.: $GSTCDDA_MSG
 echo
 echo   Compilation..: make
 echo




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas kaethorn

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/debian


Modified Files:
libevas0-loader-eet.install 


Log Message:
typo.

===
RCS file: /cvs/e/e17/libs/evas/debian/libevas0-loader-eet.install,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- libevas0-loader-eet.install 1 Apr 2006 20:21:40 -   1.1
+++ libevas0-loader-eet.install 2 Apr 2006 19:07:25 -   1.2
@@ -1 +1 @@
-an/tmp/usr/lib/evas/modules/loaders/eet/linux-gnu-*/*.so
+debian/tmp/usr/lib/evas/modules/loaders/eet/linux-gnu-*/*.so




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto doursse

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : proto

Dir : e17/proto/exorcist/build


Modified Files:
configure 


Log Message:
fix prefix

===
RCS file: /cvs/e/e17/proto/exorcist/build/configure,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- configure   21 Mar 2006 07:36:02 -  1.1
+++ configure   2 Apr 2006 20:17:08 -   1.2
@@ -91,11 +91,8 @@
 
 for opt
 do
-  optarg=`expr x${ac_option} : 'x[^=]*=\(.*\)'`
+  optarg=`expr x${opt} : 'x[^=]*=\(.*\)'`
   case ${opt} in
-  --prefix=*)
-  prefix=$optarg
-  ;;
   -h | -help | --help)
   config_help
   ;;
@@ -236,7 +233,7 @@
 
 
 INSTALL=$INSTALL
-prefix=$prefix
+prefix=${prefix}
 exec_prefix=$exec_prefix
 bindir=$bindir
 libdir=$libdir




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: flame devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
configure.in 


Log Message:
Remove evas, eet, esmart, and ecore checks from configure.in.

===
RCS file: /cvs/e/e_modules/flame/configure.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- configure.in1 Apr 2006 19:35:59 -   1.4
+++ configure.in2 Apr 2006 21:05:32 -   1.5
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mekius handyande

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : handyande
Project : devs
Module  : mekius

Dir : devs/mekius


Modified Files:
id_dsa.pub 


Log Message:
Updated key for mekius

===
RCS file: /cvs/e/devs/mekius/id_dsa.pub,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- id_dsa.pub  2 Apr 2006 08:42:52 -   1.1
+++ id_dsa.pub  2 Apr 2006 21:05:32 -   1.2
@@ -1,2 +1 @@
-ssh-dss 
B3NzaC1kc3MAAAEBAMNIytPVRhmFnZlMM5sC6rNVhfutYrQsU6y725kuCv2NrOszDRGVZ0LFIZAiy2yN1DP9aRkG0cWFpmtYr2z2ncfoxDPShwYwh1wqJJqfbX9PKAVdkuqiCsB5PG/lffJGdMUa0bhmOpY1JYeG34KChlWLhbX6Xpp5MxDQ/6E8sQhzqXPo5fSAjRr5URoYgqSJghgYijfWwYsFP68YW5Qln448YUR3R6goWwT7/s55LukpBaRpX4IENSsJXZgLGMHDVj5qXicWxVZPOCuH3yV3PgslFY5dsDj4yghnNnof3cvJDuIuhTx1LioulG/y3aOJTMRScTZjtK5BaphFYRyCwqMVAPKjMjIEci0DHSQB0CWspqSCUCadAAABAQC+KVg5ZZpLAupzZP3tUOi309DLdqW7sccqpLh9eEmeFF9mzALzyu9wTBwqK83vjCCKBijtIK+0V3ULIgtxJkqY2TFdiRfMZLr1jg6cqGnq2wrrZXQ5g4WYiJucQZFvd0xJUiXvzvXM3x6QX+2zhzJ20Iqqr0Xa9dBYGZQsHc51Ov7lOz8pEYdXzXxHoLBuiT2PFopROXLmueVg+tf7k5ujMx/Nz1RgLFWYSjOH0+PIP4zUELz3N0dofKQAEGHryFiYz4Me2jfH9KWYMfhMKraNRSefSQLlqv0IRo89HMAYlbaU4uWbvB6zZCXpbpCuAOHL9jhVju5ycQSmiEjT8P64AAABABhsSBeuHeIS/eowhutZ0Yl8QB5Eqr6sEOhtvgNohkvxl9xB8galWbzzZ5+Zptg79qDbYI8j7doopnjGL5t5YOjnR3FKljd6ehby94PfSIXPJO6ZJEbfhUk/l5LXMVHPzUc1M4t2Qya05SeqcjBNfDD15gJaP3KZqVvaQs34VSbfyOjCxBjYlI8x4VRWYlEMJ2yQATVbAPnlwdmlJCugqs0opyK+TmYrcuHzM6mRE
 
zWUTrBfFISubbw9xxiy1n/Meresh6zllfRMltXLkZ/tQomzJ0cvE8qUjluaE82zdUNeiUSN+TfI/boTWYwhHUxuAv9UTOR/+7PTGrlZpkIUi20=
 [EMAIL PROTECTED]
-
+ssh-dss 
B3NzaC1kc3MAAACBAJzifj8sj/RyF4NHAKOYqru8X1bhXfdbxNm17+qKGnDv+Qg1AmOPQ79rtsUdJrFQhEtcM0ar8gKfg147HTzOoc8ALI4uEsBwEnz41ZSZsDPS3WK+QhK2U4ENovASdGfAozufSD2NUoS428+XKbQmhuLrJdmdYQjkByrYN6QIGjnrFQCr04qyQ+qftQWayQ2AUspHHdbmcwAAAIAxTz93Dqurh+g8JtmHmZ9DFYvXxKQWoNNtNbOmU9Yr3gsfVV50JXF3pJPYPJASG+iaCYK7NwpLcurHi92nNyAj5Y+xs8SyW2BMBHmRU2vTw3KeIiapR2EkMLd6s5SL4odV9rHu4eQNu9aPbp77VXPlfBsRUZYZOIvCsY2NnDy0EwAAAIA0ssmnU4mIjGk3fidu6uQI2/6spiJZX/WxP6FQpcYXX4ZbnnBHBDJq1XQ3lNzP6KrPsjRh9b+JFfEvmV1gGG9ikhz60aQVEoI6gKf9gkWL432yEwuZ1/1CkfsGKDselqS/poTfAjaey8rq0IVZjnJ/oeM9CYhzOJj0M2Pxu3nQnA==
 [EMAIL PROTECTED]




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
configure.in 


Log Message:
Removed evas, ecore, esmart, and eet checks from configure.in. The only
linking is to enlightenment libs and cflags so these checks are not needed.

===
RCS file: /cvs/e/e_modules/cpu/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in10 Mar 2006 15:11:21 -  1.5
+++ configure.in2 Apr 2006 21:02:32 -   1.6
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
configure.in 


Log Message:
Removed eet, evas, esmart, and ecore checks from configure.in. Not Needed.

===
RCS file: /cvs/e/e_modules/mem/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in10 Mar 2006 15:11:21 -  1.5
+++ configure.in2 Apr 2006 21:11:35 -   1.6
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mbar devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mbar

Dir : e_modules/mbar


Modified Files:
configure.in 


Log Message:
Removed eet, evas, ecore, and esmart configure checks as they are not needed.

===
RCS file: /cvs/e/e_modules/mbar/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in22 Mar 2006 01:58:15 -  1.3
+++ configure.in2 Apr 2006 21:08:29 -   1.4
@@ -109,48 +109,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -177,20 +135,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
configure.in 


Log Message:
Removed eet, evas, ecore, and esmart checks from configure.in. Not Needed.

===
RCS file: /cvs/e/e_modules/net/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in10 Mar 2006 15:11:21 -  1.5
+++ configure.in2 Apr 2006 21:14:15 -   1.6
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: rain devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : rain

Dir : e_modules/rain


Modified Files:
configure.in 


Log Message:
Removed eet, ecore, esmart, and evas checks from configure.in.

===
RCS file: /cvs/e/e_modules/rain/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- configure.in13 Feb 2006 13:24:07 -  1.10
+++ configure.in2 Apr 2006 21:16:44 -   1.11
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: kiwi devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : devs
Module  : kiwi

Dir : devs/kiwi




Log Message:
Directory /cvs/e/devs/kiwi added to the repository





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: kiwi devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : devs
Module  : kiwi

Dir : devs/kiwi


Added Files:
id_rsa.pub info.txt 


Log Message:
Added kiwi to developers for e_modules so he can add dEvian module and some
others.





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
configure.in 


Log Message:
Removed evas, ecore, eet checks from configure.in.

===
RCS file: /cvs/e/e_modules/screenshot/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- configure.in12 Feb 2006 21:41:21 -  1.11
+++ configure.in2 Apr 2006 21:20:25 -   1.12
@@ -96,34 +96,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -150,20 +122,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: slideshow devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
configure.in 


Log Message:
Remove checks for evas, eet, ecore and esmart as they are not needed.

===
RCS file: /cvs/e/e_modules/slideshow/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- configure.in12 Feb 2006 21:41:55 -  1.11
+++ configure.in2 Apr 2006 22:01:24 -   1.12
@@ -104,34 +104,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -158,20 +130,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: snow devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : snow

Dir : e_modules/snow


Modified Files:
configure.in 


Log Message:
Remove checks for eet, evas, ecore and esmart. Not Needed.

===
RCS file: /cvs/e/e_modules/snow/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- configure.in13 Feb 2006 13:24:50 -  1.8
+++ configure.in2 Apr 2006 22:03:54 -   1.9
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
configure.in 


Log Message:
Remove checks for eet, evas, ecore and esmart. Not Needed.

===
RCS file: /cvs/e/e_modules/tclock/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in1 Apr 2006 19:35:59 -   1.3
+++ configure.in2 Apr 2006 22:06:28 -   1.4
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
configure.in 


Log Message:
Remove checks for eet, evas, ecore and esmart as they are not needed.

===
RCS file: /cvs/e/e_modules/weather/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in2 Apr 2006 10:45:47 -   1.9
+++ configure.in2 Apr 2006 22:11:13 -   1.10
@@ -103,34 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -157,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
configure.in 


Log Message:
Remove checks for eet, evas, ecore and esmart as they are not needed.

===
RCS file: /cvs/e/e_modules/uptime/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in10 Mar 2006 15:11:21 -  1.5
+++ configure.in2 Apr 2006 22:08:38 -   1.6
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: wlan devilhorns

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
configure.in 


Log Message:
Removed checks for eet, evas, ecore and esmart.

===
RCS file: /cvs/e/e_modules/wlan/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in10 Mar 2006 15:11:21 -  1.5
+++ configure.in2 Apr 2006 22:12:06 -   1.6
@@ -103,48 +103,6 @@
 #AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
 #AC_SUBST(dlopen_libs)
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIG  use ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
-  echo using $ECORE_CONFIG for ecore-config;
-],[
-  PROG=ecore-config;
-  AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
-])
-ecore_cflags=`$ECORE_CONFIG --cflags`
-ecore_libs=`$ECORE_CONFIG --libs`
-AC_SUBST(ecore_cflags)
-AC_SUBST(ecore_libs)
-
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIG  use evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
-  echo using $EVAS_CONFIG for evas-config;
-],[
-  PROG=evas-config;
-  AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
-])
-evas_cflags=`$EVAS_CONFIG --cflags`
-evas_libs=`$EVAS_CONFIG --libs`
-AC_SUBST(evas_cflags)
-AC_SUBST(evas_libs)
-
-AC_ARG_WITH(esmart-config,
-[  --with-esmart-config=ESMART_CONFIG  use esmart-config specified ],
-[
-  ESMART_CONFIG=$withval;
-  echo using $ESMART_CONFIG for esmart-config;
-],[
-  PROG=esmart-config;
-  AC_PATH_PROG(ESMART_CONFIG, $PROG, , $PATH)
-])
-esmart_cflags=`$ESMART_CONFIG --cflags`
-esmart_libs=`$ESMART_CONFIG --libs`
-AC_SUBST(esmart_cflags)
-AC_SUBST(esmart_libs)
-
 AC_ARG_WITH(edje-config,
 [  --with-edje-config=EDJE_CONFIG  use edje-config specified ],
 [
@@ -171,20 +129,6 @@
   edje_cc=`$EDJE_CONFIG --prefix`/bin/edje_cc
 ])
 AC_SUBST(edje_cc)
-
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIG  use eet-config specified ],
-[
-  EET_CONFIG=$withval;
-  echo using $EET_CONFIG for eet-config;
-],[
-  PROG=eet-config;
-  AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
-])
-eet_cflags=`$EET_CONFIG --cflags`
-eet_libs=`$EET_CONFIG --libs`
-AC_SUBST(eet_cflags)
-AC_SUBST(eet_libs)
 
 AC_ARG_WITH(enlightenment-config,
 [  --with-enlightenment-config=E_CONFIGuse enlightenment-config specified 
],




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower




Log Message:
Directory /cvs/e/e17/proto/empower added to the repository





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower/src




Log Message:
Directory /cvs/e/e17/proto/empower/src added to the repository





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/modules/engines/buffer


Modified Files:
evas_outbuf.c 


Log Message:


bleh--

===
RCS file: /cvs/e/e17/libs/evas/src/modules/engines/buffer/evas_outbuf.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evas_outbuf.c   2 Apr 2006 07:47:31 -   1.5
+++ evas_outbuf.c   2 Apr 2006 23:52:26 -   1.6
@@ -107,7 +107,6 @@
im = evas_common_image_create(w, h);
if (im)
  {
-printf(bleh\n);
 if (((buf-depth == OUTBUF_DEPTH_ARGB_32BPP__)) ||
 ((buf-depth == OUTBUF_DEPTH_BGRA_32BPP__)))
   {




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower/m4




Log Message:
Directory /cvs/e/e17/proto/empower/m4 added to the repository





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower/m4


Added Files:
ac_expand_dir.m4 ac_path_generic.m4 empower.spec.in 


Log Message:
Initial import of empower, a graphical sudo program





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower


Added Files:
AUTHORS COPYING COPYING-PLAIN ChangeLog INSTALL Makefile.am 
NEWS README autogen.sh configure.in empower.spec.in 


Log Message:
Initial import of empower, a graphical sudo program





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower/src/bin


Added Files:
Makefile.am empower.c 


Log Message:
Initial import of empower, a graphical sudo program





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto mekius

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : mekius
Project : e17
Module  : proto

Dir : e17/proto/empower/src


Added Files:
Makefile.am 


Log Message:
Initial import of empower, a graphical sudo program





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2006-04-02 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/modules/engines/buffer


Modified Files:
evas_outbuf.c 


Log Message:


ok- actually handle dest buf if there is no back buf

===
RCS file: /cvs/e/e17/libs/evas/src/modules/engines/buffer/evas_outbuf.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas_outbuf.c   2 Apr 2006 23:52:26 -   1.6
+++ evas_outbuf.c   3 Apr 2006 03:29:10 -   1.7
@@ -261,7 +261,39 @@
  }
break;
   case OUTBUF_DEPTH_RGB_32BPP_888_:
-   /* no need src == dest */
+  case OUTBUF_DEPTH_ARGB_32BPP__:
+ {
+DATA32 *dest, *src, *dst;
+int xx, yy, row_bytes;
+
+row_bytes = buf-dest_row_bytes;
+dest = (DATA8 *)(buf-dest) + (y * row_bytes) + (x * 4);
+if (buf-func.new_update_region)
+  {
+ dest = buf-func.new_update_region(x, y, w, h, row_bytes);
+  }
+/* no need src == dest */
+if (!buf-priv.back_buf)
+  {
+ Gfx_Func_Blend_Src_Dst func;
+ 
+ func = evas_common_draw_func_copy_get(w, 0);
+ if (func)
+   {
+  for (yy = 0; yy  h; yy++)
+{
+   src = update-image-data + (yy * update-image-w);
+   dst = (DATA8 *)(buf-dest) + ((y + yy) * row_bytes);
+   func(src, dst, w);
+}
+  
+   }
+  }
+if (buf-func.free_update_region)
+  {
+ buf-func.free_update_region(x, y, w, h, dest);
+  }
+ }
break;
   case OUTBUF_DEPTH_BGR_32BPP_888_:
  {




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs