Blame view

buildroot/buildroot-2016.08.1/package/procps-ng/procps-ng.mk 1.72 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
  ################################################################################
  #
  # procps-ng
  #
  ################################################################################
  
  PROCPS_NG_VERSION = 3.3.11
  PROCPS_NG_SOURCE = procps-ng-$(PROCPS_NG_VERSION).tar.xz
  PROCPS_NG_SITE = http://downloads.sourceforge.net/project/procps-ng/Production
  PROCPS_NG_LICENSE = GPLv2+, libproc and libps LGPLv2+
  PROCPS_NG_LICENSE_FILES = COPYING COPYING.LIB
  PROCPS_NG_INSTALL_STAGING = YES
  PROCPS_NG_DEPENDENCIES = ncurses host-pkgconf
  # For 0002-use-pkgconfig-for-ncursesw-cflags.patch
  PROCPS_NG_AUTORECONF = YES
  PROCPS_NG_GETTEXTIZE = YES
  
  # If both procps-ng and busybox are selected, make certain procps-ng
  # wins the fight over who gets to have their utils actually installed.
  ifeq ($(BR2_PACKAGE_BUSYBOX),y)
  PROCPS_NG_DEPENDENCIES += busybox
  endif
  
  ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
  PROCPS_NG_DEPENDENCIES += gettext
  PROCPS_NG_CONF_OPTS += LIBS=-lintl
  endif
  
  ifeq ($(BR2_PACKAGE_SYSTEMD),y)
  PROCPS_NG_DEPENDENCIES += systemd
  PROCPS_NG_CONF_OPTS += --with-systemd
  else
  PROCPS_NG_CONF_OPTS += --without-systemd
  endif
  
  # Make sure binaries get installed in /bin, so that they overwrite
  # their busybox counterparts.
  # Make sure libprocps.pc is installed in STAGING_DIR/usr/lib/pkgconfig/
  # otherwise it's installed in STAGING_DIR/lib/pkgconfig/ breaking
  # pkg-config --libs libprocps.
  PROCPS_NG_CONF_OPTS += --exec-prefix=/ \
  	--libdir=/usr/lib
  
  # Allows unicode characters to show in 'watch'
  ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
  PROCPS_NG_CONF_OPTS += \
  	--enable-watch8bit
  endif
  
  # numa support requires libdl, so explicitly disable it when
  # BR2_STATIC_LIBS=y
  ifeq ($(BR2_STATIC_LIBS),y)
  PROCPS_NG_CONF_OPTS += --disable-numa
  endif
  
  $(eval $(autotools-package))