Blame view

buildroot/buildroot-2016.08.1/package/directfb/directfb.mk 4.51 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
  ################################################################################
  #
  # directfb
  #
  ################################################################################
  
  DIRECTFB_VERSION_MAJOR = 1.7
  DIRECTFB_VERSION = $(DIRECTFB_VERSION_MAJOR).7
  DIRECTFB_SITE = http://www.directfb.org/downloads/Core/DirectFB-$(DIRECTFB_VERSION_MAJOR)
  DIRECTFB_SOURCE = DirectFB-$(DIRECTFB_VERSION).tar.gz
  DIRECTFB_LICENSE = LGPLv2.1+
  DIRECTFB_LICENSE_FILES = COPYING
  DIRECTFB_INSTALL_STAGING = YES
  DIRECTFB_AUTORECONF = YES
  
  DIRECTFB_CONF_OPTS = \
  	--enable-zlib \
  	--enable-freetype \
  	--enable-fbdev \
  	--disable-sdl \
  	--disable-vnc \
  	--disable-osx \
  	--disable-video4linux \
  	--disable-video4linux2 \
  	--without-tools \
  	--disable-x11
  
  ifeq ($(BR2_STATIC_LIBS),y)
  DIRECTFB_CONF_OPTS += --disable-dynload
  endif
  
  DIRECTFB_CONFIG_SCRIPTS = directfb-config
  
  DIRECTFB_DEPENDENCIES = freetype zlib
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_MULTI),y)
  DIRECTFB_CONF_OPTS += --enable-multi --enable-multi-kernel
  DIRECTFB_DEPENDENCIES += linux-fusion
  else
  DIRECTFB_CONF_OPTS += --disable-multi --disable-multi-kernel
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_DEBUG_SUPPORT),y)
  DIRECTFB_CONF_OPTS += --enable-debug-support
  ifeq ($(BR2_PACKAGE_DIRECTFB_DEBUG),y)
  DIRECTFB_CONF_OPTS += --enable-debug
  endif
  else
  DIRECTFB_CONF_OPTS += --disable-debug-support
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_TRACE),y)
  DIRECTFB_CONF_OPTS += --enable-trace
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_DIVINE),y)
  DIRECTFB_CONF_OPTS += --enable-divine
  else
  DIRECTFB_CONF_OPTS += --disable-divine
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_SAWMAN),y)
  DIRECTFB_CONF_OPTS += --enable-sawman
  else
  DIRECTFB_CONF_OPTS += --disable-sawman
  endif
  
  DIRECTFB_GFX = \
  	$(if $(BR2_PACKAGE_DIRECTFB_ATI128),ati128) \
  	$(if $(BR2_PACKAGE_DIRECTFB_CYBER5K),cyber5k) \
  	$(if $(BR2_PACKAGE_DIRECTFB_MATROX),matrox) \
  	$(if $(BR2_PACKAGE_DIRECTFB_PXA3XX),pxa3xx) \
  	$(if $(BR2_PACKAGE_DIRECTFB_I830),i830)	\
  	$(if $(BR2_PACKAGE_DIRECTFB_EP9X),ep9x)
  
  ifeq ($(strip $(DIRECTFB_GFX)),)
  DIRECTFB_CONF_OPTS += --with-gfxdrivers=none
  else
  DIRECTFB_CONF_OPTS += \
  	--with-gfxdrivers=$(subst $(space),$(comma),$(strip $(DIRECTFB_GFX)))
  endif
  
  DIRECTFB_INPUT = \
  	$(if $(BR2_PACKAGE_DIRECTFB_LINUXINPUT),linuxinput) \
  	$(if $(BR2_PACKAGE_DIRECTFB_KEYBOARD),keyboard) \
  	$(if $(BR2_PACKAGE_DIRECTFB_PS2MOUSE),ps2mouse) \
  	$(if $(BR2_PACKAGE_DIRECTFB_SERIALMOUSE),serialmouse) \
  	$(if $(BR2_PACKAGE_DIRECTFB_TSLIB),tslib)
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_TSLIB),y)
  DIRECTFB_DEPENDENCIES += tslib
  endif
  
  ifeq ($(strip $(DIRECTFB_INPUT)),)
  DIRECTFB_CONF_OPTS += --with-inputdrivers=none
  else
  DIRECTFB_CONF_OPTS += \
  	--with-inputdrivers=$(subst $(space),$(comma),$(strip $(DIRECTFB_INPUT)))
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_GIF),y)
  DIRECTFB_CONF_OPTS += --enable-gif
  else
  DIRECTFB_CONF_OPTS += --disable-gif
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_TIFF),y)
  DIRECTFB_CONF_OPTS += --enable-tiff
  DIRECTFB_DEPENDENCIES += tiff
  else
  DIRECTFB_CONF_OPTS += --disable-tiff
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_PNG),y)
  DIRECTFB_CONF_OPTS += --enable-png
  DIRECTFB_DEPENDENCIES += libpng
  DIRECTFB_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
  else
  DIRECTFB_CONF_OPTS += --disable-png
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_JPEG),y)
  DIRECTFB_CONF_OPTS += --enable-jpeg
  DIRECTFB_DEPENDENCIES += jpeg
  else
  DIRECTFB_CONF_OPTS += --disable-jpeg
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_SVG),y)
  DIRECTFB_CONF_OPTS += --enable-svg
  # needs some help to find cairo includes
  DIRECTFB_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/cairo"
  DIRECTFB_DEPENDENCIES += libsvg-cairo
  else
  DIRECTFB_CONF_OPTS += --disable-svg
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_IMLIB2),y)
  DIRECTFB_CONF_OPTS += --enable-imlib2
  DIRECTFB_DEPENDENCIES += imlib2
  DIRECTFB_CONF_ENV += ac_cv_path_IMLIB2_CONFIG=$(STAGING_DIR)/usr/bin/imlib2-config
  else
  DIRECTFB_CONF_OPTS += --disable-imlib2
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_DITHER_RGB16),y)
  DIRECTFB_CONF_OPTS += --with-dither-rgb16=advanced
  else
  DIRECTFB_CONF_OPTS += --with-dither-rgb16=none
  endif
  
  ifeq ($(BR2_PACKAGE_DIRECTFB_TESTS),y)
  DIRECTFB_CONF_OPTS += --with-tests
  endif
  
  HOST_DIRECTFB_DEPENDENCIES = host-pkgconf host-libpng
  HOST_DIRECTFB_CONF_OPTS = \
  	--disable-multi \
  	--enable-png \
  	--with-gfxdrivers=none \
  	--with-inputdrivers=none
  
  HOST_DIRECTFB_BUILD_CMDS = \
  	$(MAKE) -C $(@D)/tools directfb-csource
  
  HOST_DIRECTFB_INSTALL_CMDS = \
  	$(INSTALL) -m 0755 $(@D)/tools/directfb-csource $(HOST_DIR)/usr/bin
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))
  
  # directfb-csource for the host
  DIRECTFB_HOST_BINARY = $(HOST_DIR)/usr/bin/directfb-csource