mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
3559320380
Also, change the url to https://github.com/polkit-org/polkit as https://gitlab.freedesktop.org/polkit/polkit The new address of the codebase for the polkit project points to the github URL. Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
77 lines
2.0 KiB
Makefile
77 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# polkit
|
|
#
|
|
################################################################################
|
|
|
|
POLKIT_VERSION = 125
|
|
POLKIT_SITE = $(call github,polkit-org,polkit,$(POLKIT_VERSION))
|
|
POLKIT_LICENSE = GPL-2.0
|
|
POLKIT_LICENSE_FILES = COPYING
|
|
POLKIT_CPE_ID_VALID = YES
|
|
POLKIT_INSTALL_STAGING = YES
|
|
POLKIT_DEPENDENCIES = \
|
|
duktape libglib2 host-intltool expat $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
POLKIT_SELINUX_MODULES = policykit
|
|
|
|
POLKIT_LDFLAGS = $(TARGET_NLS_LIBS)
|
|
|
|
POLKIT_CONF_OPTS = \
|
|
-Dman=false \
|
|
-Dexamples=false \
|
|
-Dsession_tracking=ConsoleKit \
|
|
-Djs_engine=duktape
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
POLKIT_CONF_OPTS += -Dintrospection=true
|
|
POLKIT_DEPENDENCIES += gobject-introspection
|
|
else
|
|
POLKIT_CONF_OPTS += -Dintrospection=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBXCRYPT),y)
|
|
POLKIT_DEPENDENCIES += libxcrypt
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
|
POLKIT_DEPENDENCIES += linux-pam
|
|
POLKIT_CONF_OPTS += -Dauthfw=pam
|
|
else
|
|
POLKIT_CONF_OPTS += -Dauthfw=shadow
|
|
endif
|
|
|
|
# polkit.{its,loc} are needed for gvfs and must be installed in $(HOST_DIR)
|
|
# and not $(STAGING_DIR)
|
|
define POLKIT_INSTALL_ITS
|
|
$(INSTALL) -D -m 644 $(@D)/gettext/its/polkit.its \
|
|
$(HOST_DIR)/share/gettext/its/polkit.its
|
|
$(INSTALL) -D -m 644 $(@D)/gettext/its/polkit.loc \
|
|
$(HOST_DIR)/share/gettext/its/polkit.loc
|
|
endef
|
|
POLKIT_POST_INSTALL_TARGET_HOOKS += POLKIT_INSTALL_ITS
|
|
|
|
define POLKIT_USERS
|
|
polkitd -1 polkitd -1 * - - - Polkit Daemon
|
|
endef
|
|
|
|
define POLKIT_PERMISSIONS
|
|
/etc/polkit-1/rules.d d 700 polkitd root - - - - -
|
|
/usr/share/polkit-1/rules.d d 700 polkitd root - - - - -
|
|
/usr/bin/pkexec f 4755 root root - - - - -
|
|
/usr/lib/polkit-1/polkit-agent-helper-1 f 4755 root root - - - - -
|
|
endef
|
|
|
|
define POLKIT_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 $(POLKIT_PKGDIR)/polkit.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/polkit.service
|
|
|
|
endef
|
|
|
|
define POLKIT_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/polkit/S50polkitd \
|
|
$(TARGET_DIR)/etc/init.d/S50polkitd
|
|
endef
|
|
|
|
$(eval $(meson-package))
|