diff options
author | pettai <pettai> | 2012-06-16 21:59:41 +0000 |
---|---|---|
committer | pettai <pettai> | 2012-06-16 21:59:41 +0000 |
commit | ea8a9d97c39074799e6f3a113e540e5ed6f904be (patch) | |
tree | 1858379353a43e4868b47cb7b04ac1f879b9d4f9 /security/pam-tacplus | |
parent | 1c001ee81f68d6d318ab6d2e154566e05b649fa3 (diff) | |
download | pkgsrc-ea8a9d97c39074799e6f3a113e540e5ed6f904be.tar.gz |
1.3.6
* Added libpam-runtime support for debian
* Added use_first_pass and try_first_pass option, thanks to Luc Ducazu <lducazu@gmail.com>
* Changed e-mail adres to jeroen@jeroennijhof.nl
* Improved accounting, added cmd attribute for command logging
* Added tac_acct_flag2str()
* Renamed tac_account_read, tac_account_send to tac_acct_read and tac_acct_send
* pam_tacplus.spec.in: fixed static library path and pam_tacplus.so location
* Debian packaging improvements
Diffstat (limited to 'security/pam-tacplus')
-rw-r--r-- | security/pam-tacplus/Makefile | 5 | ||||
-rw-r--r-- | security/pam-tacplus/PLIST | 5 | ||||
-rw-r--r-- | security/pam-tacplus/distinfo | 9 | ||||
-rw-r--r-- | security/pam-tacplus/patches/patch-makefile.in | 23 |
4 files changed, 33 insertions, 9 deletions
diff --git a/security/pam-tacplus/Makefile b/security/pam-tacplus/Makefile index 8af9f417f7f..252b6c73eaf 100644 --- a/security/pam-tacplus/Makefile +++ b/security/pam-tacplus/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2011/12/21 12:30:21 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2012/06/16 21:59:41 pettai Exp $ # -DISTNAME= pam_tacplus-1.3.5 +DISTNAME= pam_tacplus-1.3.6 PKGNAME= ${DISTNAME:S/_/-/} -PKGREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tacplus/} diff --git a/security/pam-tacplus/PLIST b/security/pam-tacplus/PLIST index ffff76af7d0..570604d2345 100644 --- a/security/pam-tacplus/PLIST +++ b/security/pam-tacplus/PLIST @@ -1,3 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2011/12/21 12:30:21 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2012/06/16 21:59:41 pettai Exp $ lib/security/pam_tacplus.so -share/doc/pam_tacplus/sample.pam +share/doc/pam_tacplus/README +share/examples/pam_tacplus/sample.pam diff --git a/security/pam-tacplus/distinfo b/security/pam-tacplus/distinfo index 50775813326..9cd26cbcfa2 100644 --- a/security/pam-tacplus/distinfo +++ b/security/pam-tacplus/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2011/12/21 12:30:21 wiz Exp $ +$NetBSD: distinfo,v 1.5 2012/06/16 21:59:41 pettai Exp $ -SHA1 (pam_tacplus-1.3.5.tar.gz) = 7ce92c068cc70fc5a381aadbe9c9232a4f8484f3 -RMD160 (pam_tacplus-1.3.5.tar.gz) = 32bac7b9f224693335766694614eed272663292e -Size (pam_tacplus-1.3.5.tar.gz) = 331616 bytes +SHA1 (pam_tacplus-1.3.6.tar.gz) = a69479ffaca4be0cf46e14291fe134691ff23faa +RMD160 (pam_tacplus-1.3.6.tar.gz) = 262ae3b4f78bd8eedc9b18dd4fcb4bce5298968f +Size (pam_tacplus-1.3.6.tar.gz) = 335403 bytes +SHA1 (patch-makefile.in) = fd7cb932101eb6bdb9d42b3e8989804573835fc1 diff --git a/security/pam-tacplus/patches/patch-makefile.in b/security/pam-tacplus/patches/patch-makefile.in new file mode 100644 index 00000000000..fe343746208 --- /dev/null +++ b/security/pam-tacplus/patches/patch-makefile.in @@ -0,0 +1,23 @@ +$NetBSD: patch-makefile.in,v 1.1 2012/06/16 21:59:42 pettai Exp $ + +--- Makefile.in.orig 2011-11-29 13:19:37.000000000 +0000 ++++ Makefile.in +@@ -204,6 +204,7 @@ builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ ++egdir = @EGDIR@ + dvidir = @dvidir@ + exec_prefix = @exec_prefix@ + host = @host@ +@@ -897,7 +898,9 @@ install-data-hook: + ${INSTALL} -d $(DESTDIR)$(libdir)/security + ${INSTALL} -m 755 .libs/pam_tacplus.so $(DESTDIR)$(libdir)/security + ${INSTALL} -d $(DESTDIR)$(docdir) +- ${INSTALL} -m 644 sample.pam $(DESTDIR)$(docdir) ++ ${INSTALL} -m 644 README $(DESTDIR)$(docdir) ++ ${INSTALL} -d $(DESTDIR)$(egdir) ++ ${INSTALL} -m 644 sample.pam $(DESTDIR)$(egdir) + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. |