# HG changeset patch # User Aleksej Bobylev # Date 1527430818 -10800 # Node ID eea9609125adc95aa9dc43dc451319b9f80029f7 # Parent 599c2faa5148e95abdccea9a2582ef1648bf9518 pam_ssh: use openssl-1.0; pam_mount: up (2.16) diff -r 599c2faa5148 -r eea9609125ad pam_mount/receipt --- a/pam_mount/receipt Sun May 27 15:45:14 2018 +0300 +++ b/pam_mount/receipt Sun May 27 17:20:18 2018 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt v2. PACKAGE="pam_mount" -VERSION="2.15" +VERSION="2.16" CATEGORY="system-tools" SHORT_DESC="PAM Module that can mount volumes for a user session" MAINTAINER="pascal.bellard@slitaz.org" @@ -11,16 +11,32 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$SF_MIRROR/pam-mount/$TARBALL" -BUILD_DEPENDS="pam-dev libhx libhx-dev openssl-dev libxml2-dev \ -util-linux-mount-dev util-linux-blkid-dev util-linux-uuid-dev pcre-dev perl" +BUILD_DEPENDS="automake libtool libhx-dev util-linux-mount-dev libxml2-dev \ +pcre-dev openssl-dev cryptsetup-dev pam-dev" +SPLIT="pam_mount-dev" compile_rules() { + aclocal + libtoolize + automake --add-missing + autoreconf + ./configure $CONFIGURE_ARGS && + fix libtool && make && - make DESTDIR=$DESTDIR install + make install } genpkg_rules() { - copy @std - DEPENDS="pam openssl libxml2 libhx zlib" + case $PACKAGE in + pam_mount) + copy @std + DEPENDS="cryptsetup libhx libpcre libxml2 openssl pam \ + util-linux-mount" + ;; + *-dev) + copy @dev + DEPENDS="pam_mount libhx-dev" + ;; + esac } diff -r 599c2faa5148 -r eea9609125ad pam_ssh/receipt --- a/pam_ssh/receipt Sun May 27 15:45:14 2018 +0300 +++ b/pam_ssh/receipt Sun May 27 17:20:18 2018 +0300 @@ -1,30 +1,32 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="pam_ssh" VERSION="2.1" CATEGORY="system-tools" -SHORT_DESC="PAM Module that provides single sign-on behavior with ssh-agent." +SHORT_DESC="PAM Module that provides single sign-on behavior with ssh-agent" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="http://pam-ssh.sourceforge.net/" + TARBALL="$PACKAGE-$VERSION.tar.xz" -WEB_SITE="http://pam-ssh.sourceforge.net/" WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL" -TAGS="ssh" -DEPENDS="pam openssl openssh-pam" -BUILD_DEPENDS="pam-dev file openssl-dev openssh-pam automake" +BUILD_DEPENDS="openssh-pam openssl10-dev pam-dev" -# Rules to configure and make the package. -compile_rules() -{ - ./configure --prefix=/usr \ - --mandir=/usr/share/man $CONFIGURE_ARGS && +compile_rules() { + export CPPFLAGS="$CPPFLAGS -I /usr/include/openssl-1.0" + + ./configure \ + --with-pam-dir=/lib/security \ + --with-ssl-dir=/usr/lib/openssl-1.0 \ + $CONFIGURE_ARGS && + fix libtool && make && - make DESTDIR=$DESTDIR install + make install } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - cp -a $install/lib $fs +genpkg_rules() { + copy @std + DEPENDS="openssl10 pam openssh-pam" + TAGS="ssh" }