Commit d18ac532 authored by Thomas Petazzoni's avatar Thomas Petazzoni
Browse files

efl/libevas-generic-loaders: new package

parent 99f711e9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ source "package/efl/libeet/Config.in"
source "package/efl/libefreet/Config.in"
source "package/efl/libeio/Config.in"
source "package/efl/libevas/Config.in"
source "package/efl/libevas-generic-loaders/Config.in"
source "package/efl/libembryo/Config.in"
source "package/efl/libedje/Config.in"
source "package/efl/libethumb/Config.in"
+21 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
	bool "libevas generic loaders"
	select BR2_PACKAGE_LIBEINA
	help
	  These are additional "generic" loaders for Evas that are
	  stand-alone executables that evas may run from its generic
	  loader module.

	  http://trac.enlightenment.org/e/wiki/Evas_Generic_Loaders

if BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS

config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
	bool "SVG loader"
	select BR2_PACKAGE_LIBRSVG
	select BR2_PACKAGE_CAIRO
	depends on BR2_USE_WCHAR # librsvg -> glib2
	help
	  This option enables the Evas generic SVG loader

endif
+31 −0
Original line number Diff line number Diff line
#############################################################
#
# libevas-generic-loaders
#
#############################################################

LIBEVAS_GENERIC_LOADERS_VERSION = 1.7.4
LIBEVAS_GENERIC_LOADERS_SOURCE = evas_generic_loaders-$(LIBEVAS_GENERIC_LOADERS_VERSION).tar.bz2
LIBEVAS_GENERIC_LOADERS_SITE = http://download.enlightenment.org/releases/
LIBEVAS_GENERIC_LOADERS_LICENSE = GPLv2
LIBEVAS_GENERIC_LOADERS_LICENSE_FILES = COPYING

LIBEVAS_GENERIC_LOADERS_INSTALL_STAGING = YES

LIBEVAS_GENERIC_LOADERS_DEPENDENCIES = libeina

# For now, we only support the SVG loader
LIBEVAS_GENERIC_LOADERS_CONF_OPT += \
	--disable-poppler \
	--disable-spectre \
	--disable-libraw \
	--disable-gstreamer

ifeq ($(BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG),y)
LIBEVAS_GENERIC_LOADERS_DEPENDENCIES += librsvg cairo
LIBEVAS_GENERIC_LOADERS_CONF_OPT += --enable-svg
else
LIBEVAS_GENERIC_LOADERS_CONF_OPT += --disable-svg
endif

$(eval $(autotools-package))