Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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

View File

@@ -0,0 +1,21 @@
################################################################################
#
# 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))