wok-next diff pam_ssh/receipt @ rev 20790

1. update also pinentry-gtk to new version 2. add to both fltk-dev so fltk-config is found 3. I want to force also a build to see if it really builds OKish here (see wok-build)
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 11:23:42 2018 +0000 (2018-06-09)
parents e6615350078d
children 4e6503d7a19f
line diff
     1.1 --- a/pam_ssh/receipt	Wed Feb 28 16:28:07 2018 +0200
     1.2 +++ b/pam_ssh/receipt	Sat Jun 09 11:23:42 2018 +0000
     1.3 @@ -1,30 +1,32 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="pam_ssh"
     1.8  VERSION="2.1"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="PAM Module that provides single sign-on behavior with ssh-agent."
    1.11 +SHORT_DESC="PAM Module that provides single sign-on behavior with ssh-agent"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="BSD"
    1.14 +WEB_SITE="http://pam-ssh.sourceforge.net/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17 -WEB_SITE="http://pam-ssh.sourceforge.net/"
    1.18  WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL"
    1.19 -TAGS="ssh"
    1.20  
    1.21 -DEPENDS="pam openssl openssh-pam"
    1.22 -BUILD_DEPENDS="pam-dev file openssl-dev openssh-pam automake"
    1.23 +BUILD_DEPENDS="openssh-pam openssl10-dev pam-dev"
    1.24  
    1.25 -# Rules to configure and make the package.
    1.26 -compile_rules()
    1.27 -{
    1.28 -	./configure --prefix=/usr \
    1.29 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.30 +compile_rules() {
    1.31 +	export CPPFLAGS="$CPPFLAGS -I /usr/include/openssl-1.0"
    1.32 +
    1.33 +	./configure \
    1.34 +		--with-pam-dir=/lib/security \
    1.35 +		--with-ssl-dir=/usr/lib/openssl-1.0 \
    1.36 +		$CONFIGURE_ARGS &&
    1.37 +	fix libtool &&
    1.38  	make &&
    1.39 -	make DESTDIR=$DESTDIR install
    1.40 +	make install
    1.41  }
    1.42  
    1.43 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.44 -genpkg_rules()
    1.45 -{
    1.46 -	cp -a $install/lib $fs
    1.47 +genpkg_rules() {
    1.48 +	copy @std
    1.49 +	DEPENDS="openssl10 pam   openssh-pam"
    1.50 +	TAGS="ssh"
    1.51  }