93cb32d6d9
Forward port 0001-link-against-libintl.patch. Since now autoreconf works, move the patch from Makefile.in to Makefile.am. Also, convert to git format. Remove 0002-no-__progname.patch. Buildroot default uClibc and musl now provide __progname. Add a patch that adds the git-version-gen script to fix autoreconf. Remove upstream patch. Upstream switched to .xz tarballs. Add upstream provided hashes. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
32 lines
936 B
Makefile
32 lines
936 B
Makefile
################################################################################
|
|
#
|
|
# psmisc
|
|
#
|
|
################################################################################
|
|
|
|
PSMISC_VERSION = 23.1
|
|
PSMISC_SITE = http://downloads.sourceforge.net/project/psmisc/psmisc
|
|
PSMISC_SOURCE = psmisc-$(PSMISC_VERSION).tar.xz
|
|
PSMISC_LICENSE = GPL-2.0
|
|
PSMISC_LICENSE_FILES = COPYING
|
|
PSMISC_DEPENDENCIES = ncurses $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
# Patching Makefile.am
|
|
PSMISC_AUTORECONF = YES
|
|
|
|
define PSMISC_GIT_VERSION_EXEC
|
|
chmod +x $(@D)/misc/git-version-gen
|
|
endef
|
|
PSMISC_POST_PATCH_HOOKS += PSMISC_GIT_VERSION_EXEC
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_SSP),)
|
|
# Don't force -fstack-protector when SSP is not available in toolchain
|
|
PSMISC_CONF_OPTS = --disable-harden-flags
|
|
endif
|
|
|
|
# build after busybox, we prefer fat versions while we're at it
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
PSMISC_DEPENDENCIES += busybox
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|