E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_x Modified Files: Ecore_X.h Log Message: s/KEYOBARD/KEYBOARD/g === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/Ecore_X.h,v retrieving revision 1.203 retrieving revision 1.204 diff -u -3 -r1.203 -r1.204 --- Ecore_X.h 25 Jul 2008 01:54:26 - 1.203 +++ Ecore_X.h 25 Jul 2008 02:21:03 - 1.204 @@ -986,16 +986,16 @@ } Ecore_X_Window_Configure_Mask; typedef enum _Ecore_X_Virtual_Keyboard_State { -ECORE_X_VIRTUAL_KEYOBARD_STATE_UNKNOWN = 0, -ECORE_X_VIRTUAL_KEYOBARD_STATE_OFF, -ECORE_X_VIRTUAL_KEYOBARD_STATE_ON, -ECORE_X_VIRTUAL_KEYOBARD_STATE_ALPHA, -ECORE_X_VIRTUAL_KEYOBARD_STATE_NUMERIC, -ECORE_X_VIRTUAL_KEYOBARD_STATE_PIN, -ECORE_X_VIRTUAL_KEYOBARD_STATE_PHONE_NUMBER, -ECORE_X_VIRTUAL_KEYOBARD_STATE_HEX, -ECORE_X_VIRTUAL_KEYOBARD_STATE_TERMINAL, -ECORE_X_VIRTUAL_KEYOBARD_STATE_PASSWORD +ECORE_X_VIRTUAL_KEYBOARD_STATE_UNKNOWN = 0, +ECORE_X_VIRTUAL_KEYBOARD_STATE_OFF, +ECORE_X_VIRTUAL_KEYBOARD_STATE_ON, +ECORE_X_VIRTUAL_KEYBOARD_STATE_ALPHA, +ECORE_X_VIRTUAL_KEYBOARD_STATE_NUMERIC, +ECORE_X_VIRTUAL_KEYBOARD_STATE_PIN, +ECORE_X_VIRTUAL_KEYBOARD_STATE_PHONE_NUMBER, +ECORE_X_VIRTUAL_KEYBOARD_STATE_HEX, +ECORE_X_VIRTUAL_KEYBOARD_STATE_TERMINAL, +ECORE_X_VIRTUAL_KEYBOARD_STATE_PASSWORD } Ecore_X_Virtual_Keyboard_State; - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_x/xlib Modified Files: ecore_x_e.c Log Message: s/KEYOBARD/KEYBOARD/g === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/xlib/ecore_x_e.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ecore_x_e.c 25 Jul 2008 01:45:36 - 1.2 +++ ecore_x_e.c 25 Jul 2008 02:21:03 - 1.3 @@ -47,16 +47,16 @@ static Ecore_X_Virtual_Keyboard_State _ecore_x_e_vkbd_state_get(Ecore_X_Atom atom) { - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ON) return ECORE_X_VIRTUAL_KEYOBARD_STATE_ON; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_OFF) return ECORE_X_VIRTUAL_KEYOBARD_STATE_OFF; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ALPHA) return ECORE_X_VIRTUAL_KEYOBARD_STATE_ALPHA; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_NUMERIC) return ECORE_X_VIRTUAL_KEYOBARD_STATE_NUMERIC; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PIN) return ECORE_X_VIRTUAL_KEYOBARD_STATE_PIN; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PHONE_NUMBER) return ECORE_X_VIRTUAL_KEYOBARD_STATE_PHONE_NUMBER; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_HEX) return ECORE_X_VIRTUAL_KEYOBARD_STATE_HEX; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_TERMINAL) return ECORE_X_VIRTUAL_KEYOBARD_STATE_TERMINAL; - if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PASSWORD) return ECORE_X_VIRTUAL_KEYOBARD_STATE_PASSWORD; - return ECORE_X_VIRTUAL_KEYOBARD_STATE_UNKNOWN; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ON) return ECORE_X_VIRTUAL_KEYBOARD_STATE_ON; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_OFF) return ECORE_X_VIRTUAL_KEYBOARD_STATE_OFF; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ALPHA) return ECORE_X_VIRTUAL_KEYBOARD_STATE_ALPHA; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_NUMERIC) return ECORE_X_VIRTUAL_KEYBOARD_STATE_NUMERIC; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PIN) return ECORE_X_VIRTUAL_KEYBOARD_STATE_PIN; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PHONE_NUMBER) return ECORE_X_VIRTUAL_KEYBOARD_STATE_PHONE_NUMBER; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_HEX) return ECORE_X_VIRTUAL_KEYBOARD_STATE_HEX; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_TERMINAL) return ECORE_X_VIRTUAL_KEYBOARD_STATE_TERMINAL; + if (atom == ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PASSWORD) return ECORE_X_VIRTUAL_KEYBOARD_STATE_PASSWORD; + return ECORE_X_VIRTUAL_KEYBOARD_STATE_UNKNOWN; } static Ecore_X_Atom @@ -64,15 +64,15 @@ { switch (state) { - case ECORE_X_VIRTUAL_KEYOBARD_STATE_OFF: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_OFF; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_ON: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ON; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_ALPHA: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ALPHA; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_NUMERIC: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_NUMERIC; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_PIN: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PIN; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_PHONE_NUMBER: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PHONE_NUMBER; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_HEX: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_HEX; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_TERMINAL: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_TERMINAL; - case ECORE_X_VIRTUAL_KEYOBARD_STATE_PASSWORD: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PASSWORD; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_OFF: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_OFF; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_ON: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ON; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_ALPHA: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_ALPHA; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_NUMERIC: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_NUMERIC; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_PIN: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PIN; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_PHONE_NUMBER: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PHONE_NUMBER; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_HEX: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_HEX; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_TERMINAL: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_TERMINAL; + case ECORE_X_VIRTUAL_KEYBOARD_STATE_PASSWORD: return ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_PASSWORD; default: return 0; } return 0; @@ -96,7 +96,7 @@ if (!ecore_x_window_prop_atom_get(win, ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_STATE, &atom, 1)) - return ECORE_X_VIRTUAL_KEYOBARD_STATE_UNKNOWN; + return ECORE_X_VIRTUAL_KEYBOARD_STATE_UNKNOWN; return _ecore_x_e_vkbd_state_get(atom); } - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Wed Jul 23 00:10:13 2008Michael Jennings (mej) distcheck and spec fixes -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- ecore.spec.in 7 Nov 2007 05:42:07 - 1.24 +++ ecore.spec.in 23 Jul 2008 07:11:55 - 1.25 @@ -22,6 +22,7 @@ ## enabled features ##%bcond_without module_engine_software_x11 %bcond_without lib_ecore_fb +%bcond_without lib_ecore_imf # This just keeps a missing doxygen from killing the build. %define _missing_doc_files_terminate_build 0 @@ -29,8 +30,9 @@ %define breq_lib_ecore_directfb %{?with_lib_ecore_directfb:DirectFB} %define breq_lib_ecore_sdl %{?with_lib_ecore_sdl:SDL-devel} -%define ac_with_lib_ecore_fb --%{?with_lib_ecore_fb:en}%{!?with_lib_ecore_fb:dis}able-ecore-fb %define ac_with_lib_ecore_directfb --%{?with_lib_ecore_directfb:en}%{!?with_lib_ecore_directfb:dis}able-ecore-directfb +%define ac_with_lib_ecore_fb --%{?with_lib_ecore_fb:en}%{!?with_lib_ecore_fb:dis}able-ecore-fb +%define ac_with_lib_ecore_imf --%{?with_lib_ecore_imf:en}%{!?with_lib_ecore_imf:dis}able-ecore-imf %define ac_with_lib_ecore_sdl --%{?with_lib_ecore_sdl:en}%{!?with_lib_ecore_sdl:dis}able-ecore-sdl Summary: Enlightened Core X interface library @@ -44,7 +46,7 @@ Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <[EMAIL PROTECTED]>} Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} -#BuildSuggests: xorg-x11-devel, XFree86-devel +#BuildSuggests: xorg-x11-devel, XFree86-devel, libX11-devel BuildRequires: libjpeg-devel, openssl-devel %{?breq_lib_ecore_directfb} BuildRequires: curl-devel, evas-devel, eet-devel %{?breq_lib_ecore_sdl} BuildRoot: %{_tmppath}/%{name}-%{version}-root @@ -124,6 +126,15 @@ %description file Ecore File Library +%if %{with lib_ecore_imf} +%package imf +Summary: Ecore IMF functions +Group: Development/Libraries +Requires: %{name} = %{version} +%description imf +Ecore IMF functions +%endif + %package ipc Summary: Ecore inter-process communication functions Group: Development/Libraries @@ -164,8 +175,9 @@ LDFLAGS="-L/usr/kerberos/lib -L/usr/X11R6/%{_lib}" export CFLAGS LDFLAGS %{configure} --prefix=%{_prefix} \ -%{?ac_with_lib_ecore_fb} \ %{?ac_with_lib_ecore_directfb} \ +%{?ac_with_lib_ecore_fb} \ +%{?ac_with_lib_ecore_imf} \ %{?ac_with_lib_ecore_sdl} %{__make} %{?_smp_mflags} %{?mflags} @@ -228,6 +240,12 @@ %files file %defattr(-, root, root) %{_libdir}/libecore_file.so.* + +%if %{with lib_ecore_imf} +%files imf +%defattr(-, root, root) +%{_libdir}/libecore_imf*.so.* +%endif %files ipc %defattr(-, root, root) - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: configure.in Log Message: Mon Mar 10 22:11:43 2008Michael Jennings (mej) Do not force use of pkgconfig to detect SDL -- supported versions of SDL (1.2.0) did not ship with pkgconfig support. Do not use PKG_CHECK_EXISTS as it is not available in older pkgconfig releases. -- === RCS file: /cvs/e/e17/libs/ecore/configure.in,v retrieving revision 1.250 retrieving revision 1.251 diff -u -3 -r1.250 -r1.251 --- configure.in11 Mar 2008 02:25:29 - 1.250 +++ configure.in11 Mar 2008 05:12:47 - 1.251 @@ -52,12 +52,12 @@ dnl The first call to PKG_CHECK_MODULES is done conditionally, dnl so we should include this here: -PKG_PROG_PKG_CONFIG +dnl#PKG_PROG_PKG_CONFIG dnl check common functions and headers AC_CHECK_FUNCS(gettimeofday) AC_CHECK_FUNCS(strlcpy) -AC_CHECK_HEADERS(dlfcn.h features.h langinfo.h locale.h netinet/in.h sys/mman.h sys/time.h windows.h winsock2.h) +AC_CHECK_HEADERS([dlfcn.h features.h langinfo.h locale.h netinet/in.h sys/mman.h sys/time.h windows.h winsock2.h]) AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl) AC_SUBST(dlopen_libs) @@ -73,16 +73,15 @@ ) if test "x$want_openssl" = "xyes"; then - PKG_CHECK_MODULES(SSL, openssl, -[ - AC_DEFINE(USE_OPENSSL, 1, [Use OpenSSL]) - requirements_ecore_con="$requirements_ecore_con openssl" - # no need to add it to req_ecore_ipc, since they - # depends on ecore_con anyway. - have_openssl="yes" -], -[ have_openssl="no" ] - ) +PKG_CHECK_MODULES([SSL], [openssl], [ +AC_DEFINE(USE_OPENSSL, 1, [Use OpenSSL]) +requirements_ecore_con="$requirements_ecore_con openssl" +# no need to add it to req_ecore_ipc, since they +# depends on ecore_con anyway. +have_openssl="yes" +], [ +have_openssl="no" +]) fi dnl curl @@ -324,7 +323,7 @@ Xcursor_cflags="" use_Xcursor="no" PCFLAGS=$CFLAGS -CFLAGS=$x_cflags" "$x_includes +CFLAGS="$x_cflags $x_includes" AC_CHECK_HEADER(X11/Xcursor/Xcursor.h, [ AC_CHECK_LIB(Xcursor, XcursorImageLoadCursor, @@ -389,12 +388,12 @@ AC_MSG_RESULT($want_ecore_evas_x11) if test "x$want_ecore_evas_x11" = "xyes"; then -PKG_CHECK_EXISTS(evas-software-x11, - [ +PKG_CHECK_MODULES(EVAS_SOFTWARE_X11, evas-software-x11, [ AC_DEFINE(BUILD_ECORE_EVAS_X11, 1, [Support for X11 Engine in Ecore_Evas]) have_ecore_evas_x11="yes"; - ] -) +], [ +have_ecore_evas_x11="no"; +]) fi dnl ecore_evas_x11_gl @@ -410,12 +409,12 @@ AC_MSG_RESULT($want_ecore_evas_x11_gl) if test "x$want_ecore_evas_x11_gl" = "xyes"; then -PKG_CHECK_EXISTS(evas-opengl-x11, - [ +PKG_CHECK_MODULES(EVAS_OPENGL_X11, evas-opengl-x11, [ AC_DEFINE(BUILD_ECORE_EVAS_X11_GL, 1, [Support for GL Engine in Ecore_Evas]) have_ecore_evas_x11_gl="yes"; - ] -) +], [ +have_ecore_evas_x11_gl="no" +]) fi dnl ecore_evas_xrender @@ -432,12 +431,12 @@ AC_MSG_RESULT($want_ecore_evas_xrender) if test "x$want_ecore_evas_xrender" = "xyes"; then -PKG_CHECK_EXISTS(evas-xrender-x11, - [ +PKG_CHECK_MODULES(EVAS_XRENDER_X11, evas-xrender-x11, [ AC_DEFINE(BUILD_ECORE_EVAS_XRENDER, 1, [Support for XRender Engine in Ecore_Evas]) -have_ecore_evas_xrender="yes"; - ] -) +have_ecore_evas_xrender="yes" +], [ +have_ecore_evas_xrender="no" +]) fi dnl ecore_evas_x11_16 @@ -454,7 +453,7 @@ AC_MSG_RESULT($want_ecore_evas_x11_16) if test "x$want_ecore_evas_x11_16" = "xyes"; then -PKG_CHECK_EXISTS(evas-software-16-x11, +PKG_CHECK_MODULES(EVAS_SOFTWARE_16_X11, evas-software-16-x11, [ AC_DEFINE(BUILD_ECORE_EVAS_X11_16, 1, [Support for X11 16bpp Engine in Ecore_Evas]) have_ecore_evas_x11_16="yes"; @@ -473,7 +472,7 @@ # TODO: We should first check if we have win32 available before checking for win32 evas # TODO: Need to check if we have evas before testing win32 evas engines AC_MSG_CHECKING(for Evas Software DirectDraw engine) -PKG_CHECK_EXISTS(evas-software-ddraw >= 0.9.9.41, +PKG_CHECK_MODULES(EVAS_SOFTWARE_DDRAW, evas-software-ddraw >= 0.9.9.41, [ have_ddraw="yes" AC_DEFINE(HAVE_DIRECTDRAW, 1, [Build Ecore_Win32 with DirectDraw Code]) ddraw_libs="-lddraw -ldxguid" ], @@ -483,7 +482,7 @@ AC_SUBST(ddraw_libs) AC_MSG_CHECKING(for Evas 16bpp Software DirectDraw engine) -PKG_CHECK_EXISTS(evas-software-16-ddraw >= 0.9.9.41, +PKG_CHECK_MODULES(EVAS_SOFTWARE_16_DDRAW, evas-software-16-ddraw >= 0.9.9.41, [ have_ddraw_16="yes" AC_DEFINE(HAVE_DIRECTDRAW_16, 1, [Build Ecore_Win32 with 1
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: configure.in Log Message: Mon Mar 10 19:25:39 2008Michael Jennings (mej) Do not require bleeding-edge autoFUCK tools. -- === RCS file: /cvs/e/e17/libs/ecore/configure.in,v retrieving revision 1.249 retrieving revision 1.250 diff -u -3 -r1.249 -r1.250 --- configure.in9 Mar 2008 16:43:32 - 1.249 +++ configure.in11 Mar 2008 02:25:29 - 1.250 @@ -57,7 +57,7 @@ dnl check common functions and headers AC_CHECK_FUNCS(gettimeofday) AC_CHECK_FUNCS(strlcpy) -AC_CHECK_HEADERS_ONCE(dlfcn.h features.h langinfo.h locale.h netinet/in.h sys/mman.h sys/time.h windows.h winsock2.h) +AC_CHECK_HEADERS(dlfcn.h features.h langinfo.h locale.h netinet/in.h sys/mman.h sys/time.h windows.h winsock2.h) AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl) AC_SUBST(dlopen_libs) - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Tue Nov 6 21:42:00 2007Michael Jennings (mej) Spec and build fixes. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- ecore.spec.in 1 Jul 2007 17:28:11 - 1.23 +++ ecore.spec.in 7 Nov 2007 05:42:07 - 1.24 @@ -16,19 +16,22 @@ %endif ## disabled features +%bcond_with lib_ecore_directfb +%bcond_with lib_ecore_sdl ## enabled features ##%bcond_without module_engine_software_x11 %bcond_without lib_ecore_fb -%bcond_without lib_ecore_directfb # This just keeps a missing doxygen from killing the build. %define _missing_doc_files_terminate_build 0 %define breq_lib_ecore_directfb %{?with_lib_ecore_directfb:DirectFB} +%define breq_lib_ecore_sdl %{?with_lib_ecore_sdl:SDL-devel} %define ac_with_lib_ecore_fb --%{?with_lib_ecore_fb:en}%{!?with_lib_ecore_fb:dis}able-ecore-fb -%define ac_with_lib_ecore_directfb --%{?with_lib_ecore_directfb:en}%{!?with_lib_ecore_directfb:dis}able-ecore-dfb +%define ac_with_lib_ecore_directfb --%{?with_lib_ecore_directfb:en}%{!?with_lib_ecore_directfb:dis}able-ecore-directfb +%define ac_with_lib_ecore_sdl --%{?with_lib_ecore_sdl:en}%{!?with_lib_ecore_sdl:dis}able-ecore-sdl Summary: Enlightened Core X interface library Name: @PACKAGE@ @@ -43,7 +46,7 @@ Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} #BuildSuggests: xorg-x11-devel, XFree86-devel BuildRequires: libjpeg-devel, openssl-devel %{?breq_lib_ecore_directfb} -BuildRequires: curl-devel, evas-devel, eet-devel +BuildRequires: curl-devel, evas-devel, eet-devel %{?breq_lib_ecore_sdl} BuildRoot: %{_tmppath}/%{name}-%{version}-root %description @@ -57,8 +60,7 @@ Group: Development/Libraries Requires: %{name} = %{version} Requires: curl-devel, openssl-devel, evas-devel, eet-devel -Requires: ecore-bin, ecore-con, ecore-config, ecore-dbus, ecore-desktop, -Requires: ecore-evas, ecore-file, ecore-ipc, ecore-job, ecore-txt +Requires: ecore-bin, ecore-con, ecore-config, ecore-evas, ecore-file, ecore-ipc, ecore-job, ecore-txt Requires: ecore-x %{?with_lib_ecore_fb:ecore-fb} %{?with_lib_ecore_directfb:ecore-directfb} %description devel @@ -88,22 +90,6 @@ %description config Ecore Enlightened Property Library -%package dbus -Summary: Ecore DBus Library -Group: Development/Libraries -Requires: %{name} = %{version} - -%description dbus -Ecore DBus Library - -%package desktop -Summary: Ecore freedesktop.org .desktop, icon, menu parsing Library -Group: Development/Libraries -Requires: %{name} = %{version} - -%description desktop -Ecore freedesktop.org .desktop, icon, menu parsing Library - %if %{with lib_ecore_directfb} %package directfb Summary: Ecore DirectFB system functions @@ -177,7 +163,11 @@ CFLAGS="-I/usr/kerberos/include -I/usr/X11R6/include/X11/extensions" LDFLAGS="-L/usr/kerberos/lib -L/usr/X11R6/%{_lib}" export CFLAGS LDFLAGS -%{configure} --prefix=%{_prefix} %{?ac_with_lib_ecore_fb} %{?ac_with_lib_ecore_directfb} +%{configure} --prefix=%{_prefix} \ +%{?ac_with_lib_ecore_fb} \ +%{?ac_with_lib_ecore_directfb} \ +%{?ac_with_lib_ecore_sdl} + %{__make} %{?_smp_mflags} %{?mflags} %install @@ -204,7 +194,7 @@ %{_libdir}/*.la %{_libdir}/*.a %{_libdir}/pkgconfig/* -%{_datadir}/aclocal/* +#%{_datadir}/aclocal/* %{_includedir}/*.h %files bin @@ -218,14 +208,6 @@ %files config %defattr(-, root, root) %{_libdir}/libecore_config.so.* - -%files dbus -%defattr(-, root, root) -%{_libdir}/libecore_dbus.so.* - -%files desktop -%defattr(-, root, root) -%{_libdir}/libecore_desktop.so.* %if %{with lib_ecore_directfb} %files directfb - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_dbus Modified Files: Ecore_DBus.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/Ecore_DBus.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- Ecore_DBus.h15 Mar 2007 07:57:42 - 1.24 +++ Ecore_DBus.h15 Mar 2007 22:21:27 - 1.25 @@ -10,7 +10,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: configure.in ecore-config.in Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/configure.in,v retrieving revision 1.171 retrieving revision 1.172 diff -u -3 -r1.171 -r1.172 --- configure.in15 Mar 2007 07:57:41 - 1.171 +++ configure.in15 Mar 2007 22:21:26 - 1.172 @@ -243,288 +243,17 @@ AC_SUBST(Xcursor_cflags) AC_SUBST(Xcursor_libs) - Xprint_libs="" - Xprint_cflags="" - use_Xprint="no" - PCFLAGS=$CFLAGS - CFLAGS=$x_cflags" "$x_includes - AC_CHECK_HEADER(X11/extensions/Print.h, -[ - AC_CHECK_LIB(Xp, XpQueryScreens, -[ - AC_DEFINE(ECORE_XPRINT, 1, [Build support for Xprint]) - Xprint_cflags="" - Xprint_libs="-lXp" - use_Xprint="yes" -], [ - Xprint_cflags="" - Xprint_libs="" - use_Xprint="no" -], [ - $x_libs -] - ) -], [ - Xprint_cflags="" - Xprint_libs="" - use_Xprint="no" -], [ - #include -] - ) - CFLAGS=$PCFLAGS - - AC_SUBST(Xprint_cflags) - AC_SUBST(Xprint_libs) - - Xinerama_libs="" - Xinerama_cflags="" - use_Xinerama="no" - PCFLAGS=$CFLAGS - CFLAGS=$x_cflags" "$x_includes - AC_CHECK_HEADER(X11/extensions/Xinerama.h, -[ - AC_CHECK_LIB(Xinerama, XineramaQueryScreens, -[ - AC_DEFINE(ECORE_XINERAMA, 1, [Build support for Xinerama]) - Xinerama_cflags="" - Xinerama_libs="-lXinerama" - use_Xinerama="yes" -], [ - Xinerama_cflags="" - Xinerama_libs="" - use_Xinerama="no" -], [ - $x_libs -] - ) -], [ - Xinerama_cflags="" - Xinerama_libs="" - use_Xinerama="no" -], [ - #include -] - ) - CFLAGS=$PCFLAGS - - AC_SUBST(Xinerama_cflags) - AC_SUBST(Xinerama_libs) - - Xrandr_libs="" - Xrandr_cflags="" - use_Xrandr="no" - PCFLAGS=$CFLAGS - CFLAGS=$x_cflags" "$x_includes - AC_CHECK_HEADER(X11/extensions/Xrandr.h, -[ - AC_CHECK_LIB(Xrandr, XRRSizes, -[ - AC_DEFINE(ECORE_XRANDR, 1, [Build support for Xrandr]) - Xrandr_cflags="" - Xrandr_libs="-lXrandr" - use_Xrandr="yes" -], [ - Xrandr_cflags="" - Xrandr_libs="" - use_Xrandr="no" -], [ - $x_libs -] - ) -], [ - Xrandr_cflags="" - Xrandr_libs="" - use_Xrandr="no" -], [ - #include -] - ) - CFLAGS=$PCFLAGS - - AC_SUBST(Xrandr_cflags) - AC_SUBST(Xrandr_libs) - - Xss_libs="" - Xss_cflags="" - use_Xss="no" - PCFLAGS=$CFLAGS - CFLAGS=$x_cflags" "$x_includes - AC_CHECK_HEADER(X11/extensions/scrnsaver.h, -[ - AC_CHECK_LIB(Xss, XScreenSaverSelectInput, -[ - AC_DEFINE(ECORE_XSS, 1, [Build support for Xss]) - Xss_cflags="" - Xss_libs="-lXss" - use_Xss="yes" -], [ - Xss_cflags="" - Xss_libs="" - use_Xss="no" -], [ - $x_libs -] - ) -], [ - Xss_cflags="" - Xss_libs="" - use_Xss="no" -], [ - #include -] - ) - CFLAGS=$PCFLAGS - - AC_SUBST(Xss_cflags) - AC_SUBST(Xss_libs) - - Xrender_libs="" - Xrender_cflags="" - use_Xrender="no" - PCFLAGS=$CFLAGS - CFLAGS=$x_cflags" "$x_includes - AC_CHECK_HEADER(X11/extensions/Xrender.h, -[ - AC_CHECK_LIB(Xrender, XRenderFindVisualFormat, -[ - AC_DEFINE(ECORE_XRENDER, 1, [Build support for Xrender]) - Xrender_cflags="" - Xrender_libs="-lXrender" - use_Xrender="yes" -], [ - Xrender_cflags="" - Xrender_libs="" - use_Xrender="no" -], [ - $x_libs -] - ) -], [ - Xrender_cflags="" - Xrender_libs="" - use_Xrender="no" -], [ - #include -] - ) - CFLAGS=$PCFLAGS - - AC_SUBST(Xrender_cflags) - AC_SUBST(Xrender_libs) - - Xfixes_libs="" - Xfixes_cflags="" - use_Xfixes="no" - PCFLAGS=$CFLAGS - CFLAGS=$x_cflags" "$x_includes - AC_CHECK_HEADER(X11/extensions/Xfixes.h, -[ - AC_CHECK_LIB(Xfixes, XFixesExpandRegion, -[ - AC_DEFINE(ECORE_XFIXES, 1, [Build support for Xfixes]) - Xfixes_cflags="" - Xfixes_libs="-lXfixes" - use_Xfixes="yes" -], [ - Xfixes_cflags="" - Xfixes_libs="" - use_Xfixes="no" -], [ - $x_libs -
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_config Modified Files: Ecore_Config.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_config/Ecore_Config.h,v retrieving revision 1.56 retrieving revision 1.57 diff -u -3 -r1.56 -r1.57 --- Ecore_Config.h 15 Mar 2007 07:57:42 - 1.56 +++ Ecore_Config.h 15 Mar 2007 22:21:27 - 1.57 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_job Modified Files: Ecore_Job.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_job/Ecore_Job.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- Ecore_Job.h 15 Mar 2007 07:57:43 - 1.7 +++ Ecore_Job.h 15 Mar 2007 22:21:27 - 1.8 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_fb Modified Files: Ecore_Fb.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_fb/Ecore_Fb.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- Ecore_Fb.h 15 Mar 2007 07:57:42 - 1.11 +++ Ecore_Fb.h 15 Mar 2007 22:21:27 - 1.12 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_ipc Modified Files: Ecore_Ipc.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_ipc/Ecore_Ipc.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -3 -r1.20 -r1.21 --- Ecore_Ipc.h 15 Mar 2007 07:57:42 - 1.20 +++ Ecore_Ipc.h 15 Mar 2007 22:21:27 - 1.21 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_txt Modified Files: Ecore_Txt.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_txt/Ecore_Txt.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- Ecore_Txt.h 15 Mar 2007 07:57:43 - 1.7 +++ Ecore_Txt.h 15 Mar 2007 22:21:28 - 1.8 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_file Modified Files: Ecore_File.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_file/Ecore_File.h,v retrieving revision 1.30 retrieving revision 1.31 diff -u -3 -r1.30 -r1.31 --- Ecore_File.h15 Mar 2007 07:57:42 - 1.30 +++ Ecore_File.h15 Mar 2007 22:21:27 - 1.31 @@ -12,7 +12,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_directfb Modified Files: Ecore_DirectFB.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_directfb/Ecore_DirectFB.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- Ecore_DirectFB.h15 Mar 2007 07:57:42 - 1.8 +++ Ecore_DirectFB.h15 Mar 2007 22:21:27 - 1.9 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_evas Modified Files: Ecore_Evas.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/Ecore_Evas.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- Ecore_Evas.h15 Mar 2007 07:57:42 - 1.24 +++ Ecore_Evas.h15 Mar 2007 22:21:27 - 1.25 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore Modified Files: Ecore.h Ecore_Data.h Ecore_Str.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore.h,v retrieving revision 1.52 retrieving revision 1.53 diff -u -3 -r1.52 -r1.53 --- Ecore.h 15 Mar 2007 07:57:41 - 1.52 +++ Ecore.h 15 Mar 2007 22:21:26 - 1.53 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Data.h,v retrieving revision 1.39 retrieving revision 1.40 diff -u -3 -r1.39 -r1.40 --- Ecore_Data.h15 Mar 2007 07:57:41 - 1.39 +++ Ecore_Data.h15 Mar 2007 22:21:26 - 1.40 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Str.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- Ecore_Str.h 15 Mar 2007 07:57:42 - 1.8 +++ Ecore_Str.h 15 Mar 2007 22:21:26 - 1.9 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_con Modified Files: Ecore_Con.h Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/Ecore_Con.h,v retrieving revision 1.26 retrieving revision 1.27 diff -u -3 -r1.26 -r1.27 --- Ecore_Con.h 15 Mar 2007 07:57:42 - 1.26 +++ Ecore_Con.h 15 Mar 2007 22:21:26 - 1.27 @@ -7,7 +7,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef WIN32 +#ifdef _MSC_VER # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_x Modified Files: Makefile.am ecore_x_drawable.c Log Message: Thu Mar 15 12:20:27 2007Michael Jennings (mej) Re-apply the previously reverted patch and add (I think) the correct fix for ecore-config. I haven't tested this extensively, but edje builds okay with it, so hopefully it's right. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/Makefile.am,v retrieving revision 1.35 retrieving revision 1.36 diff -u -3 -r1.35 -r1.36 --- Makefile.am 15 Mar 2007 07:57:43 - 1.35 +++ Makefile.am 15 Mar 2007 22:21:28 - 1.36 @@ -2,13 +2,14 @@ INCLUDES = \ @Xcursor_cflags@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ @x_cflags@ \ -I$(top_srcdir)/src/lib/ecore \ -I$(top_srcdir)/src/lib/ecore_txt \ @@ -58,13 +59,14 @@ libecore_x_la_LIBADD = \ @Xcursor_libs@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ @x_libs@ \ $(top_builddir)/src/lib/ecore/libecore.la \ $(top_builddir)/src/lib/ecore_txt/libecore_txt.la \ === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_drawable.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ecore_x_drawable.c 15 Mar 2007 07:57:43 - 1.3 +++ ecore_x_drawable.c 15 Mar 2007 22:21:28 - 1.4 @@ -1,13 +1,25 @@ +/* + * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 + */ + #include "ecore_x_private.h" /** + * @defgroup Ecore_X_Drawable_Group X Drawable Functions + * + * Functions that operate on drawables. + */ + + +/** * Retrieves the geometry of the given drawable. * @param d The given drawable. * @param x Pointer to an integer into which the X position is to be stored. * @param y Pointer to an integer into which the Y position is to be stored. * @param w Pointer to an integer into which the width is to be stored. * @param h Pointer to an integer into which the height is to be stored. + * @ingroup Ecore_X_Drawable_Group */ EAPI void ecore_x_drawable_geometry_get(Ecore_X_Drawable d, int *x, int *y, int *w, int *h) @@ -35,6 +47,7 @@ * Retrieves the width of the border of the given drawable. * @param d The given drawable. * @return The border width of the given drawable. + * @ingroup Ecore_X_Drawable_Group */ EAPI int ecore_x_drawable_border_width_get(Ecore_X_Drawable d) @@ -54,6 +67,7 @@ * Retrieves the depth of the given drawable. * @param d The given drawable. * @return The depth of the given drawable. + * @ingroup Ecore_X_Drawable_Group */ EAPI int ecore_x_drawable_depth_get(Ecore_X_Drawable d) - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Wed Mar 14 22:06:13 2007Michael Jennings (mej) I hate when I do that. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.21 retrieving revision 1.22 diff -u -3 -r1.21 -r1.22 --- ecore.spec.in 15 Mar 2007 07:57:41 - 1.21 +++ ecore.spec.in 15 Mar 2007 08:06:15 - 1.22 @@ -33,7 +33,7 @@ Summary: Enlightened Core X interface library Name: @PACKAGE@ Version: @VERSION@ -Release: 1.20070314 +Release: 0.%(date '+%Y%m%d') License: BSD Group: User Interface/X Source: %{name}-%{version}.tar.gz - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_txt Modified Files: Ecore_Txt.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_txt/Ecore_Txt.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- Ecore_Txt.h 15 Mar 2007 01:01:10 - 1.6 +++ Ecore_Txt.h 15 Mar 2007 07:57:43 - 1.7 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_fb Modified Files: Ecore_Fb.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_fb/Ecore_Fb.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -3 -r1.10 -r1.11 --- Ecore_Fb.h 15 Mar 2007 01:01:10 - 1.10 +++ Ecore_Fb.h 15 Mar 2007 07:57:42 - 1.11 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_job Modified Files: Ecore_Job.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_job/Ecore_Job.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- Ecore_Job.h 15 Mar 2007 01:01:10 - 1.6 +++ Ecore_Job.h 15 Mar 2007 07:57:43 - 1.7 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_evas Modified Files: Ecore_Evas.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/Ecore_Evas.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- Ecore_Evas.h15 Mar 2007 01:01:10 - 1.23 +++ Ecore_Evas.h15 Mar 2007 07:57:42 - 1.24 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_ipc Modified Files: Ecore_Ipc.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_ipc/Ecore_Ipc.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -3 -r1.19 -r1.20 --- Ecore_Ipc.h 15 Mar 2007 01:01:10 - 1.19 +++ Ecore_Ipc.h 15 Mar 2007 07:57:42 - 1.20 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_file Modified Files: Ecore_File.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_file/Ecore_File.h,v retrieving revision 1.29 retrieving revision 1.30 diff -u -3 -r1.29 -r1.30 --- Ecore_File.h15 Mar 2007 01:01:10 - 1.29 +++ Ecore_File.h15 Mar 2007 07:57:42 - 1.30 @@ -12,7 +12,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_directfb Modified Files: Ecore_DirectFB.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_directfb/Ecore_DirectFB.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- Ecore_DirectFB.h15 Mar 2007 01:01:10 - 1.7 +++ Ecore_DirectFB.h15 Mar 2007 07:57:42 - 1.8 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_config Modified Files: Ecore_Config.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_config/Ecore_Config.h,v retrieving revision 1.55 retrieving revision 1.56 diff -u -3 -r1.55 -r1.56 --- Ecore_Config.h 15 Mar 2007 01:01:09 - 1.55 +++ Ecore_Config.h 15 Mar 2007 07:57:42 - 1.56 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_con Modified Files: Ecore_Con.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/Ecore_Con.h,v retrieving revision 1.25 retrieving revision 1.26 diff -u -3 -r1.25 -r1.26 --- Ecore_Con.h 15 Mar 2007 01:01:09 - 1.25 +++ Ecore_Con.h 15 Mar 2007 07:57:42 - 1.26 @@ -7,7 +7,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore Modified Files: Ecore.h Ecore_Data.h Ecore_Str.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore.h,v retrieving revision 1.51 retrieving revision 1.52 diff -u -3 -r1.51 -r1.52 --- Ecore.h 15 Mar 2007 01:01:09 - 1.51 +++ Ecore.h 15 Mar 2007 07:57:41 - 1.52 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Data.h,v retrieving revision 1.38 retrieving revision 1.39 diff -u -3 -r1.38 -r1.39 --- Ecore_Data.h15 Mar 2007 01:01:09 - 1.38 +++ Ecore_Data.h15 Mar 2007 07:57:41 - 1.39 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Str.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- Ecore_Str.h 15 Mar 2007 01:01:09 - 1.7 +++ Ecore_Str.h 15 Mar 2007 07:57:42 - 1.8 @@ -4,7 +4,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_dbus Modified Files: Ecore_DBus.h Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/Ecore_DBus.h,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- Ecore_DBus.h15 Mar 2007 01:01:10 - 1.23 +++ Ecore_DBus.h15 Mar 2007 07:57:42 - 1.24 @@ -10,7 +10,7 @@ #ifdef EAPI #undef EAPI #endif -#ifdef _MSC_VER +#ifdef WIN32 # ifdef BUILDING_DLL # define EAPI __declspec(dllexport) # else - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: configure.in ecore.spec.in Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/configure.in,v retrieving revision 1.170 retrieving revision 1.171 diff -u -3 -r1.170 -r1.171 --- configure.in15 Mar 2007 00:32:29 - 1.170 +++ configure.in15 Mar 2007 07:57:41 - 1.171 @@ -243,17 +243,288 @@ AC_SUBST(Xcursor_cflags) AC_SUBST(Xcursor_libs) - AC_CHECK_X_EXTENSION([Xdamage], [Xdamage.h], [Xdamage], [XDamageSubtract]) - AC_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xdpms], [DPMSQueryExtension]) - if test "x$use_xdpms" = "xno" ; then -AC_CHECK_X_EXTENSION([Xdpms], [dpms.h], [Xext], [DPMSQueryExtension]) - fi - AC_CHECK_X_EXTENSION([Xfixes], [Xfixes.h], [Xfixes], [XFixesExpandRegion]) - AC_CHECK_X_EXTENSION([Xinerama], [Xinerama.h], [Xinerama], [XineramaQueryScreens]) - AC_CHECK_X_EXTENSION([Xprint], [Print.h], [Xp], [XpQueryScreens]) - AC_CHECK_X_EXTENSION([Xrandr], [Xrandr.h], [Xrandr], [XRRSizes]) - AC_CHECK_X_EXTENSION([Xrender], [Xrender.h], [Xrender], [XRenderFindVisualFormat]) - AC_CHECK_X_EXTENSION([Xss], [scrnsaver.h], [Xss], [XScreenSaverSelectInput]) + Xprint_libs="" + Xprint_cflags="" + use_Xprint="no" + PCFLAGS=$CFLAGS + CFLAGS=$x_cflags" "$x_includes + AC_CHECK_HEADER(X11/extensions/Print.h, +[ + AC_CHECK_LIB(Xp, XpQueryScreens, +[ + AC_DEFINE(ECORE_XPRINT, 1, [Build support for Xprint]) + Xprint_cflags="" + Xprint_libs="-lXp" + use_Xprint="yes" +], [ + Xprint_cflags="" + Xprint_libs="" + use_Xprint="no" +], [ + $x_libs +] + ) +], [ + Xprint_cflags="" + Xprint_libs="" + use_Xprint="no" +], [ + #include +] + ) + CFLAGS=$PCFLAGS + + AC_SUBST(Xprint_cflags) + AC_SUBST(Xprint_libs) + + Xinerama_libs="" + Xinerama_cflags="" + use_Xinerama="no" + PCFLAGS=$CFLAGS + CFLAGS=$x_cflags" "$x_includes + AC_CHECK_HEADER(X11/extensions/Xinerama.h, +[ + AC_CHECK_LIB(Xinerama, XineramaQueryScreens, +[ + AC_DEFINE(ECORE_XINERAMA, 1, [Build support for Xinerama]) + Xinerama_cflags="" + Xinerama_libs="-lXinerama" + use_Xinerama="yes" +], [ + Xinerama_cflags="" + Xinerama_libs="" + use_Xinerama="no" +], [ + $x_libs +] + ) +], [ + Xinerama_cflags="" + Xinerama_libs="" + use_Xinerama="no" +], [ + #include +] + ) + CFLAGS=$PCFLAGS + + AC_SUBST(Xinerama_cflags) + AC_SUBST(Xinerama_libs) + + Xrandr_libs="" + Xrandr_cflags="" + use_Xrandr="no" + PCFLAGS=$CFLAGS + CFLAGS=$x_cflags" "$x_includes + AC_CHECK_HEADER(X11/extensions/Xrandr.h, +[ + AC_CHECK_LIB(Xrandr, XRRSizes, +[ + AC_DEFINE(ECORE_XRANDR, 1, [Build support for Xrandr]) + Xrandr_cflags="" + Xrandr_libs="-lXrandr" + use_Xrandr="yes" +], [ + Xrandr_cflags="" + Xrandr_libs="" + use_Xrandr="no" +], [ + $x_libs +] + ) +], [ + Xrandr_cflags="" + Xrandr_libs="" + use_Xrandr="no" +], [ + #include +] + ) + CFLAGS=$PCFLAGS + + AC_SUBST(Xrandr_cflags) + AC_SUBST(Xrandr_libs) + + Xss_libs="" + Xss_cflags="" + use_Xss="no" + PCFLAGS=$CFLAGS + CFLAGS=$x_cflags" "$x_includes + AC_CHECK_HEADER(X11/extensions/scrnsaver.h, +[ + AC_CHECK_LIB(Xss, XScreenSaverSelectInput, +[ + AC_DEFINE(ECORE_XSS, 1, [Build support for Xss]) + Xss_cflags="" + Xss_libs="-lXss" + use_Xss="yes" +], [ + Xss_cflags="" + Xss_libs="" + use_Xss="no" +], [ + $x_libs +] + ) +], [ + Xss_cflags="" + Xss_libs="" + use_Xss="no" +], [ + #include +] + ) + CFLAGS=$PCFLAGS + + AC_SUBST(Xss_cflags) + AC_SUBST(Xss_libs) + + Xrender_libs="" + Xrender_cflags="" + use_Xrender="no" + PCFLAGS=$CFLAGS + CFLAGS=$x_cflags" "$x_includes + AC_CHECK_HEADER(X11/extensions/Xrender.h, +[ + AC_CHECK_LIB(Xrender, XRenderFindVisualFormat, +[ + AC_DEFINE(ECORE_XRENDER, 1, [Build support for Xrender]) + Xrender_cflags="" + Xrender_libs="-lXrender" + use_Xrender="yes" +], [ + Xrender_cflags="" + Xrender_libs="" + use_Xrender="no" +], [ + $x_libs +] + ) +], [ + Xrender_cflags="" + Xrender_libs="" + use_Xrender="no" +],
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore_x Modified Files: Makefile.am ecore_x_drawable.c Log Message: Wed Mar 14 21:57:38 2007Michael Jennings (mej) Reverting changes; kindly test patches BEFORE applying them. -- === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/Makefile.am,v retrieving revision 1.34 retrieving revision 1.35 diff -u -3 -r1.34 -r1.35 --- Makefile.am 15 Mar 2007 00:32:30 - 1.34 +++ Makefile.am 15 Mar 2007 07:57:43 - 1.35 @@ -2,14 +2,13 @@ INCLUDES = \ @Xcursor_cflags@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ @x_cflags@ \ -I$(top_srcdir)/src/lib/ecore \ -I$(top_srcdir)/src/lib/ecore_txt \ @@ -59,14 +58,13 @@ libecore_x_la_LIBADD = \ @Xcursor_libs@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ [EMAIL PROTECTED]@ \ @x_libs@ \ $(top_builddir)/src/lib/ecore/libecore.la \ $(top_builddir)/src/lib/ecore_txt/libecore_txt.la \ === RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_drawable.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ecore_x_drawable.c 15 Mar 2007 00:23:56 - 1.2 +++ ecore_x_drawable.c 15 Mar 2007 07:57:43 - 1.3 @@ -1,25 +1,13 @@ -/* - * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 - */ - #include "ecore_x_private.h" /** - * @defgroup Ecore_X_Drawable_Group X Drawable Functions - * - * Functions that operate on drawables. - */ - - -/** * Retrieves the geometry of the given drawable. * @param d The given drawable. * @param x Pointer to an integer into which the X position is to be stored. * @param y Pointer to an integer into which the Y position is to be stored. * @param w Pointer to an integer into which the width is to be stored. * @param h Pointer to an integer into which the height is to be stored. - * @ingroup Ecore_X_Drawable_Group */ EAPI void ecore_x_drawable_geometry_get(Ecore_X_Drawable d, int *x, int *y, int *w, int *h) @@ -47,7 +35,6 @@ * Retrieves the width of the border of the given drawable. * @param d The given drawable. * @return The border width of the given drawable. - * @ingroup Ecore_X_Drawable_Group */ EAPI int ecore_x_drawable_border_width_get(Ecore_X_Drawable d) @@ -67,7 +54,6 @@ * Retrieves the depth of the given drawable. * @param d The given drawable. * @return The depth of the given drawable. - * @ingroup Ecore_X_Drawable_Group */ EAPI int ecore_x_drawable_depth_get(Ecore_X_Drawable d) - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Sun Feb 25 14:07:14 2007Michael Jennings (mej) Sigh. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.19 retrieving revision 1.20 diff -u -3 -r1.19 -r1.20 --- ecore.spec.in 26 Feb 2007 01:05:07 - 1.19 +++ ecore.spec.in 26 Feb 2007 01:07:16 - 1.20 @@ -33,7 +33,7 @@ Summary: Enlightened Core X interface library Name: @PACKAGE@ Version: @VERSION@ -Release: 1.20070201 +Release: 0.%(date '+%Y%m%d') License: BSD Group: User Interface/X Source: %{name}-%{version}.tar.gz - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Sun Feb 25 14:05:05 2007Michael Jennings (mej) Require ecore-bin. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.18 retrieving revision 1.19 diff -u -3 -r1.18 -r1.19 --- ecore.spec.in 23 Feb 2007 01:16:02 - 1.18 +++ ecore.spec.in 26 Feb 2007 01:05:07 - 1.19 @@ -33,7 +33,7 @@ Summary: Enlightened Core X interface library Name: @PACKAGE@ Version: @VERSION@ -Release: 0.%(date '+%Y%m%d') +Release: 1.20070201 License: BSD Group: User Interface/X Source: %{name}-%{version}.tar.gz @@ -57,7 +57,7 @@ Group: Development/Libraries Requires: %{name} = %{version} Requires: curl-devel, openssl-devel, evas-devel, eet-devel -Requires: ecore-con, ecore-config, ecore-dbus, ecore-desktop, +Requires: ecore-bin, ecore-con, ecore-config, ecore-dbus, ecore-desktop, Requires: ecore-evas, ecore-file, ecore-ipc, ecore-job, ecore-txt Requires: ecore-x %{?with_lib_ecore_fb:ecore-fb} %{?with_lib_ecore_directfb:ecore-directfb} - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Thu Feb 22 14:16:00 2007Michael Jennings (mej) ecore needs curl now. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.17 retrieving revision 1.18 diff -u -3 -r1.17 -r1.18 --- ecore.spec.in 21 Feb 2007 10:56:17 - 1.17 +++ ecore.spec.in 23 Feb 2007 01:16:02 - 1.18 @@ -41,9 +41,9 @@ Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <[EMAIL PROTECTED]>} Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} -#BuildSuggests: xorg-x11-devel, XFree86-devel, curl-devel +#BuildSuggests: xorg-x11-devel, XFree86-devel BuildRequires: libjpeg-devel, openssl-devel %{?breq_lib_ecore_directfb} -BuildRequires: evas-devel, eet-devel +BuildRequires: curl-devel, evas-devel, eet-devel BuildRoot: %{_tmppath}/%{name}-%{version}-root %description @@ -56,7 +56,7 @@ Summary: Ecore headers and development libraries. Group: Development/Libraries Requires: %{name} = %{version} -Requires: openssl-devel, evas-devel, eet-devel +Requires: curl-devel, openssl-devel, evas-devel, eet-devel Requires: ecore-con, ecore-config, ecore-dbus, ecore-desktop, Requires: ecore-evas, ecore-file, ecore-ipc, ecore-job, ecore-txt Requires: ecore-x %{?with_lib_ecore_fb:ecore-fb} %{?with_lib_ecore_directfb:ecore-directfb} - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Tue Feb 20 23:56:15 2007Michael Jennings (mej) Add buildreq for conditional DirectFB support. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- ecore.spec.in 5 Dec 2006 21:50:39 - 1.16 +++ ecore.spec.in 21 Feb 2007 10:56:17 - 1.17 @@ -22,12 +22,13 @@ %bcond_without lib_ecore_fb %bcond_without lib_ecore_directfb - # This just keeps a missing doxygen from killing the build. %define _missing_doc_files_terminate_build 0 -%define ac_with_lib_ecore_fb --%{?with_lib_ecore_fb:en}%{!?with_lib_ecore_fb:dis}able-ecore-fb -%define ac_with_lib_ecore_directfb --%{?with_lib_ecore_directfb:en}%{!?with_lib_ecore_directfb:dis}able-ecore-dfb +%define breq_lib_ecore_directfb %{?with_lib_ecore_directfb:DirectFB} + +%define ac_with_lib_ecore_fb --%{?with_lib_ecore_fb:en}%{!?with_lib_ecore_fb:dis}able-ecore-fb +%define ac_with_lib_ecore_directfb --%{?with_lib_ecore_directfb:en}%{!?with_lib_ecore_directfb:dis}able-ecore-dfb Summary: Enlightened Core X interface library Name: @PACKAGE@ @@ -41,7 +42,7 @@ Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} #BuildSuggests: xorg-x11-devel, XFree86-devel, curl-devel -BuildRequires: libjpeg-devel, openssl-devel +BuildRequires: libjpeg-devel, openssl-devel %{?breq_lib_ecore_directfb} BuildRequires: evas-devel, eet-devel BuildRoot: %{_tmppath}/%{name}-%{version}-root - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Tue Dec 5 16:50:38 2006Michael Jennings (mej) Fix spec file and add directfb support. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- ecore.spec.in 28 Oct 2006 11:41:53 - 1.15 +++ ecore.spec.in 5 Dec 2006 21:50:39 - 1.16 @@ -16,16 +16,19 @@ %endif ## disabled features -%bcond_withlib_ecore_fb -## not setup yet... ## enabled features ##%bcond_without module_engine_software_x11 +%bcond_without lib_ecore_fb +%bcond_without lib_ecore_directfb # This just keeps a missing doxygen from killing the build. %define _missing_doc_files_terminate_build 0 +%define ac_with_lib_ecore_fb --%{?with_lib_ecore_fb:en}%{!?with_lib_ecore_fb:dis}able-ecore-fb +%define ac_with_lib_ecore_directfb --%{?with_lib_ecore_directfb:en}%{!?with_lib_ecore_directfb:dis}able-ecore-dfb + Summary: Enlightened Core X interface library Name: @PACKAGE@ Version: @VERSION@ @@ -53,9 +56,9 @@ Group: Development/Libraries Requires: %{name} = %{version} Requires: openssl-devel, evas-devel, eet-devel -Requires: ecore-con, ecore-config, ecore-dbus, ecore-desktop, ecore-evas, ecore-file, ecore-ipc, ecore-job, ecore-txt, ecore-x -##removed fb -##Requires: ecore-con, ecore-config, ecore-dbus, ecore-desktop, ecore-evas, ecore-fb, ecore-file, ecore-ipc, ecore-job, ecore-txt, ecore-x +Requires: ecore-con, ecore-config, ecore-dbus, ecore-desktop, +Requires: ecore-evas, ecore-file, ecore-ipc, ecore-job, ecore-txt +Requires: ecore-x %{?with_lib_ecore_fb:ecore-fb} %{?with_lib_ecore_directfb:ecore-directfb} %description devel Ecore development files @@ -100,6 +103,15 @@ %description desktop Ecore freedesktop.org .desktop, icon, menu parsing Library +%if %{with lib_ecore_directfb} +%package directfb +Summary: Ecore DirectFB system functions +Group: Development/Libraries +Requires: %{name} = %{version} +%description directfb +Ecore DirectFB system functions +%endif + %package evas Summary: Ecore Evas Wrapper Library Group: Development/Libraries @@ -115,9 +127,6 @@ Requires: %{name} = %{version} %description fb Ecore frame buffer system functions -%define ac_with_lib_ecore_fb --enable-ecore-fb -%else -%define ac_with_lib_ecore_fb --disable-ecore-fb %endif %package file @@ -160,8 +169,6 @@ %description x Ecore functions for dealing with the X Windows System - - %prep %setup -q -n %{name}-%{version} @@ -169,8 +176,7 @@ CFLAGS="-I/usr/kerberos/include -I/usr/X11R6/include/X11/extensions" LDFLAGS="-L/usr/kerberos/lib -L/usr/X11R6/%{_lib}" export CFLAGS LDFLAGS -%{configure} --prefix=%{_prefix} --disable-ecore-dfb \ - %{ac_with_lib_ecore_fb} +%{configure} --prefix=%{_prefix} %{?ac_with_lib_ecore_fb} %{?ac_with_lib_ecore_directfb} %{__make} %{?_smp_mflags} %{?mflags} %install @@ -220,6 +226,12 @@ %files desktop %defattr(-, root, root) %{_libdir}/libecore_desktop.so.* + +%if %{with lib_ecore_directfb} +%files directfb +%defattr(-, root, root) +%{_libdir}/libecore_directfb.so.* +%endif %files evas %defattr(-, root, root) - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Thu May 25 00:14:28 2006Michael Jennings (mej) Doh. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- ecore.spec.in 25 May 2006 03:07:29 - 1.9 +++ ecore.spec.in 25 May 2006 04:13:01 - 1.10 @@ -27,7 +27,7 @@ Group: Development/Libraries Requires: %{name} = %{version} Requires: openssl-devel, evas-devel, eet-devel -Requires: ecore_con, ecore_config, ecore_dbus, ecore_evas, ecore_fb, ecore_file, ecore_ipc, ecore_job, ecore_txt, ecore_x +Requires: ecore-con, ecore-config, ecore-dbus, ecore-evas, ecore-fb, ecore-file, ecore-ipc, ecore-job, ecore-txt, ecore-x %description devel Ecore development files --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the hosting industry. Fanatical Support. Click to learn more http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Wed May 24 23:08:52 2006Michael Jennings (mej) Spec file dependency fix: devel package needs ecore_* -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- ecore.spec.in 19 May 2006 19:51:18 - 1.8 +++ ecore.spec.in 25 May 2006 03:07:29 - 1.9 @@ -27,6 +27,7 @@ Group: Development/Libraries Requires: %{name} = %{version} Requires: openssl-devel, evas-devel, eet-devel +Requires: ecore_con, ecore_config, ecore_dbus, ecore_evas, ecore_fb, ecore_file, ecore_ipc, ecore_job, ecore_txt, ecore_x %description devel Ecore development files --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the hosting industry. Fanatical Support. Click to learn more http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Fri May 19 14:52:44 2006Michael Jennings (mej) Unbreaking several spec files. -- === RCS file: /cvs/e/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- ecore.spec.in 29 Apr 2006 03:29:54 - 1.7 +++ ecore.spec.in 19 May 2006 19:51:18 - 1.8 @@ -11,9 +11,9 @@ Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <[EMAIL PROTECTED]>} Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} -#BuildSuggests: xorg-x11-devel -#BuildRequires: libjpeg-devel XFree86-devel openssl-devel -#BuildRequires: evas-devel eet-devel +#BuildSuggests: xorg-x11-devel, XFree86-devel, curl-devel +BuildRequires: libjpeg-devel, openssl-devel +BuildRequires: evas-devel, eet-devel BuildRoot: %{_tmppath}/%{name}-%{version}-root %description @@ -26,8 +26,7 @@ Summary: Ecore headers and development libraries. Group: Development/Libraries Requires: %{name} = %{version} -#Requires: libjpeg-devel XFree86-devel openssl-devel -#Requires: evas-devel eet-devel +Requires: openssl-devel, evas-devel, eet-devel %description devel Ecore development files --- 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
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: configure.in Log Message: Sun Oct 23 12:17:18 2005Michael Jennings (mej) Fixed --disable-ecore-con -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/configure.in,v retrieving revision 1.118 retrieving revision 1.119 diff -u -3 -r1.118 -r1.119 --- configure.in21 Oct 2005 00:57:37 - 1.118 +++ configure.in23 Oct 2005 16:09:22 - 1.119 @@ -772,7 +772,7 @@ AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) - want_ecore_con="yes" + want_ecore_con="no" fi ], [ AC_MSG_RESULT(yes) --- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today * Register for a JBoss Training Course Free Certification Exam for All Training Attendees Through End of 2005 Visit http://www.jboss.com/services/certification for more information ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec.in Log Message: Thu Sep 8 17:12:14 2005Michael Jennings (mej) Build fixes. -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ecore.spec.in 8 Jun 2005 20:51:06 - 1.4 +++ ecore.spec.in 8 Sep 2005 21:04:21 - 1.5 @@ -3,7 +3,7 @@ Summary: Enlightened Core X interface library Name: @PACKAGE@ Version: @VERSION@ -Release: 1 +Release: 0.20050908 License: BSD Group: User Interface/X Source: %{name}-%{version}.tar.gz --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ChangeLog ecore.spec.in Log Message: Wed Jun 8 16:56:30 2005Michael Jennings (mej) Fix spec file. -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ChangeLog 23 Sep 2003 08:09:19 - 1.3 +++ ChangeLog 8 Jun 2005 20:51:06 - 1.4 @@ -0,0 +1,4 @@ +Wed Jun 8 16:56:30 2005Michael Jennings (mej) + +Fix spec file. +-- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ecore.spec.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ecore.spec.in 8 Apr 2005 15:55:20 - 1.3 +++ ecore.spec.in 8 Jun 2005 20:51:06 - 1.4 @@ -57,19 +57,16 @@ %files %defattr(-, root, root) %doc AUTHORS COPYING* README* -%{_libdir}/libecore*.so.* -%{_libdir}/libecore*.la -%{_libdir}/ecore_config_ipc_*.so -%{_libdir}/ecore_config_ipc_*.a -%{_libdir}/ecore_config_ipc_*.la +%{_libdir}/*.so.* +%{_libdir}/*.la %{_bindir}/ecore_* %{_datadir}/ecore %files devel %defattr(-, root, root) %doc doc/html -%{_libdir}/libecore*.so -%{_libdir}/libecore*.a +%{_libdir}/*.so +%{_libdir}/*.a %{_bindir}/ecore-config %{_libdir}/pkgconfig/* %{_datadir}/aclocal/* --- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge track? If you want to score the big prize, get to know the little guy. Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20 ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: .cvsignore Log Message: Sun Jan 23 22:30:28 2005Michael Jennings (mej) Sssh! -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- .cvsignore 23 Oct 2004 14:27:09 - 1.6 +++ .cvsignore 24 Jan 2005 02:26:30 - 1.7 @@ -23,3 +23,5 @@ stamp-h.in autom4te.cache stamp-h1 +doc +*.tar.gz --- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore/doc Added Files: .cvsignore Log Message: Sun Jan 23 22:30:28 2005Michael Jennings (mej) Sssh! -- --- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec Log Message: Tue Jan 18 20:03:02 2005Michael Jennings (mej) Spec file fix for x86_64 from Denis Pilon <[EMAIL PROTECTED]>. -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ecore.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- ecore.spec 5 Jan 2005 05:05:26 - 1.16 +++ ecore.spec 19 Jan 2005 00:04:10 - 1.17 @@ -36,8 +36,8 @@ %setup -q -n %{name}-%{version}_pre7 %build -CFLAGS="-I/usr/kerberos/include" -LDFLAGS="-L/usr/kerberos/lib" +CFLAGS="-I/usr/kerberos/include -I/usr/X11R6/include/X11/extensions" +LDFLAGS="-L/usr/kerberos/lib -L/usr/X11R6/%{_lib}" export CFLAGS LDFLAGS %{configure} --prefix=%{_prefix} %{__make} %{?_smp_mflags} %{?mflags} --- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: configure.in ecore.spec Log Message: Wed Jan 5 00:03:30 2005Michael Jennings (mej) Assorted spec file cleanups. Do not override --bindir and --libdir (breaks x86_64). Some of these are still untested, so please be patient. -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/configure.in,v retrieving revision 1.68 retrieving revision 1.69 diff -u -3 -r1.68 -r1.69 --- configure.in4 Jan 2005 14:22:04 - 1.68 +++ configure.in5 Jan 2005 05:05:26 - 1.69 @@ -17,31 +17,35 @@ AM_ENABLE_SHARED AM_PROG_LIBTOOL -if test "x${exec_prefix}" = "xNONE"; then - if test "x${prefix}" = "xNONE"; then -bindir="${ac_default_prefix}/bin"; - else -bindir="${prefix}/bin"; - fi -else - if test "x${prefix}" = "xNONE"; then -bindir="${ac_default_prefix}/bin"; +if test "x${bindir}" = 'x${exec_prefix}/bin'; then + if test "x${exec_prefix}" = "xNONE"; then +if test "x${prefix}" = "xNONE"; then + bindir="${ac_default_prefix}/bin"; +else + bindir="${prefix}/bin"; +fi else -bindir="${prefix}/bin"; +if test "x${prefix}" = "xNONE"; then + bindir="${ac_default_prefix}/bin"; +else + bindir="${prefix}/bin"; +fi fi fi -if test "x${exec_prefix}" = "xNONE"; then - if test "x${prefix}" = "xNONE"; then -libdir="${ac_default_prefix}/lib"; - else -libdir="${prefix}/lib"; - fi -else - if test "x${prefix}" = "xNONE"; then -libdir="${ac_default_prefix}/lib"; +if test "x${libdir}" = 'x${exec_prefix}/lib'; then + if test "x${exec_prefix}" = "xNONE"; then +if test "x${prefix}" = "xNONE"; then + libdir="${ac_default_prefix}/lib"; +else + libdir="${prefix}/lib"; +fi else -libdir="${prefix}/lib"; +if test "x${prefix}" = "xNONE"; then + libdir="${ac_default_prefix}/lib"; +else + libdir="${prefix}/lib"; +fi fi fi === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ecore.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- ecore.spec 25 Jul 2004 21:50:37 - 1.15 +++ ecore.spec 5 Jan 2005 05:05:26 - 1.16 @@ -4,12 +4,16 @@ Name: ecore Version: 1.0.0 Release: 0.pre7.%(date '+%Y%m%d') -Copyright: BSD +License: BSD Group: User Interface/X Source: ftp://ftp.enlightenment.org/enlightenment/%{name}-%{version}_pre7.tar.gz URL: http://www.enlightenment.org/efm.html -Packager: Michael Jennings <[EMAIL PROTECTED]> -#BuildSuggests: openssl-devel evas-devel xorg-x11-devel +Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <[EMAIL PROTECTED]>} +Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} +Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} +#BuildSuggests: xorg-x11-devel +BuildRequires: libjpeg-devel XFree86-devel openssl-devel +BuildRequires: evas-devel edb-devel eet-devel BuildRoot: %{_tmppath}/%{name}-%{version}-root %description @@ -22,6 +26,8 @@ Summary: Ecore headers and development libraries. Group: Development/Libraries Requires: %{name} = %{version} +Requires: libjpeg-devel XFree86-devel openssl-devel +Requires: evas-devel edb-devel eet-devel %description devel Ecore development files @@ -30,6 +36,9 @@ %setup -q -n %{name}-%{version}_pre7 %build +CFLAGS="-I/usr/kerberos/include" +LDFLAGS="-L/usr/kerberos/lib" +export CFLAGS LDFLAGS %{configure} --prefix=%{_prefix} %{__make} %{?_smp_mflags} %{?mflags} --- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt ___ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: ecore.spec Log Message: Sun Jul 25 17:45:53 2004Michael Jennings (mej) Fixed up lots of spec files here. I haven't been able to test the emotion spec file, but hopefully I didn't break anything too terrible. :-) Also fixed an etox problem with the conditional test build. -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ecore.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- ecore.spec 23 Jul 2004 00:01:02 - 1.14 +++ ecore.spec 25 Jul 2004 21:50:37 - 1.15 @@ -1,14 +1,15 @@ +%define _missing_doc_files_terminate_build 0 + Summary: Enlightened Core X interface library Name: ecore Version: 1.0.0 -Release: 0.pre7 +Release: 0.pre7.%(date '+%Y%m%d') Copyright: BSD Group: User Interface/X Source: ftp://ftp.enlightenment.org/enlightenment/%{name}-%{version}_pre7.tar.gz URL: http://www.enlightenment.org/efm.html Packager: Michael Jennings <[EMAIL PROTECTED]> -Vendor: The Enlightenment Development Team <[EMAIL PROTECTED]> -#BuildSuggests: openssl-devel +#BuildSuggests: openssl-devel evas-devel xorg-x11-devel BuildRoot: %{_tmppath}/%{name}-%{version}-root %description @@ -37,10 +38,10 @@ test -x `which doxygen` && sh gendoc || : %post -/sbin/ldconfig +/sbin/ldconfig || : %postun -/sbin/ldconfig +/sbin/ldconfig || : %clean test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT --- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click ___ enlightenment-cvs mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs
E CVS: libs/ecore mej
Enlightenment CVS committal Author : mej Project : e17 Module : libs/ecore Dir : e17/libs/ecore Modified Files: Makefile.am ecore.spec Log Message: Thu Jul 8 11:07:39 2004Michael Jennings (mej) Still cleaning. Tragically, I had to remove ecore_docs.tar.gz from EXTRA_DIST because, at least with automake 1.4, dist-hook is not run until the end of the "distdir" rule, and ecore_docs.tar.gz being missing causes failure prior to the running of dist-hook. :-( -- === RCS file: /cvsroot/enlightenment/e17/libs/ecore/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -u -3 -r1.13 -r1.14 --- Makefile.am 12 May 2004 18:57:56 - 1.13 +++ Makefile.am 8 Jul 2004 15:09:08 - 1.14 @@ -16,7 +16,7 @@ bin_SCRIPTS = ecore-config EXTRA_DIST = README AUTHORS COPYING ecore.m4 ecore.spec ecore.c.in gendoc \ -Doxyfile ecore_docs.tar.gz make_cross_compile_arm.sh +Doxyfile make_cross_compile_arm.sh m4datadir = $(datadir)/aclocal m4data_DATA = ecore.m4 === RCS file: /cvsroot/enlightenment/e17/libs/ecore/ecore.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- ecore.spec 5 Jul 2004 00:35:19 - 1.12 +++ ecore.spec 8 Jul 2004 15:09:08 - 1.13 @@ -1,49 +1,40 @@ -# this is NOT relocatable, unless you alter the patch! -%definenameecore -%definever 1.0.0_pre7 -%definerel 1 -%define prefix /usr - Summary: Enlightened Core X interface library -Name: %{name} -Version: %{ver} -Release: %{rel} +Name: ecore +Version: 1.0.0 +Release: 0.pre7 Copyright: BSD Group: User Interface/X +Source: ftp://ftp.enlightenment.org/enlightenment/%{name}-%{version}_pre7.tar.gz URL: http://www.enlightenment.org/efm.html -Packager: The Rasterman <[EMAIL PROTECTED]> Term <[EMAIL PROTECTED]> +Packager: Michael Jennings <[EMAIL PROTECTED]> Vendor: The Enlightenment Development Team <[EMAIL PROTECTED]> -Source: ftp://ftp.enlightenment.org/enlightenment/%{name}-%{ver}.tar.gz -BuildRoot: /var/tmp/%{name}-root +#BuildSuggests: openssl-devel +BuildRoot: %{_tmppath}/%{name}-%{version}-root %description -Ecore is brub. +Ecore is the event/X abstraction layer that makes doing selections, +Xdnd, general X stuff, event loops, timeouts and idle handlers fast, +optimized, and convenient. It's a separate library so anyone can make +use of the work put into Ecore to make this job easy for applications. %package devel Summary: Ecore headers and development libraries. Group: Development/Libraries -Requires: %{name} = %{ver} +Requires: %{name} = %{version} %description devel Ecore development files %prep -%setup -q +%setup -q -n %{name}-%{version}_pre7 %build -./configure \ ---prefix=%{prefix} \ ---enable-ecore-x \ ---enable-ecore-evas \ ---enable-ecore-job \ ---enable-ecore-con \ ---enable-ecore-config \ ---enable-ecore-ipc - -make +%{configure} --prefix=%{_prefix} +%{__make} %{?_smp_mflags} %{?mflags} %install -make DESTDIR=$RPM_BUILD_ROOT install +%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install +test -x `which doxygen` && sh gendoc || : %post /sbin/ldconfig @@ -52,27 +43,25 @@ /sbin/ldconfig %clean -rm -rf $RPM_BUILD_ROOT +test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root) -%attr(755,root,root) %{prefix}/lib/libecore*.so.* -%{prefix}/lib/libecore*.la -%attr(755,root,root) %{prefix}/bin/ecore_* -%{prefix}/share/ecore +%defattr(-, root, root) +%doc AUTHORS COPYING* README* +%{_libdir}/libecore*.so.* +%{_libdir}/libecore*.la +%{_bindir}/ecore_* +%{_datadir}/ecore %files devel -%defattr(-,root,root) -%attr(755,root,root) %{prefix}/lib/libecore*.so -%attr(755,root,root) %{prefix}/lib/libecore*.a -%attr(755,root,root) %{prefix}/lib/libecore*.la -%attr(755,root,root) %{prefix}/lib/ecore_config_ipc_*.so -%attr(755,root,root) %{prefix}/lib/ecore_config_ipc_*.a -%attr(755,root,root) %{prefix}/lib/ecore_config_ipc_*.la -%attr(755,root,root) %{prefix}/bin/ecore-config -%{prefix}/share/aclocal/ecore.m4 -%{prefix}/include/Ecore*.h -%doc AUTHORS -%doc COPYING -%doc README -%doc ecore_docs.tar.gz +%defattr(-, root, root) +%doc doc/html +%{_libdir}/libecore*.so +%{_libdir}/libecore*.a +%{_libdir}/libecore*.la +%{_libdir}/ecore_config_ipc_*.so +%{_libdir}/ecore_config_ipc_*.a +%{_libdir}/ecore_config_ipc_*.la +%{_bindir}/ecore-config +%{_datadir}/aclocal/ecore.m4 +%{_includedir}/Ecore*.h --- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com ___ enl