Blame view

buildroot/buildroot-2016.08.1/package/poppler/poppler.mk 2.01 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
  ################################################################################
  #
  # poppler
  #
  ################################################################################
  
  POPPLER_VERSION = 0.32.0
  POPPLER_SOURCE = poppler-$(POPPLER_VERSION).tar.xz
  POPPLER_SITE = http://poppler.freedesktop.org
  POPPLER_DEPENDENCIES = fontconfig host-pkgconf
  POPPLER_LICENSE = GPLv2+
  POPPLER_LICENSE_FILES = COPYING
  POPPLER_INSTALL_STAGING = YES
  POPPLER_CONF_OPTS = --with-font-configuration=fontconfig \
  	--enable-xpdf-headers
  
  ifeq ($(BR2_PACKAGE_LCMS2),y)
  POPPLER_CONF_OPTS += --enable-cms=lcms2
  POPPLER_DEPENDENCIES += lcms2
  else
  POPPLER_CONF_OPTS += --enable-cms=none
  endif
  
  ifeq ($(BR2_PACKAGE_TIFF),y)
  POPPLER_CONF_OPTS += --enable-libtiff
  # Help poppler to find libtiff in static linking scenarios
  POPPLER_CONF_ENV += \
  	LIBTIFF_LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs libtiff-4`"
  POPPLER_DEPENDENCIES += tiff
  else
  POPPLER_CONF_OPTS += --disable-libtiff
  endif
  
  ifeq ($(BR2_PACKAGE_JPEG),y)
  POPPLER_CONF_OPTS += --enable-libjpeg
  POPPLER_DEPENDENCIES += jpeg
  else
  POPPLER_CONF_OPTS += --disable-libjpeg
  endif
  
  ifeq ($(BR2_PACKAGE_LIBPNG),y)
  POPPLER_CONF_OPTS += --enable-libpng
  POPPLER_DEPENDENCIES += libpng
  else
  POPPLER_CONF_OPTS += --disable-libpng
  endif
  
  ifeq ($(BR2_PACKAGE_ZLIB),y)
  POPPLER_CONF_OPTS += --enable-zlib
  POPPLER_DEPENDENCIES += zlib
  else
  POPPLER_CONF_OPTS += --disable-zlib
  endif
  
  ifeq ($(BR2_PACKAGE_POPPLER_LIBCURL),y)
  POPPLER_CONF_OPTS += --enable-libcurl
  POPPLER_DEPENDENCIES += libcurl
  else
  POPPLER_CONF_OPTS += --disable-libcurl
  endif
  
  ifeq ($(BR2_PACKAGE_XORG7),y)
  POPPLER_CONF_OPTS += --with-x
  POPPLER_DEPENDENCIES += xlib_libX11 xlib_libXext
  else
  POPPLER_CONF_OPTS += --without-x
  endif
  
  ifeq ($(BR2_PACKAGE_POPPLER_QT),y)
  POPPLER_DEPENDENCIES += qt
  POPPLER_CONF_OPTS += --enable-poppler-qt4
  else
  POPPLER_CONF_OPTS += --disable-poppler-qt4
  endif
  
  ifeq ($(BR2_PACKAGE_OPENJPEG),y)
  POPPLER_DEPENDENCIES += openjpeg
  POPPLER_CONF_OPTS += --enable-libopenjpeg
  else
  POPPLER_CONF_OPTS += --enable-libopenjpeg=none
  endif
  
  $(eval $(autotools-package))