Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_LIBPAM_RADIUS_AUTH
bool "libpam-radius-auth"
help
This is the PAM to RADIUS authentication module. It allows
any PAM-capable machine to become a RADIUS client for
authentication and accounting requests. You will need a
RADIUS server to perform the actual authentication.
http://freeradius.org/pam_radius_auth/

View File

@@ -0,0 +1,2 @@
# Locally calculated after checking PGP signature
sha256 742d79fc39824726c098e746bd3dc3484f983f5ee082c621c1e848b2c3725305 pam_radius-1.4.0.tar.gz

View File

@@ -0,0 +1,28 @@
################################################################################
#
# libpam-radius-auth
#
################################################################################
LIBPAM_RADIUS_AUTH_VERSION = 1.4.0
LIBPAM_RADIUS_AUTH_SITE = ftp://ftp.freeradius.org/pub/radius
LIBPAM_RADIUS_AUTH_SOURCE = pam_radius-$(LIBPAM_RADIUS_AUTH_VERSION).tar.gz
LIBPAM_RADIUS_AUTH_DEPENDENCIES = linux-pam
LIBPAM_RADIUS_AUTH_INSTALL_STAGING = YES
LIBPAM_RADIUS_AUTH_LICENSE = GPLv2+
LIBPAM_RADIUS_AUTH_LICENSE_FILES = LICENSE
# While autoconf is used for configuration, the Makefile is
# hand-written, so we need to pass CC, LD, CFLAGS at build time.
LIBPAM_RADIUS_AUTH_MAKE_ENV = $(TARGET_CONFIGURE_OPTS)
define LIBPAM_RADIUS_AUTH_INSTALL_STAGING_CMDS
mkdir -p $(STAGING_DIR)/lib/security/
cp -dpfr $(@D)/pam_radius_auth.so* $(STAGING_DIR)/lib/security/
endef
define LIBPAM_RADIUS_AUTH_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/lib/security/
cp -dpfr $(@D)/pam_radius_auth.so* $(TARGET_DIR)/lib/security/
endef
$(eval $(autotools-package))