aboutsummaryrefslogtreecommitdiff
path: root/security/pam_search_list
diff options
context:
space:
mode:
authorPawel Pekala <pawel@FreeBSD.org>2012-12-17 15:00:26 +0000
committerPawel Pekala <pawel@FreeBSD.org>2012-12-17 15:00:26 +0000
commit19c526e63e1e7e4efca64e6d5f41c13ca5b53f79 (patch)
treed57b29072a2b867940da1a695afa3acc7e9fe5cb /security/pam_search_list
parent024b82553025c7c0ec11a5b572cb56166d3caf3a (diff)
downloadports-19c526e63e1e7e4efca64e6d5f41c13ca5b53f79.tar.gz
ports-19c526e63e1e7e4efca64e6d5f41c13ca5b53f79.zip
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
Notes
Notes: svn path=/head/; revision=309099
Diffstat (limited to 'security/pam_search_list')
-rw-r--r--security/pam_search_list/Makefile23
-rw-r--r--security/pam_search_list/distinfo2
-rw-r--r--security/pam_search_list/pkg-descr5
3 files changed, 30 insertions, 0 deletions
diff --git a/security/pam_search_list/Makefile b/security/pam_search_list/Makefile
new file mode 100644
index 000000000000..debe90394929
--- /dev/null
+++ b/security/pam_search_list/Makefile
@@ -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>
diff --git a/security/pam_search_list/distinfo b/security/pam_search_list/distinfo
new file mode 100644
index 000000000000..61441a9ec1b3
--- /dev/null
+++ b/security/pam_search_list/distinfo
@@ -0,0 +1,2 @@
+SHA256 (pam-search-list-0.1.tar.xz) = 77009f307e00413239a4cde497257b0ec33c1fd5c9879461174303230a44c417
+SIZE (pam-search-list-0.1.tar.xz) = 3184
diff --git a/security/pam_search_list/pkg-descr b/security/pam_search_list/pkg-descr
new file mode 100644
index 000000000000..fcaee2eae3c2
--- /dev/null
+++ b/security/pam_search_list/pkg-descr
@@ -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/