svn commit: r467479 - in head/security/pam_pwdfile: . files
Lev A. Serebryakov
lev at FreeBSD.org
Mon Apr 16 12:06:05 UTC 2018
Author: lev
Date: Mon Apr 16 12:06:03 2018
New Revision: 467479
URL: https://svnweb.freebsd.org/changeset/ports/467479
Log:
Update to latest release 1.0.
Reset maintainer to myself (maintainer approved).
PR: 227494
Submitted by: lev
Approved by: mschout at gkg.net
Added:
head/security/pam_pwdfile/files/patch-md5.c (contents, props changed)
head/security/pam_pwdfile/files/patch-pam_pwdfile.c (contents, props changed)
Deleted:
head/security/pam_pwdfile/files/patch-bigcrypt.c
Modified:
head/security/pam_pwdfile/Makefile
head/security/pam_pwdfile/distinfo
Modified: head/security/pam_pwdfile/Makefile
==============================================================================
--- head/security/pam_pwdfile/Makefile Mon Apr 16 11:53:03 2018 (r467478)
+++ head/security/pam_pwdfile/Makefile Mon Apr 16 12:06:03 2018 (r467479)
@@ -2,25 +2,28 @@
# $FreeBSD$
PORTNAME= pam_pwdfile
-PORTVERSION= 0.99
-PORTREVISION= 1
+PORTVERSION= 1.0
CATEGORIES= security
-MASTER_SITES= http://cpbotha.net/files/pam_pwdfile/
-MAINTAINER= mschout at gkg.net
+MAINTAINER= lev at FreeBSD.org
COMMENT= Pam module for authenticating with flat passwd files
+USE_GITHUB= yes
+GH_ACCOUNT= tiwe-de
+GH_PROJECT= libpam-pwdfile
+GH_TAGNAME= v${PORTVERSION}
+
USES= uidfix
MAKEFILE= ${FILESDIR}/Makefile.bsd
PLIST_FILES= lib/pam_pwdfile.so
-PORTDOCS= README INSTALL changelog
+PORTDOCS= README INSTALL
CFLAGS+= -I${WRKSRC}
OPTIONS_DEFINE= DOCS
post-patch:
- ${REINPLACE_CMD} -e 's|#include <features.h>||g' ${WRKSRC}/pam_pwdfile.c
+# ${REINPLACE_CMD} -e 's|#include <features.h>||g' ${WRKSRC}/pam_pwdfile.c
${CP} ${FILESDIR}/_pam_macros.h ${WRKSRC}
post-install:
Modified: head/security/pam_pwdfile/distinfo
==============================================================================
--- head/security/pam_pwdfile/distinfo Mon Apr 16 11:53:03 2018 (r467478)
+++ head/security/pam_pwdfile/distinfo Mon Apr 16 12:06:03 2018 (r467479)
@@ -1,2 +1,3 @@
-SHA256 (pam_pwdfile-0.99.tar.gz) = 973420f203976ac98508bb253b33a23d189cfbaf72143670964470e84085688e
-SIZE (pam_pwdfile-0.99.tar.gz) = 16994
+TIMESTAMP = 1523618004
+SHA256 (tiwe-de-libpam-pwdfile-1.0-v1.0_GH0.tar.gz) = 5b8db1397cff9cadfd1bb96f53c134b787ab0e6a0fbedb71040541d340313ba2
+SIZE (tiwe-de-libpam-pwdfile-1.0-v1.0_GH0.tar.gz) = 13418
Added: head/security/pam_pwdfile/files/patch-md5.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/pam_pwdfile/files/patch-md5.c Mon Apr 16 12:06:03 2018 (r467479)
@@ -0,0 +1,20 @@
+--- md5.c.orig 2018-04-13 14:15:16.302782000 +0300
++++ md5.c 2018-04-13 14:25:07.662155000 +0300
+@@ -17,7 +17,7 @@
+ */
+
+ #include <string.h>
+-#include <byteswap.h>
++#include <sys/endian.h>
+ #include "md5.h"
+
+ #ifndef HIGHFIRST
+@@ -25,7 +25,7 @@
+ #else
+ static void byteReverse(unsigned char *buf, unsigned longs) {
+ for (; longs; --longs, buf +=4)
+- *((uint32_t *) buf) = bswap_32(*((uint32_t *) buf));
++ *((uint32_t *) buf) = bswap32(*((uint32_t *) buf));
+ }
+ #endif
+
Added: head/security/pam_pwdfile/files/patch-pam_pwdfile.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/pam_pwdfile/files/patch-pam_pwdfile.c Mon Apr 16 12:06:03 2018 (r467479)
@@ -0,0 +1,33 @@
+--- pam_pwdfile.c.orig 2018-04-13 14:25:49.414568000 +0300
++++ pam_pwdfile.c 2018-04-13 14:42:33.040919000 +0300
+@@ -38,18 +38,7 @@
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+-#ifdef USE_CRYPT_R
+-#define _GNU_SOURCE
+-#include <crypt.h>
+-#else
+-#ifndef _XOPEN_SOURCE
+-#define _XOPEN_SOURCE 700
+-#endif
+-#ifndef _BSD_SOURCE
+-#define _BSD_SOURCE
+-#endif
+-#endif
+-
++#include <stdint.h>
+ #include <syslog.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+@@ -66,7 +55,9 @@
+
+ #define PAM_SM_AUTH
+ #include <security/pam_modules.h>
+-#include <security/pam_ext.h>
++/* #include <security/pam_ext.h> */
++
++#define pam_syslog(H, C, ...) syslog(C, __VA_ARGS__)
+
+ #include "md5.h"
+ #include "bigcrypt.h"
More information about the svn-ports-all
mailing list