Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Nov 2015 17:07:14 +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: r401010 - in head/sysutils: . daemonize
Message-ID:  <201511071707.tA7H7EXG012364@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Sat Nov  7 17:07:14 2015
New Revision: 401010
URL: https://svnweb.freebsd.org/changeset/ports/401010

Log:
  daemonize is a command-line utility that runs a command as a Unix daemon. See
  the accompanying man page for full details.
  
  WWW: https://github.com/bmc/daemonize
  
  PR:		203063
  Submitted by:	Neel Chauhan <neel@neelc.org>

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

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sat Nov  7 16:53:46 2015	(r401009)
+++ head/sysutils/Makefile	Sat Nov  7 17:07:14 2015	(r401010)
@@ -178,6 +178,7 @@
     SUBDIR += daa2iso
     SUBDIR += dae
     SUBDIR += daedalus
+    SUBDIR += daemonize
     SUBDIR += daemontools
     SUBDIR += daemontools-encore
     SUBDIR += dar

Added: head/sysutils/daemonize/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/daemonize/Makefile	Sat Nov  7 17:07:14 2015	(r401010)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	daemonize
+PORTVERSION=	1.7.6
+DISTVERSIONPREFIX=	release-
+CATEGORIES=	sysutils
+
+MAINTAINER=	neel@neelc.org
+COMMENT=	Tool to run a command as a daemon
+
+LICENSE=	BSD3CLAUSE
+
+GNU_CONFIGURE=	yes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	bmc
+
+PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+
+.include <bsd.port.mk>
+

Added: head/sysutils/daemonize/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/daemonize/distinfo	Sat Nov  7 17:07:14 2015	(r401010)
@@ -0,0 +1,2 @@
+SHA256 (bmc-daemonize-release-1.7.6_GH0.tar.gz) = 8d5717ae5e5bbd4cd6687abe1310f4d817468c67b851ce95dda73038ab40db1f
+SIZE (bmc-daemonize-release-1.7.6_GH0.tar.gz) = 65928

Added: head/sysutils/daemonize/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/daemonize/pkg-descr	Sat Nov  7 17:07:14 2015	(r401010)
@@ -0,0 +1,4 @@
+daemonize is a command-line utility that runs a command as a Unix daemon. See
+the accompanying man page for full details.
+
+WWW: https://github.com/bmc/daemonize



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