4753416d1d
All the EFL components are released simultaneously, with an identical version number, just like all Qt5 components for example. So it makes sense to have a single EFL_VERSION variable in package/efl/efl.mk that is used by all the packages in package/efl/*/*.mk. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32 lines
1008 B
Makefile
32 lines
1008 B
Makefile
################################################################################
|
|
#
|
|
# libevas-generic-loaders
|
|
#
|
|
################################################################################
|
|
|
|
LIBEVAS_GENERIC_LOADERS_VERSION = $(EFL_VERSION)
|
|
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))
|