Files
bpfire/lfs/oath-toolkit
Adolf Belka cb3e57a1f0 oath-toolkit: Update to version 2.6.9
- Update from version 2.6.7 to 2.6.9
- Update of rootfile not required
- Changelog
    2.6.9 (released 2023-07-09)
	** Improve compatibility with recent libxmlsec.
	** Update gnulib files, dropping gnulib self-tests.
    2.6.8 (released 2023-07-09)
	** libpskc: Fixes for recent libxmlsec releases.
	** pam_oath: Provide fallback pam_modutil_getpwnam implementation.
		Fixes <https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/26> on
		Mac OS.  Patch from Nick Gaya <nicholasgaya+github@gmail.com>.
	** pam_oath: Don't fail authentication when pam_modutil_getpwnam doesn't
	** know the user when usersfile don't include ${USER} or ${HOME}. Closes: #27.
		Regression introduced in previous release.  Reported by Nick Gaya
		<nicholasgaya+github@gmail.com>.
	** pam_oath: Self-test improvements.
		Patch from Nick Gaya <nicholasgaya+github@gmail.com>.
	** liboath: Builds on Windows.
		The oath_authenticate_usersfile function is just a stub that returns
		an error.  This allows for use of the rest of the library on Windows.
		Thanks to David Woodhouse, see
		<https://gitlab.com/oath-toolkit/oath-toolkit/-/merge_requests/15>.
	** Disable PAM self-tests on Mac.  Fix --enable-root-tests logic.
	** Don't ship gtk-doc PDF's in tarball.
	** Use gitlog-to-changelog instead of git2cl.
	** Codespell typo fixes. Patch by Dimitri Papadopoulos.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2023-07-26 16:09:00 +00:00

78 lines
3.2 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2022-2023 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 2.6.9
THISAPP = oath-toolkit-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = 572512311bbfa18d325c7b9b8d88ff85c05241c9a22942bc67edf531ed621e68b031dc4562bd8473ec1b1bfe264c8a4084c1c304ba0d24914acc5b21325b8601
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)