Blame view

buildroot/buildroot-2016.08.1/package/fbterm/fbterm.mk 712 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  ################################################################################
  #
  # fbterm
  #
  ################################################################################
  
  FBTERM_VERSION = 1.7.0
  FBTERM_SITE = http://fbterm.googlecode.com/files
  FBTERM_LICENSE = GPLv2+
  FBTERM_LICENSE_FILES = COPYING
  FBTERM_DEPENDENCIES = fontconfig liberation
  
  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
  
  ifeq ($(BR2_PACKAGE_GPM),y)
  FBTERM_DEPENDENCIES += gpm
  FBTERM_CONF_OPTS += --enable-gpm
  else
  FBTERM_CONF_OPTS += --disable-gpm
  endif
  
  $(eval $(autotools-package))