Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 2020 14:56:36 +0000 (UTC)
From:      Jesper Schmitz Mouridsen <jsm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r539811 - in head/x11/slim: . files
Message-ID:  <202006221456.05MEuaql093035@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jsm
Date: Mon Jun 22 14:56:36 2020
New Revision: 539811
URL: https://svnweb.freebsd.org/changeset/ports/539811

Log:
  Corrects get_x11_device for FreeBSD
  
  fixes active session state for consolekit2
  transfer maintainership
  
  PR:	243988
  Approved by:	henry.hu.sh@gmail.com (maintainer)

Added:
  head/x11/slim/files/patch-Ck.cpp   (contents, props changed)
Modified:
  head/x11/slim/Makefile

Modified: head/x11/slim/Makefile
==============================================================================
--- head/x11/slim/Makefile	Mon Jun 22 14:54:48 2020	(r539810)
+++ head/x11/slim/Makefile	Mon Jun 22 14:56:36 2020	(r539811)
@@ -3,12 +3,12 @@
 
 PORTNAME=	slim
 PORTVERSION=	1.3.6
-PORTREVISION=	19
+PORTREVISION=	20
 CATEGORIES=	x11
 MASTER_SITES=	ftp://ftp.berlios.de/pub/slim/ \
 		SF/slim.berlios
 
-MAINTAINER=	henry.hu.sh@gmail.com
+MAINTAINER= 	jsm@FreeBSD.org	
 COMMENT=	Graphical login manager for X11, derived from Login.app
 
 LICENSE=	GPLv2

Added: head/x11/slim/files/patch-Ck.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/slim/files/patch-Ck.cpp	Mon Jun 22 14:56:36 2020	(r539811)
@@ -0,0 +1,11 @@
+--- Ck.cpp.orig	2020-02-15 19:48:07 UTC
++++ Ck.cpp
+@@ -91,7 +91,7 @@ namespace Ck {
+ 
+ 	vt = *((long *)return_value);
+ 
+-	std::snprintf(device, 32, "/dev/tty%ld", vt);
++	std::snprintf(device, 32, "/dev/ttyv%ld", vt-1);
+ 
+ 	if(return_value)
+ 	  XFree(return_value);



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