libedje: Add new package

[Peter: add upstream URL, remove redundant _INSTALL_TARGET]
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>
This commit is contained in:
Will Newton 2012-01-26 17:42:42 +00:00 committed by Peter Korsgaard
parent 20c79086f1
commit bbceb3c9ea
3 changed files with 46 additions and 0 deletions

View File

@ -13,6 +13,7 @@ source "package/efl/libecore/Config.in"
source "package/efl/libeet/Config.in"
source "package/efl/libevas/Config.in"
source "package/efl/libembryo/Config.in"
source "package/efl/libedje/Config.in"
endif # BR2_PACKAGE_EFL

View File

@ -0,0 +1,21 @@
config BR2_PACKAGE_LIBEDJE
bool "libedje"
select BR2_PACKAGE_LIBEINA
select BR2_PACKAGE_LIBEET
select BR2_PACKAGE_LIBECORE
select BR2_PACKAGE_LIBECORE_EVAS
select BR2_PACKAGE_LIBEMBRYO
select BR2_PACKAGE_LIBEVAS
select BR2_PACKAGE_LUA
help
A graphical layout and animation library for animated
resizable, compressed and scalable themes.
http://trac.enlightenment.org/e/wiki/Edje
config BR2_PACKAGE_LIBEDJE_CC
bool "build edje_cc"
depends on BR2_PACKAGE_LIBEDJE
help
Build and install the Edje compiler for the target. Normally this
is not required.

View File

@ -0,0 +1,24 @@
#############################################################
#
# libedje
#
#############################################################
LIBEDJE_VERSION = 1.1.0
LIBEDJE_SOURCE = edje-$(LIBEDJE_VERSION).tar.bz2
LIBEDJE_SITE = http://download.enlightenment.org/releases/
LIBEDJE_INSTALL_STAGING = YES
LIBEDJE_DEPENDENCIES = host-pkg-config lua libeina libeet libecore libevas \
libembryo
ifeq ($(BR2_PACKAGE_LIBEDJE_CC),y)
LIBEDJE_CONF_OPT += --enable-edje-cc
else
LIBEDJE_CONF_OPT += --disable-edje-cc
endif
HOST_LIBEDJE_CONF_OPT = --enable-edje-cc
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))