2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-05-15 18:36:06 +02:00
|
|
|
#
|
|
|
|
# fbterm
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-05-15 18:36:06 +02:00
|
|
|
|
|
|
|
FBTERM_VERSION = 1.7.0
|
2016-09-08 14:43:43 +02:00
|
|
|
FBTERM_SITE = https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/fbterm
|
2017-03-30 15:43:32 +02:00
|
|
|
FBTERM_LICENSE = GPL-2.0+
|
2013-06-28 15:41:07 +02:00
|
|
|
FBTERM_LICENSE_FILES = COPYING
|
2012-05-15 18:36:06 +02:00
|
|
|
FBTERM_DEPENDENCIES = fontconfig liberation
|
|
|
|
|
2015-05-11 22:26:39 +02:00
|
|
|
ifeq ($(BR2_STATIC_LIBS)$(BR2_TOOLCHAIN_HAS_THREADS),yy)
|
|
|
|
# fontconfig uses pthreads if available, but fbterm forgets to link
|
|
|
|
# with it breaking static builds
|
|
|
|
FBTERM_CONF_ENV += LIBS='-lpthread'
|
|
|
|
endif
|
|
|
|
|
2016-02-18 22:46:58 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_GPM),y)
|
|
|
|
FBTERM_DEPENDENCIES += gpm
|
|
|
|
FBTERM_CONF_OPTS += --enable-gpm
|
|
|
|
else
|
|
|
|
FBTERM_CONF_OPTS += --disable-gpm
|
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|