2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-07-23 10:59:10 +02:00
|
|
|
#
|
|
|
|
# fbv
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-01-20 10:45:47 +01:00
|
|
|
|
|
|
|
FBV_VERSION = 1.0b
|
|
|
|
FBV_SITE = http://s-tech.elsat.net.pl/fbv
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2012-12-07 01:12:36 +01:00
|
|
|
FBV_LICENSE = GPLv2
|
|
|
|
FBV_LICENSE_FILES = COPYING
|
|
|
|
|
2012-06-15 00:10:18 +02:00
|
|
|
### image format dependencies and configure options
|
|
|
|
FBV_DEPENDENCIES = # empty
|
|
|
|
FBV_CONFIGURE_OPTS = # empty
|
|
|
|
ifeq ($(BR2_PACKAGE_FBV_PNG),y)
|
|
|
|
FBV_DEPENDENCIES += libpng
|
2014-08-10 17:12:08 +02:00
|
|
|
|
|
|
|
# libpng in turn depends on other libraries
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
2014-08-12 09:08:53 +02:00
|
|
|
FBV_CONFIGURE_OPTS += "--libs=$(shell $(PKG_CONFIG_HOST_BINARY) --libs libpng --static)"
|
2014-08-10 17:12:08 +02:00
|
|
|
endif
|
|
|
|
|
2012-06-15 00:10:18 +02:00
|
|
|
else
|
|
|
|
FBV_CONFIGURE_OPTS += --without-libpng
|
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FBV_JPEG),y)
|
|
|
|
FBV_DEPENDENCIES += jpeg
|
|
|
|
else
|
|
|
|
FBV_CONFIGURE_OPTS += --without-libjpeg
|
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FBV_GIF),y)
|
|
|
|
FBV_DEPENDENCIES += libungif
|
|
|
|
else
|
|
|
|
FBV_CONFIGURE_OPTS += --without-libungif
|
|
|
|
endif
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2014-08-10 17:03:41 +02:00
|
|
|
#fbv doesn't support cross-compilation
|
2010-06-16 13:47:05 +02:00
|
|
|
define FBV_CONFIGURE_CMDS
|
2007-09-25 14:34:09 +02:00
|
|
|
(cd $(FBV_DIR); rm -f config.cache; \
|
2007-08-01 10:37:14 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2007-07-23 14:22:37 +02:00
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
2007-07-23 10:59:10 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2012-06-15 00:10:18 +02:00
|
|
|
$(FBV_CONFIGURE_OPTS) \
|
2007-08-21 21:20:18 +02:00
|
|
|
)
|
2010-06-16 13:47:05 +02:00
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
define FBV_BUILD_CMDS
|
|
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2010-06-16 13:47:05 +02:00
|
|
|
define FBV_INSTALL_TARGET_CMDS
|
2014-06-01 14:38:01 +02:00
|
|
|
$(INSTALL) -D $(@D)/fbv $(TARGET_DIR)/usr/bin/fbv
|
2010-06-16 13:47:05 +02:00
|
|
|
endef
|
2007-07-23 10:59:10 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|