2014-06-02 22:27:22 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
2014-06-24 09:34:20 +02:00
|
|
|
# procps-ng
|
2014-06-02 22:27:22 +02:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
PROCPS_NG_VERSION = 3.3.9
|
|
|
|
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
|
2014-09-02 16:57:33 +02:00
|
|
|
PROCPS_NG_INSTALL_STAGING = YES
|
2014-06-02 22:27:22 +02:00
|
|
|
|
|
|
|
PROCPS_NG_DEPENDENCIES = ncurses
|
|
|
|
|
2014-09-10 16:30:06 +02:00
|
|
|
# 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
|
|
|
|
|
2014-08-21 15:56:07 +02:00
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
2014-06-03 12:11:14 +02:00
|
|
|
PROCPS_NG_DEPENDENCIES += gettext
|
|
|
|
PROCPS_NG_CONF_OPT += LIBS=-lintl
|
|
|
|
endif
|
|
|
|
|
2014-09-10 16:30:06 +02:00
|
|
|
# We need this to make procps-ng binaries installed in $(TARGET_DIR)/usr
|
|
|
|
# instead of $(TARGET_DIR)/usr/usr
|
|
|
|
PROCPS_NG_CONF_OPT += --exec-prefix=
|
|
|
|
|
2014-06-02 22:27:22 +02:00
|
|
|
$(eval $(autotools-package))
|