Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Dec 2012 15:00:26 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309099 - in head/security: . pam_search_list
Message-ID:  <201212171500.qBHF0QZ7009198@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Mon Dec 17 15:00:26 2012
New Revision: 309099
URL: http://svnweb.freebsd.org/changeset/ports/309099

Log:
  This PAM service module allows PAM-enabled applications to check if
  the target user is in some arbitrary plaintext list. Similar to module
  pam_ftpusers from the FreeBSD Project and is based on it's code.
  
  WWW: http://sourceforge.net/projects/pam-search-list/
  
  PR:		ports/169877
  Submitted by:	Victor Popov

Added:
  head/security/pam_search_list/
  head/security/pam_search_list/Makefile   (contents, props changed)
  head/security/pam_search_list/distinfo   (contents, props changed)
  head/security/pam_search_list/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon Dec 17 14:58:23 2012	(r309098)
+++ head/security/Makefile	Mon Dec 17 15:00:26 2012	(r309099)
@@ -611,6 +611,7 @@
     SUBDIR += pam_pseudo
     SUBDIR += pam_pwdfile
     SUBDIR += pam_require
+    SUBDIR += pam_search_list
     SUBDIR += pam_smb
     SUBDIR += pam_ssh_agent_auth
     SUBDIR += pamtester

Added: head/security/pam_search_list/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/pam_search_list/Makefile	Mon Dec 17 15:00:26 2012	(r309099)
@@ -0,0 +1,23 @@
+# Created by: Victor Popov
+# $FreeBSD$
+
+PORTNAME=	pam_search_list
+PORTVERSION=	0.1
+CATEGORIES=	security
+MASTER_SITES=	SF/${PORTNAME:S/_/-/g}
+DISTNAME=	${PORTNAME:S/_/-/g}-${PORTVERSION}
+
+MAINTAINER=	v.a.popov@gmail.com
+COMMENT=	PAM module to search arbitrary file for user
+
+USE_XZ=		yes
+
+MANCOMPRESSED=	yes
+MAN8=		pam_search_list.8
+
+PLIST_FILES=	lib/libpam_search_list.a \
+		lib/libpam_search_list_p.a \
+		lib/pam_search_list.so \
+		lib/pam_search_list.so.0
+
+.include <bsd.port.mk>

Added: head/security/pam_search_list/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/pam_search_list/distinfo	Mon Dec 17 15:00:26 2012	(r309099)
@@ -0,0 +1,2 @@
+SHA256 (pam-search-list-0.1.tar.xz) = 77009f307e00413239a4cde497257b0ec33c1fd5c9879461174303230a44c417
+SIZE (pam-search-list-0.1.tar.xz) = 3184

Added: head/security/pam_search_list/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/pam_search_list/pkg-descr	Mon Dec 17 15:00:26 2012	(r309099)
@@ -0,0 +1,5 @@
+This PAM service module allows PAM-enabled applications to check if
+the target user is in some arbitrary plaintext list. Similar to module
+pam_ftpusers from the FreeBSD Project and is based on it's code.
+
+WWW: http://sourceforge.net/projects/pam-search-list/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212171500.qBHF0QZ7009198>