wok view pam/receipt @ rev 25649

Patch pam CVE-2024-22365
author Stanislas Leduc <shann@slitaz.org>
date Fri Feb 02 19:36:21 2024 +0100 (3 months ago)
parents 1e09c4c56491
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pam"
4 VERSION="1.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Pluggable Authentication Modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD GPL2"
9 SOURCE="Linux-PAM"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.linux-pam.org/"
12 WGET_URL="https://web.archive.org/web/20160711113353if_/http://linux-pam.org/library/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS="glibc-base libdb"
16 BUILD_DEPENDS="flex db-dev libdb"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://github.com/linux-pam/linux-pam/releases 2>/dev/null | \
22 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 # Patch CVE-2024-22365
29 # see https://seclists.org/oss-sec/2024/q1/31
30 patch -p1 < $stuff/CVE-2024-22365.patch
32 sed -i 's|(uname -m)|(echo i686)|;s|`uname -m`|`echo i686`|' \
33 configure build-aux/config.guess
34 ./configure --sysconfdir=/etc \
35 $CONFIGURE_ARGS &&
36 make && make install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/lib
43 cp -a $install/etc $fs
44 cp -a $install/sbin $fs
45 cp -a $install/lib/*so* $fs/lib
46 cp -a $install/lib/security $fs/lib
47 rm -f $fs/lib/security/*.la
48 cp -a $stuff/* $fs
49 }
51 pre_remove()
52 {
53 # If busybox-pam is installed, trigger its removal right now. Once pam shared
54 # library will be removed, it will be too late. Don't worry about this, while
55 # removing busybox-pam will replace itself by a non-pam busybox.
56 if [ -d /var/lib/tazpkg/installed/busybox-pam ]; then
57 tazpkg remove busybox-pam --auto
58 fi
59 }