f943478807
The overriden service files appear to have compatibility issues with upstream rpcbind, don't replace the bundled service files. We need to build with --enable-warmstarts as this is required by the systemd service files. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
1011 B
Makefile
33 lines
1011 B
Makefile
################################################################################
|
|
#
|
|
# rpcbind
|
|
#
|
|
################################################################################
|
|
|
|
RPCBIND_VERSION = 1.2.6
|
|
RPCBIND_SITE = http://downloads.sourceforge.net/project/rpcbind/rpcbind/$(RPCBIND_VERSION)
|
|
RPCBIND_SOURCE = rpcbind-$(RPCBIND_VERSION).tar.bz2
|
|
RPCBIND_LICENSE = BSD-3-Clause
|
|
RPCBIND_LICENSE_FILES = COPYING
|
|
RPCBIND_CPE_ID_VENDOR = rpcbind_project
|
|
|
|
RPCBIND_CONF_ENV += \
|
|
CFLAGS="$(TARGET_CFLAGS) `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`"
|
|
RPCBIND_DEPENDENCIES += libtirpc host-pkgconf
|
|
RPCBIND_CONF_OPTS += --with-rpcuser=root
|
|
|
|
ifeq ($(BR2_INIT_SYSTEMD),y)
|
|
RPCBIND_CONF_OPTS += --enable-warmstarts \
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system
|
|
RPCBIND_DEPENDENCIES += systemd
|
|
else
|
|
RPCBIND_CONF_OPTS += --with-systemdsystemunitdir=no
|
|
endif
|
|
|
|
define RPCBIND_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/rpcbind/S30rpcbind \
|
|
$(TARGET_DIR)/etc/init.d/S30rpcbind
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|