Commit 8b299021 authored by Giovanni Zantedeschi's avatar Giovanni Zantedeschi Committed by Thomas Petazzoni
Browse files

libpam-tacplus: new package



[Thomas:
  - change the inclusion location in package/Config.in to be with the
    other linux-pam plugins.
  - fix indentation of the Config.in file.
  - fix build of the package when a toolchain without SSP support is
    used.
  - fix installation location of the PAM module: it was installed in
    /usr/lib/security, while all other PAM modules are in
    /lib/security.
  - adjust the ordering of the variables in the .mk file to be a bit
    more logical.
  - remove passing of $(TARGET_CONFIGURE_OPTS) in <pkg>_CONF_ENV as it
    is not needed: it is already done by the autotools-package
    infrastructure.]

Signed-off-by: default avatarGiovanni Zantedeschi <giovanni.zantedeschi@datacom.ind.br>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 90251cda
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1096,6 +1096,7 @@ menu "Other"
if BR2_PACKAGE_LINUX_PAM
comment "linux-pam plugins"
	source "package/libpam-radius-auth/Config.in"
	source "package/libpam-tacplus/Config.in"
endif
	source "package/lttng-libust/Config.in"
	source "package/mpc/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBPAM_TACPLUS
	bool "libpam-tacplus"
	help
	  TACACS+ protocol client library and PAM module in C. This
	  PAM module support authentication, authorization (account
	  management) and accounting (session management)performed
	  using TACACS+ protocol designed by Cisco.

	  https://github.com/jeroennijhof/pam_tacplus
+21 −0
Original line number Diff line number Diff line
################################################################################
#
# libpam-tacplus
#
################################################################################

LIBPAM_TACPLUS_VERSION = 1.3.9
LIBPAM_TACPLUS_SITE = $(call github,jeroennijhof,pam_tacplus,$(LIBPAM_TACPLUS_VERSION))
LIBPAM_TACPLUS_LICENSE = GPLv2+
LIBPAM_TACPLUS_LICENSE_FILES = COPYING
LIBPAM_TACPLUS_DEPENDENCIES = linux-pam
# Fetching from github, we need to generate the configure script
LIBPAM_TACPLUS_AUTORECONF = YES
LIBPAM_TACPLUS_AUTORECONF_OPTS = -I m4
LIBPAM_TACPLUS_INSTALL_STAGING = YES
LIBPAM_TACPLUS_CONF_ENV = \
	ax_cv_check_cflags___fstack_protector_all=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no)
LIBPAM_TACPLUS_CONF_OPTS = \
	--enable-pamdir=/lib/security

$(eval $(autotools-package))