Changeset 4661


Ignore:
Timestamp:
09/22/08 08:54:38 (5 years ago)
Author:
marek
Message:

disabled edje binding - can't work without other libs being built first
added linker information
2 functions that are not implemented yet overridden

known issues:
evas crashes on "import evas"

Location:
trunk/src/host/pye17
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/host/pye17/Makefile

    r4659 r4661  
    2020 
    2121 
    22 e_bindings = evas edje 
     22e_bindings = evas 
     23 
     24### ToDo ### 
     25# ecore 
     26# eet ? embryo ? 
     27# edje 
     28 
    2329 
    2430e_bindings_mk = $(e_bindings:=.mk) 
  • trunk/src/host/pye17/evas/Makefile

    r4660 r4661  
    22EVAS_PATH=$(E_PATH)/evas/src/lib 
    33 
    4 CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include/ -I/usr/include/python2.5 -I/usr/include/pygtk-2.0/ -I$(EVAS_PATH) -I. 
     4CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include/ -I/usr/include/python2.5 -I/usr/include/pygtk-2.0/ -I$(EVAS_PATH) -I. -g 
     5LDFLAGS = -levas -L$(EVAS_PATH)/.libs/libevas.so -lglib-2.0 
    56 
    67.PHONY: all clean evas.so 
  • trunk/src/host/pye17/evas/evas.override

    r4658 r4661  
    55#include <Evas.h> 
    66%% 
    7 modulename evas                      
     7modulename evas 
    88%% 
    9 import gtk.Plug as PyGtkPlug_Type        
     9import gtk.Plug as PyGtkPlug_Type 
    1010%% 
    1111ignore-glob 
    12   *_get_type                             
     12  *_get_type 
    1313%% 
     14override evas_stringshare_init kwargs 
     15static PyObject * 
     16_wrap_evas_stringshare_init(PyObject *self) 
     17{ 
     18        /* Evas_Data.h - not implemented yet */ 
     19} 
     20%% 
     21override evas_stringshare_shutdown kwargs 
     22static PyObject * 
     23_wrap_evas_stringshare_shutdown(PyObject *self) 
     24{ 
     25        /* Evas_Data.h - not implemented yet */ 
     26} 
Note: See TracChangeset for help on using the changeset viewer.