Enlightenment CVS committal

Author  : lok
Project : e17
Module  : proto

Dir     : e17/proto/emphasis


Modified Files:
        README TODO configure.in 


Log Message:
The config now use ecore_config.
The textblock is fixed and display the current song or state.
Small fix on the small/full mode.

===================================================================
RCS file: /cvs/e/e17/proto/emphasis/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- README      6 Jun 2006 11:22:15 -0000       1.1
+++ README      8 Jul 2006 03:53:40 -0000       1.2
@@ -14,7 +14,6 @@
 
 #####################################
 State:
-       MoOm is currently rewriting the Etk_Textblock, so it has been 
desactivated.
        Etk_Spinner has been remove frome etk cvs so the config panel isn't 
usable.
 
 #####################################
===================================================================
RCS file: /cvs/e/e17/proto/emphasis/TODO,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- TODO        29 Jun 2006 15:41:06 -0000      1.2
+++ TODO        8 Jul 2006 03:53:40 -0000       1.3
@@ -1,4 +1,3 @@
-*Use ecore_config instead of eet
 *Add utf-8 support
 *Use Table in config frames
 *Put callback's on the spin button
===================================================================
RCS file: /cvs/e/e17/proto/emphasis/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- configure.in        11 Jun 2006 23:11:02 -0000      1.3
+++ configure.in        8 Jul 2006 03:53:40 -0000       1.4
@@ -74,23 +74,6 @@
    ]
 )
 
-#check for EVAS
-AC_PATH_EFL(
-   evas,
-   0.9.9.022,
-   [
-     AC_DEFINE(HAVE_EVAS, 1, have EVAS)
-     evas="EVAS "
-     AM_CONDITIONAL(HAVE_EVAS, true)
-     have_evas="yes"
-     evas_libs=`evas-config --libs`
-     evas_cflags=`evas-config --cflags`
-   ],
-   [
-     AC_MSG_ERROR([No Evas, can't build.])
-   ]
-)
-
 #check for ETK
 AC_PATH_EFL(
    etk,
@@ -108,32 +91,22 @@
    ]
 )
 
-#check for EET
-AC_PATH_EFL(
-   eet,
-   0.9.10.026,
-   [
-     AC_DEFINE(HAVE_EET, 1, have EET)
-     eet="EET "
-     AM_CONDITIONAL(HAVE_EET, true)
-     have_eet="yes"
-     eet_libs=`eet-config --libs`
-     eet_cflags=`eet-config --cflags`     
-   ],
-   [
-     AC_DEFINE(HAVE_EET, 0, no EET)
-     AM_CONDITIONAL(HAVE_EET, false)
-     AC_MSG_WARN([No EET, can't build EET desktop support.])
-     have_eet="no"
-     eet_libs=""
-     eet_cflags=""
-   ]
-)
-
 #check for libmpd
 PKG_CHECK_MODULES(
    [libmpd], 
-       libmpd >= 0.12.0)
+       libmpd >= 0.12.0,
+       [
+        AC_DEFINE(HAVE_LIBMPD, 1, have LIBMPD)
+        libmpd="libmpd"
+        AM_CONDITIONAL(HAVE_LIBMPD, true)
+        have_libmpd="yes"
+        libmpd_libs=`pkg-config --libs libmpd`
+        libmpd_cflags=`pkg-config --cflags libmpd`
+       ],
+       [
+        AC_MSG_ERROR([libmpd not found.])
+       ]
+)
 
 dnl Set ETK_PACKAGE_DATA_DIR in config.h.  
 etk_prefix="\"`etk-config --prefix`/share/etk\""
@@ -142,16 +115,14 @@
 
 ecore_libs=`ecore-config --libs`
 ecore_cflags=`ecore-config --cflags`
-evas_libs=`evas-config --libs`
-evas_cflags=`evas-config --cflags`
 etk_libs=`etk-config --libs`
 etk_cflags=`etk-config --cflags`
-eet_libs=`eet-config --libs`
-eet_cflags=`eet-config --cflags`
+libmpd_libs=`pkg-config --libs libmpd`
+libmpd_cflags=`pkg-config --cflags libmpd`
 
 # add your required libs / include here
-my_includes="$ecore_cflags $evas_cflags $etk_cflags $eet_cflags"
-my_libs="$ecore_libs $evas_libs $etk_libs $eet_lib"
+my_includes="$ecore_cflags $etk_cflags $libmpd_cflags"
+my_libs="$ecore_libs $etk_libs $libmpd_libs"
 AC_SUBST(my_includes)
 AC_SUBST(my_libs)
 



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

Reply via email to