diff options
author | Will Newton <will.newton@gmail.com> | 2012-01-26 17:42:36 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-29 19:47:42 +0100 |
commit | dc6bf5b173ad439f77c3e5737646d5f5d8420ba6 (patch) | |
tree | 78240f9ab1b961d626ec240209bb7934ceccfc2b /package/efl/libecore/Config.in | |
parent | bf7d98d8410955b192f99dc412503c89fa14a57e (diff) | |
download | buildroot-novena-dc6bf5b173ad439f77c3e5737646d5f5d8420ba6.tar.gz buildroot-novena-dc6bf5b173ad439f77c3e5737646d5f5d8420ba6.zip |
libecore: Add new package
[Peter: Config.in fixes, dependencies, build makekeys for host]
Signed-off-by: Will Newton <will.newton@imgtec.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/efl/libecore/Config.in')
-rw-r--r-- | package/efl/libecore/Config.in | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/package/efl/libecore/Config.in b/package/efl/libecore/Config.in new file mode 100644 index 000000000..6c887f573 --- /dev/null +++ b/package/efl/libecore/Config.in @@ -0,0 +1,42 @@ +config BR2_PACKAGE_LIBECORE + bool "libecore" + select BR2_PACKAGE_LIBEINA + help + 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. + + http://trac.enlightenment.org/e/wiki/Ecore + +if BR2_PACKAGE_LIBECORE + +config BR2_PACKAGE_LIBECORE_DIRECTFB + bool "libecore DirectFB support" + depends on BR2_PACKAGE_DIRECTFB + default y + +config BR2_PACKAGE_LIBECORE_FB + bool "libecore framebuffer support" + +config BR2_PACKAGE_LIBECORE_SDL + bool "libecore SDL support" + select BR2_PACKAGE_SDL + +config BR2_PACKAGE_LIBECORE_X + bool "libecore X support" + depends on BR2_PACKAGE_XORG7 + select BR2_PACKAGE_XLIB_LIBX11 + select BR2_PACKAGE_XLIB_LIBXEXT + +config BR2_PACKAGE_LIBECORE_X_XCB + bool "libecore XCB support" + depends on BR2_PACKAGE_XORG7 + select BR2_PACKAGE_LIBXCB + select BR2_PACKAGE_XLIB_LIBX11 + select BR2_PACKAGE_XCB_UTIL + +config BR2_PACKAGE_LIBECORE_EVAS + bool "libecore Evas support" + select BR2_PACKAGE_LIBEVAS + +endif # BR2_PACKAGE_LIBECORE |