E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container


Modified Files:
Esmart_Container.h Makefile.am esmart_container.c 
esmart_container_element.c esmart_container_plugin.c 
esmart_container_private.h esmart_container_smart.c 
esmart_container_util.c 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_container/Esmart_Container.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Esmart_Container.h  15 Aug 2007 21:18:21 -  1.10
+++ Esmart_Container.h  12 Jul 2008 06:40:36 -  1.11
@@ -1,15 +1,22 @@
 #ifndef ESMART_CONTAINER_H
 #define ESMART_CONTAINER_H
 
+#include 
+
 #ifdef EAPI
-#undef EAPI
+# undef EAPI
 #endif
-#ifdef WIN32
-# ifdef BUILDING_DLL
-#  define EAPI __declspec(dllexport)
+
+#ifdef _WIN32
+# ifdef EFL_ESMART_CONTAINER_BUILD
+#  ifdef DLL_EXPORT
+#   define EAPI __declspec(dllexport)
+#  else
+#   define EAPI
+#  endif /* ! DLL_EXPORT */
 # else
 #  define EAPI __declspec(dllimport)
-# endif
+# endif /* ! EFL_ESMART_CONTAINER_BUILD */
 #else
 # ifdef __GNUC__
 #  if __GNUC__ >= 4
@@ -21,8 +28,6 @@
 #  define EAPI
 # endif
 #endif
-
-#include 
 
 /*
  Todo:
===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_container/Makefile.am,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- Makefile.am 5 Jul 2008 14:15:25 -   1.13
+++ Makefile.am 12 Jul 2008 06:40:36 -  1.14
@@ -23,5 +23,5 @@
 esmart_container_smart.c \
 esmart_container_util.c
 
-libesmart_container_la_LDFLAGS = -version-info @version_info@
-libesmart_container_la_LIBADD = -lltdl -lm @CONTAINER_LIBS@
+libesmart_container_la_LDFLAGS = -no-undefined -version-info @version_info@
+libesmart_container_la_LIBADD = @CONTAINER_LIBS@ -lltdl -lm
===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_container/esmart_container.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- esmart_container.c  6 Sep 2006 07:17:48 -   1.15
+++ esmart_container.c  12 Jul 2008 06:40:36 -  1.16
@@ -6,8 +6,15 @@
  *
  ***/
 
-#include 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include 
 #include 
+
+#include 
+
 #include "Esmart_Container.h"
 #include "esmart_container_private.h"
 
===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/esmart_container_element.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- esmart_container_element.c  6 Sep 2006 07:17:48 -   1.4
+++ esmart_container_element.c  12 Jul 2008 06:40:36 -  1.5
@@ -1,3 +1,11 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include 
+
+#include 
+
 #include "Esmart_Container.h"
 #include "esmart_container_private.h"
 
===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/esmart_container_plugin.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- esmart_container_plugin.c   5 May 2004 05:57:00 -   1.1.1.1
+++ esmart_container_plugin.c   12 Jul 2008 06:40:36 -  1.2
@@ -1,12 +1,17 @@
 /* plugin code taken from eplayer and modified */
 
-#include 
-#include 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include 
-#include 
 #include 
 #include 
 #include 
+#include 
+
+#include 
+
 #include "Esmart_Container.h"
 #include "esmart_container_private.h"
 
@@ -20,7 +25,11 @@
 return NULL;
 
   for (l = files; l; l = l->next) {
+#ifdef _WIN32
+sscanf((char *)l->data, "%127[^.].dll", tmp);
+#else
 sscanf((char *)l->data, "%127[^.].so", tmp);
+#endif /* ! _WIN32 */
 
 if (!strcasecmp(name, tmp)) {
   ret = strdup(l->data);
@@ -59,7 +68,11 @@
 
   memset(p, 0, sizeof(Container_Layout_Plugin));
 
-  snprintf(path, sizeof(path), "%s/%s.so", CONTAINER_PLUGIN_DIR, name); 
+#ifdef _WIN32
+  snprintf(path, sizeof(path), "%s/%s.dll", CONTAINER_PLUGIN_DIR, name);
+#else
+  snprintf(path, sizeof(path), "%s/%s.so", CONTAINER_PLUGIN_DIR, name);
+#endif /* ! _WIN32 */
 
   if ((numerr = lt_dlinit()))
   {
===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/esmart_container_private.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- esmart_container_private.h  2 Jan 2006 00:34:18 -   1.6
+++ esmart_container_private.h  12 Jul 2008 06:40:36 -  1.7
@@ -1,14 +1,6 @@
 #ifndef CONTAINER_PRIVATE_H
 #define CONTAINER_PRIVATE_H
 
-#include "Esmart_Container.h"

E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart


Modified Files:
configure.in 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: /cvs/e/e17/libs/esmart/configure.in,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -3 -r1.32 -r1.33
--- configure.in7 Jun 2008 14:57:23 -   1.32
+++ configure.in12 Jul 2008 06:40:36 -  1.33
@@ -26,45 +26,41 @@
 version_info=`expr $VMAJ + $VMIN`":$VMIC:$VMIN"
 AC_SUBST(version_info)
 
-
-dnl Set PACKAGE_DATA_DIR in config.h.
-if test "x${prefix}" = "xNONE"; then
-  AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
"${ac_default_prefix}/share/${PACKAGE}", [Shared Data Directory])
-else
-  AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}", [Shared 
Data Directory])
-fi
-
-if test "x${prefix}" = "xNONE"; then
-  container_plugin_dir=${ac_default_prefix}/lib/${PACKAGE}/layout
-  AC_DEFINE_UNQUOTED(PREFIX, "${ac_default_prefix}", [Installation Prefix])
-else
-  AC_DEFINE_UNQUOTED(PREFIX, "${prefix}", [Installation Prefix])
-  container_plugin_dir=${prefix}/lib/${PACKAGE}/layout
-fi
-
-AC_DEFINE_UNQUOTED(CONTAINER_PLUGIN_DIR, "${container_plugin_dir}", [Container 
Plugin Directory])
+case "$host_os" in
+mingw*)
+dnl needed for correct definition of EAPI
+AC_DEFINE(EFL_ESMART_CONTAINER_BUILD, 1, [Define to mention that 
esmart container is built])
+AC_DEFINE(EFL_ESMART_TEXT_ENTRY_BUILD, 1, [Define to mention that 
esmart text entry is built])
+;;
+esac
 
 # evas is required by all of the modules anyway :)
 requirements="evas"
-PKG_CHECK_MODULES(CONTAINER, [evas >= 0.9.9])
+PKG_CHECK_MODULES(CONTAINER, [evas >= 0.9.9 ecore >= 0.9.9 ecore-evas >= 
0.9.9])
 
 AC_CHECK_HEADER(ltdl.h, have_esmart_container=yes, have_esmart_container=no)
 
 PKG_CHECK_MODULES(DRAGGIES, [
 evas >= 0.9.9
+ecore-x >= 0.9.9
 ecore-evas >= 0.9.9
   ], [
 have_esmart_draggies=yes
 requirements="$requirements ecore-evas"
+  ], [
+have_esmart_draggies=no
   ]
 )
 
 PKG_CHECK_MODULES(RESIZE, [
 evas >= 0.9.9
+ecore-x >= 0.9.9
 ecore-evas >= 0.9.9
   ], [
 have_esmart_resize=yes
 requirements="$requirements ecore-evas"
+  ], [
+have_esmart_resize=no
   ]
 )
 
@@ -96,7 +92,7 @@
 evas >= 0.9.9
 ecore >= 0.9.9
 ecore-evas >= 0.9.9
-edje >= 0.5.0
+edje >= 0.9.9
   ], [
 have_esmart_text_entry=yes
 requirements="$requirements edje"



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_text_entry


Modified Files:
Esmart_Text_Entry.h Makefile.am esmart_text_entry.c 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_text_entry/Esmart_Text_Entry.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Esmart_Text_Entry.h 17 Dec 2007 03:21:19 -  1.9
+++ Esmart_Text_Entry.h 12 Jul 2008 06:40:37 -  1.10
@@ -1,15 +1,22 @@
 #ifndef _ESMART_TEXT_ENTRY_H
 #define _ESMART_TEXT_ENTRY_H
 
+#include 
+
 #ifdef EAPI
-#undef EAPI
+# undef EAPI
 #endif
-#ifdef WIN32
-# ifdef BUILDING_DLL
-#  define EAPI __declspec(dllexport)
+
+#ifdef _WIN32
+# ifdef EFL_ESMART_TEXT_ENTRY_BUILD
+#  ifdef DLL_EXPORT
+#   define EAPI __declspec(dllexport)
+#  else
+#   define EAPI
+#  endif /* ! DLL_EXPORT */
 # else
 #  define EAPI __declspec(dllimport)
-# endif
+# endif /* ! EFL_ESMART_TEXT_ENTRY_BUILD */
 #else
 # ifdef __GNUC__
 #  if __GNUC__ >= 4
@@ -21,8 +28,6 @@
 #  define EAPI
 # endif
 #endif
-
-#include 
 
 #ifdef __cplusplus
 extern "C" {
===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_text_entry/Makefile.am,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- Makefile.am 11 Nov 2007 11:05:07 -  1.9
+++ Makefile.am 12 Jul 2008 06:40:37 -  1.10
@@ -15,6 +15,6 @@
 esmart_text_entry.c \
 Esmart_Text_Entry.h
 
-libesmart_text_entry_la_LDFLAGS = -version-info @version_info@
+libesmart_text_entry_la_LDFLAGS = -no-undefined -version-info @version_info@
 libesmart_text_entry_la_LIBADD = @TEXT_ENTRY_LIBS@
 
===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_text_entry/esmart_text_entry.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- esmart_text_entry.c 6 Sep 2006 07:17:48 -   1.13
+++ esmart_text_entry.c 12 Jul 2008 06:40:37 -  1.14
@@ -2,12 +2,16 @@
  * vim:ts=8:sw=3
  */
 
-#include 
-#include 
-#include 
-#include 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include 
 #include 
+
+#include 
+#include 
+
 #include "Esmart_Text_Entry.h"
 
 struct _Esmart_Text_Entry



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/engage


Modified Files:
Makefile.am engage.c 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/engage/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 11 Nov 2007 11:05:07 -  1.6
+++ Makefile.am 12 Jul 2008 06:40:37 -  1.7
@@ -9,4 +9,5 @@
 plugin_LTLIBRARIES = engage.la
 
 engage_la_SOURCES = engage.c
-engage_la_LDFLAGS = -module -avoid-version
+engage_la_LIBADD = 
$(top_builddir)/src/lib/esmart_container/libesmart_container.la @CONTAINER_LIBS@
+engage_la_LDFLAGS = -no-undefined -module -avoid-version
===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/engage/engage.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- engage.c12 Nov 2007 20:58:22 -  1.5
+++ engage.c12 Jul 2008 06:40:37 -  1.6
@@ -1,6 +1,15 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include 
+#include 
+#include 
+#include 
+
 #include 
 #include 
-#include 
+
 #include "../../Esmart_Container.h"
 #include "../../esmart_container_private.h"
 



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/entice


Modified Files:
Makefile.am entice.c 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/entice/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 11 Nov 2007 11:05:07 -  1.6
+++ Makefile.am 12 Jul 2008 06:40:37 -  1.7
@@ -9,4 +9,5 @@
 plugindir = @libdir@/@PACKAGE@/layout
 
 entice_la_SOURCES = entice.c
-entice_la_LDFLAGS = -module -avoid-version
+entice_la_LIBADD = 
$(top_builddir)/src/lib/esmart_container/libesmart_container.la @CONTAINER_LIBS@
+entice_la_LDFLAGS = -no-undefined -module -avoid-version
===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/entice/entice.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- entice.c12 Nov 2007 20:58:22 -  1.5
+++ entice.c12 Jul 2008 06:40:37 -  1.6
@@ -1,6 +1,13 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include 
+#include 
+
 #include 
 #include 
-#include 
+
 #include "../../Esmart_Container.h"
 #include "../../esmart_container_private.h"
 



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/default


Modified Files:
Makefile.am default.c 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/default/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 5 Jul 2008 10:31:33 -   1.7
+++ Makefile.am 12 Jul 2008 06:40:36 -  1.8
@@ -10,4 +10,4 @@
 
 default_la_SOURCES = default.c
 default_la_LIBADD = 
$(top_builddir)/src/lib/esmart_container/libesmart_container.la @CONTAINER_LIBS@
-default_la_LDFLAGS = -module -avoid-version
+default_la_LDFLAGS = -no-undefined -module -avoid-version
===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/default/default.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- default.c   15 Dec 2007 03:39:38 -  1.8
+++ default.c   12 Jul 2008 06:40:37 -  1.9
@@ -1,6 +1,14 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include 
+#include 
+#include 
+
 #include 
 #include 
-#include 
+
 #include "../../Esmart_Container.h"
 #include "../../esmart_container_private.h"
 



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_textarea


Modified Files:
Makefile.am 


Log Message:
make (some parts of) esmart working on Windows

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_textarea/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 10 Jul 2007 17:33:55 -  1.6
+++ Makefile.am 12 Jul 2008 06:40:37 -  1.7
@@ -1,19 +1,25 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_textarea.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_textarea \
-  @TEXT_AREA_CFLAGS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_textarea \
+-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
[EMAIL PROTECTED]@
 
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Textarea.h
 
-libesmart_textarea_la_SOURCES = esmart_textarea_callbacks.c \
-   esmart_textarea_cursor.c \
-   esmart_textarea_private.c \
-   esmart_textarea_smart.c \
-   esmart_textarea_public.c \
-   Esmart_Textarea.h \
-   esmart_textarea_private.h
+libesmart_textarea_la_SOURCES = \
+esmart_textarea_callbacks.c \
+esmart_textarea_cursor.c \
+esmart_textarea_private.c \
+esmart_textarea_smart.c \
+esmart_textarea_public.c \
+Esmart_Textarea.h \
+esmart_textarea_private.h
 
 libesmart_textarea_la_LDFLAGS = @TEXT_AREA_LIBS@ -version-info 0:9:0
 libesmart_textarea_la_LIBADD = 



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container


Modified Files:
Makefile.am 


Log Message:
compile the lib before the plugins

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_container/Makefile.am,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- Makefile.am 11 Nov 2007 11:05:06 -  1.12
+++ Makefile.am 5 Jul 2008 14:15:25 -   1.13
@@ -1,7 +1,7 @@
 
 MAINTAINERCLEANFILES = Makefile.in
 
-SUBDIRS = layout
+SUBDIRS = . layout
 
 AM_CPPFLAGS = \
 -I$(top_srcdir)/src/lib/esmart_container \



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-07-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/default


Modified Files:
Makefile.am 


Log Message:
link layout/default.so against esmart_container

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/default/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 11 Nov 2007 11:05:07 -  1.6
+++ Makefile.am 5 Jul 2008 10:31:33 -   1.7
@@ -9,4 +9,5 @@
 plugindir = @libdir@/@PACKAGE@/layout
 
 default_la_SOURCES = default.c
+default_la_LIBADD = 
$(top_builddir)/src/lib/esmart_container/libesmart_container.la @CONTAINER_LIBS@
 default_la_LDFLAGS = -module -avoid-version



-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-06-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart


Modified Files:
configure.in 


Log Message:
should fix the linking problem. remove some trailing spaces and unused code

===
RCS file: /cvs/e/e17/libs/esmart/configure.in,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- configure.in25 Jan 2008 03:35:49 -  1.31
+++ configure.in7 Jun 2008 14:57:23 -   1.32
@@ -94,6 +94,8 @@
 
 PKG_CHECK_MODULES(TEXT_ENTRY, [
 evas >= 0.9.9
+ecore >= 0.9.9
+ecore-evas >= 0.9.9
 edje >= 0.5.0
   ], [
 have_esmart_text_entry=yes



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2008-06-07 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/bin


Modified Files:
esmart_text_entry_test.c 


Log Message:
should fix the linking problem. remove some trailing spaces and unused code

===
RCS file: /cvs/e/e17/libs/esmart/src/bin/esmart_text_entry_test.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- esmart_text_entry_test.c31 Jul 2007 08:42:04 -  1.2
+++ esmart_text_entry_test.c7 Jun 2008 14:57:23 -   1.3
@@ -1,6 +1,6 @@
 /*
  * esmart_text_entry_test.c
- * 
+ *
  * A test program for the text entry smart objects.
  *
  */
@@ -65,7 +65,6 @@
 {
   Evas *evas = NULL;
   Ecore_Evas *ee = NULL;
-  Ecore_X_Window win = 0;
   Evas_Object *o = NULL;
   Evas_Object *edje = NULL;
 
@@ -82,7 +81,6 @@
 edje_init();
 
 ee = ecore_evas_software_x11_new (NULL, 0, 0, 0, width, height);
-win = ecore_evas_software_x11_window_get(ee);
 ecore_evas_title_set (ee, "Enlightenment Text Entry Test");
 ecore_evas_callback_delete_request_set (ee, window_del_cb);
 ecore_evas_callback_resize_set (ee, window_resize_cb);
@@ -101,7 +99,7 @@
 evas_object_move (edje, 0, 0);
 evas_object_resize (edje, width, height);
 evas_object_show (edje);
-
+
 o = esmart_text_entry_new (evas);
 esmart_text_entry_edje_part_set (o, edje, "text");
 evas_object_move (o, 0, 0);



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart doursse

2007-11-12 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart


Modified Files:
configure.in 


Log Message:
Fix awk portability by removing the space between the -F flag and its arg.

===
RCS file: /cvs/e/e17/libs/esmart/configure.in,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- configure.in11 Nov 2007 11:05:06 -  1.29
+++ configure.in13 Nov 2007 07:13:51 -  1.30
@@ -19,10 +19,10 @@
 define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
 AC_PROG_LIBTOOL
 
-VMAJ=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $1);}'`
-VMIN=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $2);}'`
-VMIC=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $3);}'`
-SNAP=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $4);}'`
+VMAJ=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $1);}'`
+VMIN=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $2);}'`
+VMIC=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $3);}'`
+SNAP=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $4);}'`
 version_info=`expr $VMAJ + $VMIN`":$VMIC:$VMIN"
 AC_SUBST(version_info)
 



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/default


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/default/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 21 Mar 2007 16:28:23 -  1.5
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.6
@@ -1,9 +1,12 @@
-plugin_LTLIBRARIES = default.la
-plugindir = @libdir@/@PACKAGE@/layout
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_container \
-  @CONTAINER_CFLAGS@
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_container \
[EMAIL PROTECTED]@
 
+plugin_LTLIBRARIES = default.la
+plugindir = @libdir@/@PACKAGE@/layout
 
 default_la_SOURCES = default.c
 default_la_LDFLAGS = -module -avoid-version



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_file_dialog


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_file_dialog/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 10 Jul 2007 17:33:54 -  1.8
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.9
@@ -1,20 +1,26 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_dialog \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_file_dialog.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_dialog \
- @FILE_DIALOG_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_File_Dialog.h
 
 libesmart_file_dialog_la_DEPENDENCIES = \
- 
$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
-
$(top_builddir)/src/lib/esmart_text_entry/libesmart_text_entry.la
+$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
+$(top_builddir)/src/lib/esmart_text_entry/libesmart_text_entry.la
 
-libesmart_file_dialog_la_SOURCES = esmart_file_dialog.c \
-  Esmart_File_Dialog.h
+libesmart_file_dialog_la_SOURCES = \
+esmart_file_dialog.c \
+Esmart_File_Dialog.h
 
-libesmart_file_dialog_la_LDFLAGS = @FILE_DIALOG_LIBS@ -version-info 0:9:0
+libesmart_file_dialog_la_LDFLAGS = -version-info @version_info@
 libesmart_file_dialog_la_LIBADD = \
- 
$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
-
$(top_builddir)/src/lib/esmart_text_entry/libesmart_text_entry.la 
+$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
+$(top_builddir)/src/lib/esmart_text_entry/libesmart_text_entry.la \
[EMAIL PROTECTED]@



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_thumb


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_thumb/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- Makefile.am 10 Jul 2007 17:33:55 -  1.7
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.8
@@ -1,15 +1,19 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+INCLUDES = \
+-I$(top_srcdir)/src/lib/esmart_thumb \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_thumb.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_thumb \
- @THUMB_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Thumb.h
 
-libesmart_thumb_la_SOURCES = esmart_thumb.c \
-Esmart_Thumb.h
-
-libesmart_thumb_la_LDFLAGS = @THUMB_LIBS@ -version-info 0:9:0
-libesmart_thumb_la_LIBADD = 
+libesmart_thumb_la_SOURCES = \
+esmart_thumb.c \
+Esmart_Thumb.h
 
+libesmart_thumb_la_LDFLAGS = -version-info @version_info@
+libesmart_thumb_la_LIBADD = @THUMB_LIBS@



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_draggies


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_draggies/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 10 Jul 2007 17:33:54 -  1.8
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.9
@@ -1,15 +1,19 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_draggies \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_draggies.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_draggies \
- @DRAGGIES_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Draggies.h
 
-libesmart_draggies_la_SOURCES = esmart_draggies.c \
-   Esmart_Draggies.h
-
-libesmart_draggies_la_LDFLAGS = @DRAGGIES_LIBS@ -version-info 0:9:0
-libesmart_draggies_la_LIBADD = 
+libesmart_draggies_la_SOURCES = \
+esmart_draggies.c \
+Esmart_Draggies.h
 
+libesmart_draggies_la_LDFLAGS = -version-info @version_info@
+libesmart_draggies_la_LIBADD = @DRAGGIES_LIBS@



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_resize


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_resize/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 10 Jul 2007 17:33:54 -  1.2
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.3
@@ -1,15 +1,19 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_resize \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_resize.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_resize \
- @RESIZE_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Resize.h
 
-libesmart_resize_la_SOURCES = esmart_resize.c \
-   Esmart_Resize.h
-
-libesmart_resize_la_LDFLAGS = @RESIZE_LIBS@ -version-info 0:9:0
-libesmart_resize_la_LIBADD = 
+libesmart_resize_la_SOURCES = \
+esmart_resize.c \
+Esmart_Resize.h
 
+libesmart_resize_la_LDFLAGS = -version-info @version_info@
+libesmart_resize_la_LIBADD = @RESIZE_LIBS@



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_text_entry


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_text_entry/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 10 Jul 2007 17:33:54 -  1.8
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.9
@@ -1,15 +1,20 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_text_entry \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_text_entry.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_text_entry \
- @TEXT_ENTRY_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Text_Entry.h
 
-libesmart_text_entry_la_SOURCES = esmart_text_entry.c \
- Esmart_Text_Entry.h
+libesmart_text_entry_la_SOURCES = \
+esmart_text_entry.c \
+Esmart_Text_Entry.h
 
-libesmart_text_entry_la_LDFLAGS = @TEXT_ENTRY_LIBS@ -version-info 0:9:0
-libesmart_text_entry_la_LIBADD = 
+libesmart_text_entry_la_LDFLAGS = -version-info @version_info@
+libesmart_text_entry_la_LIBADD = @TEXT_ENTRY_LIBS@
 



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/entice


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/entice/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 21 Mar 2007 16:28:23 -  1.5
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.6
@@ -1,8 +1,12 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_container \
[EMAIL PROTECTED]@
+
 plugin_LTLIBRARIES = entice.la
 plugindir = @libdir@/@PACKAGE@/layout
-
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_container \
-  @CONTAINER_CFLAGS@
 
 entice_la_SOURCES = entice.c
 entice_la_LDFLAGS = -module -avoid-version



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/engage


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: 
/cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/engage/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- Makefile.am 21 Mar 2007 16:28:23 -  1.5
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.6
@@ -1,8 +1,12 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_container \
[EMAIL PROTECTED]@
+
 plugindir = @libdir@/@PACKAGE@/layout
 plugin_LTLIBRARIES = engage.la
-
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_container \
-  @CONTAINER_CFLAGS@
 
 engage_la_SOURCES = engage.c
 engage_la_LDFLAGS = -module -avoid-version



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_container/layout/Makefile.am,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- Makefile.am 5 May 2004 05:57:00 -   1.1.1.1
+++ Makefile.am 11 Nov 2007 11:05:07 -  1.2
@@ -1,3 +1,4 @@
-SUBDIRS = default engage entice
+
 MAINTAINERCLEANFILES = Makefile.in
 
+SUBDIRS = default engage entice



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/bin


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/bin/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 12 Jul 2007 21:07:00 -  1.8
+++ Makefile.am 11 Nov 2007 11:05:06 -  1.9
@@ -1,30 +1,34 @@
+
 MAINTAINERCLEANFILES = Makefile.in
 
-AM_CFLAGS = -I$(top_srcdir)/src/lib \
--I$(top_srcdir)/src/lib/esmart_thumb \
--I$(top_srcdir)/src/lib/esmart_container \
--I$(top_srcdir)/src/lib/esmart_trans_x11 \
--I$(top_srcdir)/src/lib/esmart_draggies \
--I$(top_srcdir)/src/lib/esmart_text_entry \
--I$(top_srcdir)/src/lib/esmart_file_dialog \
-@CONTAINER_CFLAGS@ @THUMB_CFLAGS@
-
-bin_PROGRAMS   = esmart_test esmart_text_entry_test
-
-#esmart_test_DEPENDENCIES  = $(top_builddir)/src/lib/libesmart.la
-esmart_test_SOURCES= esmart_test.c 
-
-esmart_test_LDADD  = \
-   $(top_builddir)/src/lib/esmart_container/libesmart_container.la 
\
-   $(top_builddir)/src/lib/esmart_draggies/libesmart_draggies.la \
-   $(top_builddir)/src/lib/esmart_thumb/libesmart_thumb.la \
-   $(top_builddir)/src/lib/esmart_trans_x11/libesmart_trans_x11.la 
\
-   @CONTAINER_LIBS@ @THUMB_LIBS@
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib \
+-I$(top_srcdir)/src/lib/esmart_thumb \
+-I$(top_srcdir)/src/lib/esmart_container \
+-I$(top_srcdir)/src/lib/esmart_trans_x11 \
+-I$(top_srcdir)/src/lib/esmart_draggies \
+-I$(top_srcdir)/src/lib/esmart_text_entry \
+-I$(top_srcdir)/src/lib/esmart_file_dialog \
+-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
+
+bin_PROGRAMS = esmart_test esmart_text_entry_test
+
+#esmart_test_DEPENDENCIES = $(top_builddir)/src/lib/libesmart.la
+esmart_test_SOURCES = esmart_test.c
+
+esmart_test_LDADD = \
+$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
+$(top_builddir)/src/lib/esmart_draggies/libesmart_draggies.la \
+$(top_builddir)/src/lib/esmart_thumb/libesmart_thumb.la \
+$(top_builddir)/src/lib/esmart_trans_x11/libesmart_trans_x11.la \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
 
-esmart_text_entry_test_SOURCES = esmart_text_entry_test.c
+esmart_text_entry_test_SOURCES = esmart_text_entry_test.c
 
 esmart_text_entry_test_LDADD = \
-
$(top_builddir)/src/lib/esmart_text_entry/libesmart_text_entry.la \
-
$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
-@TEXT_ENTRY_LIBS@
-
+$(top_builddir)/src/lib/esmart_text_entry/libesmart_text_entry.la \
+$(top_builddir)/src/lib/esmart_container/libesmart_container.la \
[EMAIL PROTECTED]@



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart


Modified Files:
configure.in 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/configure.in,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- configure.in26 Aug 2007 14:33:40 -  1.28
+++ configure.in11 Nov 2007 11:05:06 -  1.29
@@ -1,7 +1,10 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(esmart, 0.9.0.011)
+AC_INIT(esmart, 0.9.0.011, [EMAIL PROTECTED])
+AC_PREREQ(2.52)
+AC_CONFIG_SRCDIR(configure.in)
+
+AM_INIT_AUTOMAKE(1.6 dist-bzip2)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX
@@ -10,11 +13,20 @@
 AC_HEADER_STDC
 AC_C_BIGENDIAN
 AC_C_CONST
-AM_ENABLE_SHARED
-AM_PROG_LIBTOOL
 
-dnl Use -Wall if we have gcc.
-   
+AC_LIBTOOL_WIN32_DLL
+define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl
+define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
+AC_PROG_LIBTOOL
+
+VMAJ=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $1);}'`
+VMIN=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $2);}'`
+VMIC=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $3);}'`
+SNAP=`echo $PACKAGE_VERSION | awk -F . '{printf("%s", $4);}'`
+version_info=`expr $VMAJ + $VMIN`":$VMIC:$VMIN"
+AC_SUBST(version_info)
+
+
 dnl Set PACKAGE_DATA_DIR in config.h.
 if test "x${prefix}" = "xNONE"; then
   AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 
"${ac_default_prefix}/share/${PACKAGE}", [Shared Data Directory])
@@ -31,16 +43,6 @@
 fi
 
 AC_DEFINE_UNQUOTED(CONTAINER_PLUGIN_DIR, "${container_plugin_dir}", [Container 
Plugin Directory])
-AC_SUBST(CONTAINER_PLUGIN_DIR)
-
-changequote(,)dnl
-if test "x$GCC" = "xyes"; then
-  case " $CFLAGS " in
-  *[\ \]-Wall[\ \  ]*) ;;
-  *) CFLAGS="$CFLAGS -Wall " ;;
-  esac
-fi
-changequote([,])dnl
 
 # evas is required by all of the modules anyway :)
 requirements="evas"



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/data/images


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/data/images/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 25 Aug 2007 13:49:46 -  1.3
+++ Makefile.am 11 Nov 2007 11:05:06 -  1.4
@@ -1,3 +1,6 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
 FILES = \
 esmart.png \
 text_view_bg.png \



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_container/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 10 Jul 2007 17:33:54 -  1.11
+++ Makefile.am 11 Nov 2007 11:05:06 -  1.12
@@ -1,21 +1,27 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
 SUBDIRS = layout
 
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_container \
+-DCONTAINER_PLUGIN_DIR=\"$(libdir)/$(PACKAGE)/layout\" \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_container.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_container \
-  @CONTAINER_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Container.h
 
-libesmart_container_la_SOURCES = esmart_container.c \
-Esmart_Container.h \
-esmart_container_element.c \
-esmart_container_plugin.c \
-esmart_container_private.h \
-esmart_container_smart.c \
-esmart_container_util.c
+libesmart_container_la_SOURCES = \
+esmart_container.c \
+Esmart_Container.h \
+esmart_container_element.c \
+esmart_container_plugin.c \
+esmart_container_private.h \
+esmart_container_smart.c \
+esmart_container_util.c
 
-libesmart_container_la_LDFLAGS = @CONTAINER_LIBS@ -version-info 0:9:0 
-libesmart_container_la_LIBADD = -lltdl -lm
+libesmart_container_la_LDFLAGS = -version-info @version_info@
+libesmart_container_la_LIBADD = -lltdl -lm @CONTAINER_LIBS@



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/data


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/data/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 25 Aug 2007 13:49:46 -  1.3
+++ Makefile.am 11 Nov 2007 11:05:06 -  1.4
@@ -1,13 +1,14 @@
+
 MAINTAINERCLEANFILES = Makefile.in
 
 SUBDIRS = images
 
 EDJE_CC = @edje_cc@
 EDJE_FLAGS = \
-   -v \
-   -id $(top_srcdir)/data/images \
-   -fd $(top_srcdir)/data/fonts \
-   @EDJE_DEF@
+-v \
+-id $(top_srcdir)/data/images \
+-fd $(top_srcdir)/data/fonts \
[EMAIL PROTECTED]@
 
 filesdir = $(pkgdatadir)
 files_DATA = esmart_text_entry_test.edj



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


E CVS: libs/esmart doursse

2007-11-11 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_trans_x11


Modified Files:
Makefile.am 


Log Message:
autostuff improvements:

 * use non deprecated version of AC_INIT and AM_INIT_AUTOMAKE
   and check the required minimal versions.
 * add bzipped distribution archive
 * add AC_LIBTOOL_WIN32_DLL
 * forbid libtool to check fortran and c++ compilers
 * compute libtool versioning from the version of the package
 * pass the directories based on ${prefix} to the preoprocessor
   with the -D option
 * replace INCLUDES, wich is deprecated since 2001 by AM_CPPFLAGS
 * remove useless -L flags in *_la_LDFLAGS
 * remove Makefile.in on maintainer-clean rule

===
RCS file: /cvs/e/e17/libs/esmart/src/lib/esmart_trans_x11/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- Makefile.am 10 Jul 2007 17:33:55 -  1.8
+++ Makefile.am 11 Nov 2007 11:05:08 -  1.9
@@ -1,16 +1,19 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I$(top_srcdir)/src/lib/esmart_trans_x11 \
[EMAIL PROTECTED]@
+
 pkgdir = @libdir@
 pkg_LTLIBRARIES = libesmart_trans_x11.la
 
-INCLUDES = -I$(top_srcdir)/src/lib/esmart_trans_x11 \
- @TRANSX11_CFLAGS@
-
 installed_headersdir = $(prefix)/include/Esmart
 installed_headers_DATA = Esmart_Trans_X11.h
 
-libesmart_trans_x11_la_SOURCES = esmart_trans_x11.c \
-Esmart_Trans_X11.h
-
-libesmart_trans_x11_la_LDFLAGS = @TRANSX11_LIBS@ -version-info 0:9:0 \
--L/usr/X11R6/lib
-libesmart_trans_x11_la_LIBADD = 
+libesmart_trans_x11_la_SOURCES = \
+esmart_trans_x11.c \
+Esmart_Trans_X11.h
 
+libesmart_trans_x11_la_LDFLAGS = -version-info @version_info@
+libesmart_trans_x11_la_LIBADD = @TRANSX11_LIBS@ -L/usr/X11R6/lib



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