View | Details | Raw Unified | Return to bug 239015 | Differences between
and this patch

Collapse All | Expand All

(-)alfio/Makefile (+26 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	alfio
4
PORTVERSION=	0.2
5
CATEGORIES=	sysutils
6
MASTER_SITES=	SF/${PORTNAME}/${PORTVERSION}
7
8
MAINTAINER=	phascolarctos@protonmail.ch
9
COMMENT=	Services manager to choose which services start at boot time
10
11
LICENSE=	BSD2CLAUSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
NO_BUILD=	yes
15
16
PLIST_FILES=	etc/rc.d/alfio \
17
		man/man8/alfio.8.gz
18
19
pre-install:
20
	${GZIP_CMD}	${WRKSRC}/alfio.8
21
22
do-install:
23
	${INSTALL_SCRIPT} ${WRKSRC}/alfio ${STAGEDIR}${PREFIX}/etc/rc.d
24
	${INSTALL_MAN}	${WRKSRC}/alfio.8.gz ${STAGEDIR}${PREFIX}/man/man8
25
26
.include <bsd.port.mk>
(-)alfio/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1562408517
2
SHA256 (alfio-0.2.tar.gz) = dcef5afdda5b7ad0a9c7e93d61a67ddf808f93ce713016eb193d58586f47af4a
3
SIZE (alfio-0.2.tar.gz) = 2862
(-)alfio/pkg-descr (+16 lines)
Line 0 Link Here
1
Alfio is a service that lets you choose which services start at boot
2
time by using profiles.
3
4
For example, if you have a laptop, you might be interested in creating
5
a profile for when you have access to an internet connection and one
6
for when you don't. You also might need less services when you boot
7
your laptop on battery, then decide to save power.
8
In some situation you might like to connect through DHCP while in
9
others you need a static IP.
10
Or you might want to test on your machine how different services
11
interact with each other without messing with your safe
12
configuration.
13
14
Read the man page (man alfio) to learn how to use it.
15
16
WWW: https://sourceforge.net/projects/alfio

Return to bug 239015