svn commit: r482969 - head/sysutils/ssid

Tobias Kortkamp tobik at FreeBSD.org
Thu Oct 25 13:01:58 UTC 2018


Author: tobik
Date: Thu Oct 25 13:01:57 2018
New Revision: 482969
URL: https://svnweb.freebsd.org/changeset/ports/482969

Log:
  sysutils/ssid: Install as setsid too
  
  This is to avoid patching some of Kakoune's resource files.
  
  - Take maintainership
  - Update description/comment

Modified:
  head/sysutils/ssid/Makefile
  head/sysutils/ssid/pkg-descr

Modified: head/sysutils/ssid/Makefile
==============================================================================
--- head/sysutils/ssid/Makefile	Thu Oct 25 12:13:30 2018	(r482968)
+++ head/sysutils/ssid/Makefile	Thu Oct 25 13:01:57 2018	(r482969)
@@ -3,14 +3,20 @@
 
 PORTNAME=	ssid
 PORTVERSION=	0.1
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	http://dl.suckless.org/tools/
 
-MAINTAINER=	ports at FreeBSD.org
-COMMENT=	Simple setsid replacement
+MAINTAINER=	tobik at FreeBSD.org
+COMMENT=	Run a command in a new session
 
 LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
-PLIST_FILES=	bin/ssid
+PLIST_FILES=	bin/setsid bin/ssid
+
+post-install:
+	${LN} ${STAGEDIR}${PREFIX}/bin/ssid \
+		${STAGEDIR}${PREFIX}/bin/setsid
 
 .include <bsd.port.mk>

Modified: head/sysutils/ssid/pkg-descr
==============================================================================
--- head/sysutils/ssid/pkg-descr	Thu Oct 25 12:13:30 2018	(r482968)
+++ head/sysutils/ssid/pkg-descr	Thu Oct 25 13:01:57 2018	(r482969)
@@ -1,4 +1,4 @@
-Simple setsid replacement, nothing special about it
-except it being really simple.
+Small wrapper for the setsid(2) syscall to run a command in a new
+session.
 
 WWW: http://tools.suckless.org/ssid/


More information about the svn-ports-all mailing list