Add Vala language binding.
This commit is contained in:
		@ -46,7 +46,6 @@ libeek_la_SOURCES = \
 | 
			
		||||
	eek-special-keysym-labels.h \
 | 
			
		||||
	eek-unicode-keysym-labels.h \
 | 
			
		||||
	eek-keyname-keysym-labels.h
 | 
			
		||||
 | 
			
		||||
libeek_la_CFLAGS = $(GOBJECT2_CFLAGS)
 | 
			
		||||
libeek_la_LIBADD = $(GOBJECT2_LIBS)
 | 
			
		||||
 | 
			
		||||
@ -104,9 +103,11 @@ eek_HEADERS = \
 | 
			
		||||
	$(top_srcdir)/eek/eek-layout.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-keysym.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-types.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-gtk-keyboard.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-xkb-layout.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-xkl-layout.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-gtk.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-xkb.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-xkl.h
 | 
			
		||||
 | 
			
		||||
@ -115,6 +116,7 @@ eek_HEADERS += \
 | 
			
		||||
	$(top_srcdir)/eek/eek-clutter-keyboard.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-clutter-section.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-clutter-key.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-clutter-drawing-context.h \
 | 
			
		||||
	$(top_srcdir)/eek/eek-clutter.h
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
@ -128,11 +130,12 @@ eek-keyname-keysym-labels.h: keyname-keysym-labels.txt
 | 
			
		||||
	$(PYTHON) ./gen-keysym-labels.py keyname_keysym_labels < $< > $@
 | 
			
		||||
 | 
			
		||||
pkgconfigdir = $(libdir)/pkgconfig
 | 
			
		||||
pkgconfig_DATA = libeek.pc \
 | 
			
		||||
	libeek-clutter.pc \
 | 
			
		||||
	libeek-gtk.pc \
 | 
			
		||||
	libeek-xkb.pc \
 | 
			
		||||
	libeek-xkl.pc
 | 
			
		||||
pkgconfig_DATA = \
 | 
			
		||||
	eek-$(EEK_API_VERSION).pc \
 | 
			
		||||
	eek-clutter-$(EEK_API_VERSION).pc \
 | 
			
		||||
	eek-gtk-$(EEK_API_VERSION).pc \
 | 
			
		||||
	eek-xkb-$(EEK_API_VERSION).pc \
 | 
			
		||||
	eek-xkl-$(EEK_API_VERSION).pc
 | 
			
		||||
 | 
			
		||||
DISTCLEANFILES = \
 | 
			
		||||
	eek-special-keysym-labels.h \
 | 
			
		||||
@ -156,7 +159,8 @@ INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
 | 
			
		||||
if HAVE_INTROSPECTION
 | 
			
		||||
 | 
			
		||||
Eek-0.1.gir: libeek.la
 | 
			
		||||
Eek_0_1_gir_INCLUDES = GObject-2.0
 | 
			
		||||
Eek_0_1_gir_SCANNERFLAGS = --strip-prefix=Eek --pkg=glib-2.0
 | 
			
		||||
Eek_0_1_gir_INCLUDES = GLib-2.0 GObject-2.0
 | 
			
		||||
Eek_0_1_gir_CFLAGS = $(libeek_la_CFLAGS)
 | 
			
		||||
Eek_0_1_gir_LIBS = libeek.la
 | 
			
		||||
Eek_0_1_gir_FILES = $(libeek_la_SOURCES)
 | 
			
		||||
@ -199,4 +203,4 @@ typelibdir = $(libdir)/girepository-1.0
 | 
			
		||||
typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
 | 
			
		||||
 | 
			
		||||
CLEANFILES += $(gir_DATA) $(typelib_DATA)
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
@ -25,6 +25,6 @@ Name: EEK
 | 
			
		||||
Description: A Library to Create Keyboard-like UI
 | 
			
		||||
URL: http://github.com/ueno/eekboard
 | 
			
		||||
Version: @VERSION@
 | 
			
		||||
Requires: gobject-2.0
 | 
			
		||||
Libs: -L${libdir} -leek
 | 
			
		||||
Libs.private: @GOBJECT2_LIBS@
 | 
			
		||||
Cflags: -I${includedir}/eek-@EEK_API_VERSION@
 | 
			
		||||
@ -25,6 +25,6 @@ Name: libeek-clutter
 | 
			
		||||
Description: A Library to Create Keyboard-like UI (Clutter Support)
 | 
			
		||||
URL: http://github.com/ueno/eekboard
 | 
			
		||||
Version: @VERSION@
 | 
			
		||||
Libs: -L${libdir} -leek -leek-clutter
 | 
			
		||||
Libs.private: @GOBJECT2_LIBS@ @CLUTTER_LIBS@
 | 
			
		||||
Requires: eek-@EEK_API_VERSION@ clutter-1.0
 | 
			
		||||
Libs: -L${libdir} -leek-clutter
 | 
			
		||||
Cflags: -I${includedir}/eek-@EEK_API_VERSION@
 | 
			
		||||
@ -25,6 +25,6 @@ Name: libeek-gtk
 | 
			
		||||
Description: A Library to Create Keyboard-like UI (GTK Support)
 | 
			
		||||
URL: http://github.com/ueno/eekboard
 | 
			
		||||
Version: @VERSION@
 | 
			
		||||
Libs: -L${libdir} -leek -leek-gtk
 | 
			
		||||
Libs.private: @GOBJECT2_LIBS@ @GTK2_LIBS@
 | 
			
		||||
Requires: eek-@EEK_API_VERSION@ gtk+-2.0
 | 
			
		||||
Libs: -L${libdir} -leek-gtk
 | 
			
		||||
Cflags: -I${includedir}/eek-@EEK_API_VERSION@
 | 
			
		||||
@ -25,6 +25,6 @@ Name: libeek-xkb
 | 
			
		||||
Description: A Library to Create Keyboard-like UI (XKB Support)
 | 
			
		||||
URL: http://github.com/ueno/eekboard
 | 
			
		||||
Version: @VERSION@
 | 
			
		||||
Libs: -L${libdir} -leek -leek-xkb
 | 
			
		||||
Libs.private: @GTK2_LIBS@ @XKB_LIBS@
 | 
			
		||||
Requires: eek-@EEK_API_VERSION@ gtk+-x11-2.0
 | 
			
		||||
Libs: -L${libdir} -leek-xkb
 | 
			
		||||
Cflags: -I${includedir}/eek-@EEK_API_VERSION@
 | 
			
		||||
@ -25,6 +25,6 @@ Name: libeek-xkl
 | 
			
		||||
Description: A Library to Create Keyboard-like UI (Libxklavier Support)
 | 
			
		||||
URL: http://github.com/ueno/eekboard
 | 
			
		||||
Version: @VERSION@
 | 
			
		||||
Requires: eek-xkb-@EEK_API_VERSION@ libxklavier
 | 
			
		||||
Libs: -L${libdir} -leek-xkl
 | 
			
		||||
Libs.private: @GTK2_LIBS@ @LIBXKLAVIER_LIBS@
 | 
			
		||||
Cflags: -I${includedir}/eek-@EEK_API_VERSION@
 | 
			
		||||
		Reference in New Issue
	
	Block a user