2017-10-29 17:12:55 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# boinc
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2021-10-03 10:56:37 +02:00
|
|
|
BOINC_VERSION_MAJOR = 7.18
|
|
|
|
BOINC_VERSION = $(BOINC_VERSION_MAJOR).1
|
2017-10-29 17:12:55 +01:00
|
|
|
BOINC_SITE = \
|
|
|
|
$(call github,BOINC,boinc,client_release/$(BOINC_VERSION_MAJOR)/$(BOINC_VERSION))
|
|
|
|
BOINC_LICENSE = LGPL-3.0+
|
|
|
|
BOINC_LICENSE_FILES = COPYING COPYING.LESSER
|
2021-01-17 17:15:20 +01:00
|
|
|
BOINC_CPE_ID_VENDOR = rom_walton
|
2021-07-21 22:01:39 +02:00
|
|
|
BOINC_SELINUX_MODULES = boinc
|
2017-10-29 17:12:55 +01:00
|
|
|
BOINC_DEPENDENCIES = host-pkgconf libcurl openssl
|
|
|
|
BOINC_AUTORECONF = YES
|
2021-10-07 18:41:12 +02:00
|
|
|
# The ac_cv_c_undeclared_builtin_options value is to help
|
|
|
|
# AC_CHECK_DECLS realize that it doesn't need any particular compiler
|
|
|
|
# option to get an error when building a program that uses undeclared
|
|
|
|
# symbols. Otherwise, AC_CHECK_DECLS is confused by the configure
|
|
|
|
# script unconditionally passing -mavx, which only exists on x86, and
|
|
|
|
# therefore causes a failure on all other architectures.
|
|
|
|
BOINC_CONF_ENV = \
|
|
|
|
ac_cv_c_undeclared_builtin_options='none needed' \
|
|
|
|
ac_cv_path__libcurl_config=$(STAGING_DIR)/usr/bin/curl-config
|
2017-10-29 17:12:55 +01:00
|
|
|
BOINC_CONF_OPTS = \
|
|
|
|
--disable-apps \
|
|
|
|
--disable-boinczip \
|
2022-03-08 22:12:05 +01:00
|
|
|
--disable-fcgi \
|
2017-10-29 17:12:55 +01:00
|
|
|
--disable-manager \
|
|
|
|
--disable-server \
|
|
|
|
--enable-client \
|
|
|
|
--enable-dynamic-client-linkage \
|
|
|
|
--enable-libraries \
|
|
|
|
--with-pkg-config=$(PKG_CONFIG_HOST_BINARY) \
|
|
|
|
--with-libcurl=$(STAGING_DIR)/usr
|
|
|
|
|
2017-10-29 17:12:56 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
|
|
|
BOINC_DEPENDENCIES += freetype
|
|
|
|
endif
|
|
|
|
|
2021-11-07 09:45:26 +01:00
|
|
|
BOINC_MAKE_OPTS = CXXFLAGS="$(TARGET_CXXFLAGS) -std=c++11"
|
|
|
|
|
2017-10-29 17:12:55 +01:00
|
|
|
# Remove boinc-client because it is incompatible with buildroot
|
|
|
|
define BOINC_REMOVE_UNNEEDED_FILE
|
|
|
|
$(RM) $(TARGET_DIR)/etc/init.d/boinc-client
|
|
|
|
endef
|
|
|
|
|
|
|
|
BOINC_POST_INSTALL_TARGET_HOOKS += BOINC_REMOVE_UNNEEDED_FILE
|
|
|
|
|
2018-04-28 16:24:17 +02:00
|
|
|
define BOINC_USERS
|
|
|
|
boinc -1 boinc -1 * /var/lib/boinc - BOINC user
|
|
|
|
endef
|
|
|
|
|
2017-10-29 17:12:55 +01:00
|
|
|
define BOINC_INSTALL_INIT_SYSV
|
2017-12-15 19:54:39 +01:00
|
|
|
$(INSTALL) -D -m 0755 package/boinc/S99boinc-client \
|
2017-10-29 17:12:55 +01:00
|
|
|
$(TARGET_DIR)/etc/init.d/S99boinc-client
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|