diff options
author | culot <culot@FreeBSD.org> | 2012-01-06 21:34:21 +0800 |
---|---|---|
committer | culot <culot@FreeBSD.org> | 2012-01-06 21:34:21 +0800 |
commit | 91be4d4ce782d7e2e6132fdb7c70b68701f3d8df (patch) | |
tree | 2ba3a918fbb8ff03d48f63656052c00c1f1b4ddb /sysutils | |
parent | 2e15836edd37796bd6afe774b60f495a87678c0e (diff) | |
download | freebsd-ports-gnome-91be4d4ce782d7e2e6132fdb7c70b68701f3d8df.tar.gz freebsd-ports-gnome-91be4d4ce782d7e2e6132fdb7c70b68701f3d8df.tar.zst freebsd-ports-gnome-91be4d4ce782d7e2e6132fdb7c70b68701f3d8df.zip |
Host-setup is a dialog(1) (or Xdialog(1)) based utility for configuring your
system. It can activate changes to the system in a safe and effective manner.
Functionality includes (but may not be limited to):
- Configure Time Zone
- Configure Hostname/Domain
- Configure Network Interfaces
- Confgure Default Router/Gateway
- Configure DNS nameservers
WWW: http://druidbsd.sourceforge.net/
PR: ports/163857
Submitted by: Devin Teske <dteske@vicor.com>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/host-setup/Makefile | 25 | ||||
-rw-r--r-- | sysutils/host-setup/distinfo | 2 | ||||
-rw-r--r-- | sysutils/host-setup/pkg-descr | 11 |
4 files changed, 39 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index b0388836d32f..06cf6c5c20a1 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -358,6 +358,7 @@ SUBDIR += hidesvn SUBDIR += highlnk SUBDIR += hilite + SUBDIR += host-setup SUBDIR += hourglass SUBDIR += hoz SUBDIR += hpacucli diff --git a/sysutils/host-setup/Makefile b/sysutils/host-setup/Makefile new file mode 100644 index 000000000000..295e0a98e775 --- /dev/null +++ b/sysutils/host-setup/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: host-setup +# Date created: 2012-01-05 +# Whom: Devin Teske <dteske@vicor.com> +# +# $FreeBSD$ +# + +PORTNAME= host-setup +PORTVERSION= 4.0.1 +CATEGORIES= sysutils +MASTER_SITES= http://druidbsd.sourceforge.net/download/ + +MAINTAINER= dteske@vicor.com +COMMENT= System configuration setup/management utility + +NO_BUILD= yes + +PLIST_FILES= sbin/${PORTNAME} +MAN1= ${PORTNAME}.1 + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin/ + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1/ + +.include <bsd.port.mk> diff --git a/sysutils/host-setup/distinfo b/sysutils/host-setup/distinfo new file mode 100644 index 000000000000..cce7cff51f48 --- /dev/null +++ b/sysutils/host-setup/distinfo @@ -0,0 +1,2 @@ +SHA256 (host-setup-4.0.1.tar.gz) = 8ff11e037c4637eb92c5b9655db31db09432cabfedd5226ca2b69139ac2f7038 +SIZE (host-setup-4.0.1.tar.gz) = 28584 diff --git a/sysutils/host-setup/pkg-descr b/sysutils/host-setup/pkg-descr new file mode 100644 index 000000000000..45d5c56c1269 --- /dev/null +++ b/sysutils/host-setup/pkg-descr @@ -0,0 +1,11 @@ +Host-setup is a dialog(1) (or Xdialog(1)) based utility for configuring your +system. Built on the same safety and reliability of sysrc(8) to manage changes +to rc.conf(5), host-setup(1) can also activate changes to the system in a safe +and effective manner. Functionality includes (but may not be limited to): + - Configure Time Zone + - Configure Hostname/Domain + - Configure Network Interfaces + - Confgure Default Router/Gateway + - Configure DNS nameservers + +WWW: http://druidbsd.sourceforge.net/ |