svn commit: r315025 - in head/x11/slim: . files
Guido Falsi
madpilot at FreeBSD.org
Sat Mar 23 12:35:16 UTC 2013
Author: madpilot
Date: Sat Mar 23 12:35:14 2013
New Revision: 315025
URL: http://svnweb.freebsd.org/changeset/ports/315025
Log:
- Add "Conversation failure" error code to authentication errors
list in order to permit login with special usernames.
- Fix conssole command
- Bump PORTREVISION
PR: ports/174482
Submitted by: Maxim Samsonov <xors at mailup.net>
Approved by: Henry Hu <henry.hu.sh at gmail.com> (maintainer)
Added:
head/x11/slim/files/patch-PAM.cpp (contents, props changed)
Modified:
head/x11/slim/Makefile
head/x11/slim/files/patch-slim.conf (contents, props changed)
Modified: head/x11/slim/Makefile
==============================================================================
--- head/x11/slim/Makefile Sat Mar 23 12:01:32 2013 (r315024)
+++ head/x11/slim/Makefile Sat Mar 23 12:35:14 2013 (r315025)
@@ -3,7 +3,7 @@
PORTNAME= slim
PORTVERSION= 1.3.4
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= x11
MASTER_SITES= http://slim.berlios.de/releases/
Added: head/x11/slim/files/patch-PAM.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/slim/files/patch-PAM.cpp Sat Mar 23 12:35:14 2013 (r315025)
@@ -0,0 +1,10 @@
+--- PAM.cpp.orig 2012-06-26 12:20:14.000000000 +0400
++++ PAM.cpp 2012-12-16 16:05:09.000000000 +0400
+@@ -128,6 +128,7 @@
+ case PAM_MAXTRIES:
+ case PAM_CRED_INSUFFICIENT:
+ case PAM_AUTH_ERR:
++ case PAM_CONV_ERR:
+ throw Auth_Exception(pam_handle, "pam_authentication()", last_result);
+
+ case PAM_SUCCESS:
Modified: head/x11/slim/files/patch-slim.conf
==============================================================================
--- head/x11/slim/files/patch-slim.conf Sat Mar 23 12:01:32 2013 (r315024)
+++ head/x11/slim/files/patch-slim.conf Sat Mar 23 12:35:14 2013 (r315025)
@@ -18,7 +18,7 @@
reboot_cmd /sbin/shutdown -r now
-console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
-#suspend_cmd /usr/sbin/suspend
-+console_cmd %%LOCALBASE%%/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/motd; exec /bin/login"
++console_cmd %%LOCALBASE%%/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/motd; exec /usr/bin/login"
+suspend_cmd /usr/sbin/acpiconf -s 3
# Full path to the xauth binary
More information about the svn-ports-head
mailing list