diff options
author | pettai <pettai> | 2012-11-10 18:07:44 +0000 |
---|---|---|
committer | pettai <pettai> | 2012-11-10 18:07:44 +0000 |
commit | fae960c8a83273368909e947624d0509f51777a9 (patch) | |
tree | b4d5ff3614b4283b3d3d056d561df6357f495ec0 /security/oath-toolkit/Makefile | |
parent | 0836fd05e2b48f7701a1496daa6e69c8da6f93ca (diff) | |
download | pkgsrc-fae960c8a83273368909e947624d0509f51777a9.tar.gz |
Version 1.12.6 (released 2012-09-04)
* liboath: The usersfile is now fflush'ed and fsync'ed.
* liboath: A memory leak fixed.
* oathtool: The --counter parameter now works on 32-bit platforms.
* API and ABI is backwards compatible with the previous version.
OATH_FILE_FLUSH_ERROR: Added.
OATH_FILE_SYNC_ERROR: Added.
OATH_FILE_CLOSE_ERROR: Added.
OATH_LAST_ERROR: Added.
Version 1.12.5 (released 2012-08-19)
* oathtool: The --counter parameter now supports larger values.
Before it used an 'int' type and now it uses a 'longlong' type.
Needed for eSecuTech tokens as they use a 64-bit value for their
initial counter. see <https://savannah.nongnu.org/support/?108114>.
* Added gnulib self-tests.
* API and ABI is backwards compatible with the previous version.
Version 1.12.4 (released 2012-06-17)
* liboath: Usersfile code handles multiple lines for a single user.
This can be used when a single user carries multiple tokens (with
different OATH secrets) and any of them should be permitted.
* API and ABI is backwards compatible with the previous version.
Version 1.12.3 (released 2012-05-31)
* pam_oath: Fix "try_first_pass".
* API and ABI is backwards compatible with the previous version.
Version 1.12.2 (released 2012-04-04)
* liboath: usersfile function now works on FreeBSD.
* tests: liboath usersfile self-test is skipped if there is no datefudge.
* API and ABI is backwards compatible with the previous version.
Version 1.12.1 (released 2012-04-01)
* liboath, oathtool: Base32 decoding now permit lowercase characters.
* API and ABI is backwards compatible with the previous version.
Version 1.12.0 (released 2012-04-01)
* oathtool: Added --base32 parameter to decode base32 keys.
* oathtool: Verbose output (-v) now print key data in base32 format too.
* liboath: Added base32 functions. Added hex encoding function.
The new APIs are oath_bin2hex, oath_base32_decode, and
oath_base32_encode.
* liboath: Gnulib's snprintf is used for better portability.
The system snprintf is known to have bugs on some systems, see the
Gnulib manual for more information.
* API and ABI is backwards compatible with the previous version.
oath_bin2hex: New function.
oath_base32_decode: New function.
oath_base32_encode: New function.
OATH_INVALID_BASE32: New error code.
OATH_BASE32_OVERFLOW: New error code.
OATH_MALLOC_ERROR: New error code.
Diffstat (limited to 'security/oath-toolkit/Makefile')
-rw-r--r-- | security/oath-toolkit/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/oath-toolkit/Makefile b/security/oath-toolkit/Makefile index 03fe42e0f7f..129a3f86944 100644 --- a/security/oath-toolkit/Makefile +++ b/security/oath-toolkit/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2012/10/23 18:16:37 asau Exp $ +# $NetBSD: Makefile,v 1.6 2012/11/10 18:07:44 pettai Exp $ # -DISTNAME= oath-toolkit-1.10.5 +DISTNAME= oath-toolkit-1.12.6 CATEGORIES= security MASTER_SITES= http://download.savannah.gnu.org/releases/oath-toolkit/ @@ -10,6 +10,8 @@ HOMEPAGE= http://www.nongnu.org/oath-toolkit/ COMMENT= OATH (Open AuTHentication) Toolkit LICENSE= gnu-lgpl-v2.1 AND gnu-gpl-v3 +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= yes USE_TOOLS+= pkg-config USE_LIBTOOL= yes |