wok diff nss-ldapd/receipt @ rev 23517
updated python-oauth2 (1.5.211 -> 1.9.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 06 11:26:42 2020 +0100 (2020-04-06) |
parents | 04434444ef20 |
children | 241fb98cab1c |
line diff
1.1 --- a/nss-ldapd/receipt Tue Jan 29 09:55:27 2019 +0100 1.2 +++ b/nss-ldapd/receipt Mon Apr 06 11:26:42 2020 +0100 1.3 @@ -1,27 +1,33 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="nss-ldapd" 1.7 -VERSION="0.7.15" 1.8 +VERSION="0.9.11" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="NSS module for name lookups using LDAP (nss_ldap remplacement)." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 +WEB_SITE="https://arthurdejong.org/nss-pam-ldapd/" 1.14 + 1.15 SOURCE="nss-pam-ldapd" 1.16 TARBALL="$SOURCE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://arthurdejong.org/nss-pam-ldapd/" 1.18 WGET_URL="http://arthurdejong.org/$SOURCE/$TARBALL" 1.19 1.20 -DEPENDS="cyrus-sasl krb5 libkrb5 libldap libssl libcomerr3" 1.21 +DEPENDS="cyrus-sasl krb5 libcomerr3 libkrb5 libldap libssl" 1.22 BUILD_DEPENDS="cyrus-sasl-dev krb5-dev openldap-dev openssl-dev pam-dev \ 1.23 -pam_ldap" 1.24 + pam_ldap" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - mkdir -p $DESTDIR/usr/lib $DESTDIR/etc $DESTDIR/usr/lib/security 1.30 + mkdir -p $DESTDIR/usr/lib 1.31 + mkdir -p $DESTDIR/etc 1.32 sed -i 's/-D / /' */Makefile.in Makefile.in 1.33 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.34 - --mandir=/usr/share/man $CONFIGURE_ARGS && 1.35 + 1.36 + ./configure \ 1.37 + --prefix=/usr \ 1.38 + --infodir=/usr/share/info \ 1.39 + --mandir=/usr/share/man \ 1.40 + $CONFIGURE_ARGS && 1.41 make && 1.42 make DESTDIR=$DESTDIR install 1.43 } 1.44 @@ -30,7 +36,10 @@ 1.45 genpkg_rules() 1.46 { 1.47 mkdir -p $fs/usr 1.48 - cp -a $install/etc $fs 1.49 - cp -a $install/usr/sbin $fs/usr 1.50 - cp -a $install/usr/lib $fs/usr 1.51 + mkdir -p $fs/lib 1.52 + 1.53 + cp -a $install/etc $fs 1.54 + cp -a $install/lib/security $fs/lib 1.55 + cp -a $install/usr/sbin $fs/usr 1.56 + cp -a $install/usr/lib $fs/usr 1.57 }