Blame view

buildroot/buildroot-2016.08.1/package/gutenprint/gutenprint.mk 2.94 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
  ################################################################################
  #
  # gutenprint
  #
  ################################################################################
  
  GUTENPRINT_VERSION_MAJOR = 5.2
  GUTENPRINT_VERSION = $(GUTENPRINT_VERSION_MAJOR).11
  GUTENPRINT_SITE = http://downloads.sourceforge.net/project/gimp-print/gutenprint-$(GUTENPRINT_VERSION_MAJOR)/$(GUTENPRINT_VERSION)
  GUTENPRINT_SOURCE = gutenprint-$(GUTENPRINT_VERSION).tar.bz2
  GUTENPRINT_LICENSE = GPLv2+
  GUTENPRINT_LICENSE_FILES = COPYING
  
  # Needed, as we touch Makefile.am and configure.ac
  GUTENPRINT_AUTORECONF = YES
  
  GUTENPRINT_DEPENDENCIES = \
  	cups host-pkgconf \
  	$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
  	$(if $(BR2_PACKAGE_LIBUSB),libusb)
  
  # host-gutenprint is needed to generate XML as part of compilation
  # the program that generates the xml also links against libgutenprint
  # so we need to build both a host package and a target package
  GUTENPRINT_DEPENDENCIES += host-gutenprint
  
  GUTENPRINT_CONF_ENV = \
  	ac_cv_path_CUPS_CONFIG=$(STAGING_DIR)/usr/bin/cups-config \
  	ac_cv_path_IJS_CONFIG=""
  
  GUTENPRINT_CONF_OPTS = \
  	--disable-libgutenprintui2 \
  	--disable-samples \
  	--without-doc \
  	--without-gimp2 \
  	--without-foomatic \
  	--without-foomatic3 \
  	--disable-escputil \
  	--disable-test \
  	--disable-testpattern \
  	--with-cups="/usr" \
  	--with-sysroot="$(STAGING_DIR)" \
  	--disable-cups-ppds
  
  # USE_PREGEN_XMLI18N_TMP_H is added by our patch
  GUTENPRINT_MAKE_ENV = BR2_USE_PREGEN_XMLI18N_TMP_H=$(HOST_DIR)/usr/include/xmli18n-tmp.h
  
  HOST_GUTENPRINT_DEPENDENCIES = host-pkgconf
  # The host-gutenprint shall create the required header
  HOST_GUTENPRINT_MAKE_ENV =
  
  # Even with --without-cups, gutenprint will still add the output of
  # cups-config --cflags / --ldflags to it's compiler/linker flags if
  # available on host.
  # Notice: Because of the configure logic, it needs to be set to the
  # empty string to to disable this, not just to /bin/false like elsewhere.
  HOST_GUTENPRINT_CONF_ENV = ac_cv_path_CUPS_CONFIG=''
  
  HOST_GUTENPRINT_CONF_OPTS = \
  	--disable-libgutenprintui2 \
  	--disable-samples \
  	--without-gimp2 \
  	--without-doc \
  	--disable-nls \
  	--disable-nls-macos \
  	--without-foomatic \
  	--without-foomatic3 \
  	--disable-escputil \
  	--disable-test \
  	--disable-testpattern \
  	--without-cups
  
  # Needed by autoreconf
  define GUTENPRINT_CREATE_M4_DIR
  	mkdir -p $(@D)/m4local
  endef
  GUTENPRINT_POST_PATCH_HOOKS += GUTENPRINT_CREATE_M4_DIR
  HOST_GUTENPRINT_POST_PATCH_HOOKS += GUTENPRINT_CREATE_M4_DIR
  
  define HOST_GUTENPRINT_POST_BUILD_INSTAL_TMP_HEADER
  	cp $(@D)/src/xml/xmli18n-tmp.h $(HOST_DIR)/usr/include
  endef
  HOST_GUTENPRINT_POST_BUILD_HOOKS += HOST_GUTENPRINT_POST_BUILD_INSTAL_TMP_HEADER
  
  define GUTENPRINT_POST_INSTALL_TARGET_FIXUP
  	mkdir -p $(TARGET_DIR)/usr/share/gutenprint/5.2
  	cp -rf $(HOST_DIR)/usr/share/gutenprint/5.2/xml $(TARGET_DIR)/usr/share/gutenprint/5.2
  endef
  GUTENPRINT_POST_INSTALL_TARGET_HOOKS += GUTENPRINT_POST_INSTALL_TARGET_FIXUP
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))