Commit bbceb3c9 authored by Will Newton's avatar Will Newton Committed by Peter Korsgaard
Browse files

libedje: Add new package



[Peter: add upstream URL, remove redundant _INSTALL_TARGET]
Signed-off-by: default avatarWill Newton <will.newton@imgtec.com>
Reviewed-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 20c79086
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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

+21 −0
Original line number Diff line number Diff line
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.
+24 −0
Original line number Diff line number Diff line
#############################################################
#
# 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))