Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Nov 2019 10:18:34 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r517119 - in head/sysutils: . alfio
Message-ID:  <201911091018.xA9AIYEB038596@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Sat Nov  9 10:18:34 2019
New Revision: 517119
URL: https://svnweb.freebsd.org/changeset/ports/517119

Log:
  New port --  sysutils/alfio: services manager to choose which service start at boot time
  
  Alfio is a service that lets you choose which services start at boot
  time by using profiles.
  
  For example, if you have a laptop, you might be interested in creating
  a profile for when you have access to an internet connection and one
  for when you don't. You also might need less services when you boot
  your laptop on battery, then decide to save power.
  In some situation you might like to connect through DHCP while in
  others you need a static IP.
  Or you might want to test on your machine how different services
  interact with each other without messing with your safe
  configuration.
  
  Read the man page (man alfio) to learn how to use it.
  
  WWW: https://sourceforge.net/projects/alfio
  
  PR:		239015
  Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch>

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

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sat Nov  9 10:15:56 2019	(r517118)
+++ head/sysutils/Makefile	Sat Nov  9 10:18:34 2019	(r517119)
@@ -27,6 +27,7 @@
     SUBDIR += ah-tty
     SUBDIR += aimage
     SUBDIR += aird
+    SUBDIR += alfio
     SUBDIR += am-utils
     SUBDIR += amazon-ssm-agent
     SUBDIR += amdmsrtweaker

Added: head/sysutils/alfio/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/alfio/Makefile	Sat Nov  9 10:18:34 2019	(r517119)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	alfio
+PORTVERSION=	0.2
+CATEGORIES=	sysutils
+MASTER_SITES=	SF/${PORTNAME}/${PORTVERSION}
+
+MAINTAINER=	salvadore@FreeBSD.org
+COMMENT=	Services manager to choose which services start at boot time
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+NO_BUILD=	yes
+
+PLIST_FILES=	etc/rc.d/alfio \
+		man/man8/alfio.8.gz
+
+pre-install:
+	${GZIP_CMD}	${WRKSRC}/alfio.8
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/alfio ${STAGEDIR}${PREFIX}/etc/rc.d
+	${INSTALL_MAN}	${WRKSRC}/alfio.8.gz ${STAGEDIR}${PREFIX}/man/man8
+
+.include <bsd.port.mk>

Added: head/sysutils/alfio/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/alfio/distinfo	Sat Nov  9 10:18:34 2019	(r517119)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1562408517
+SHA256 (alfio-0.2.tar.gz) = dcef5afdda5b7ad0a9c7e93d61a67ddf808f93ce713016eb193d58586f47af4a
+SIZE (alfio-0.2.tar.gz) = 2862

Added: head/sysutils/alfio/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/alfio/pkg-descr	Sat Nov  9 10:18:34 2019	(r517119)
@@ -0,0 +1,16 @@
+Alfio is a service that lets you choose which services start at boot
+time by using profiles.
+
+For example, if you have a laptop, you might be interested in creating
+a profile for when you have access to an internet connection and one
+for when you don't. You also might need less services when you boot
+your laptop on battery, then decide to save power.
+In some situation you might like to connect through DHCP while in
+others you need a static IP.
+Or you might want to test on your machine how different services
+interact with each other without messing with your safe
+configuration.
+
+Read the man page (man alfio) to learn how to use it.
+
+WWW: https://sourceforge.net/projects/alfio



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