diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2012-06-26 17:00:24 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2012-06-26 17:00:24 +0000 |
commit | 2812ddbe36527133f221725db845ec0f088276bc (patch) | |
tree | 0744c3735fc254237e4bbed228476d1d5f6e33a2 | |
parent | cd23fc7401d837e66d7cbb0f65c9c81ab7961292 (diff) | |
download | ports-2812ddbe36527133f221725db845ec0f088276bc.tar.gz ports-2812ddbe36527133f221725db845ec0f088276bc.zip |
Notes
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/confctl/Makefile | 24 | ||||
-rw-r--r-- | sysutils/confctl/distinfo | 2 | ||||
-rw-r--r-- | sysutils/confctl/pkg-descr | 5 |
4 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index e424322336d1..7cea8061e610 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -125,6 +125,7 @@ SUBDIR += comconsole SUBDIR += comiccron SUBDIR += condor + SUBDIR += confctl SUBDIR += confman SUBDIR += conky SUBDIR += conky-awesome diff --git a/sysutils/confctl/Makefile b/sysutils/confctl/Makefile new file mode 100644 index 000000000000..d2ee5ed52948 --- /dev/null +++ b/sysutils/confctl/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: confctl +# Date created: 2012-06-18 +# Whom: Edward Tomasz Napierala <trasz@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= confctl +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://cloud.github.com/downloads/trasz/confctl/ \ + ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= trasz + +MAINTAINER= trasz@FreeBSD.org +COMMENT= Utility to parse and modify C-like configuration files + +LICENSE= BSD + +GNU_CONFIGURE= yes +MAN1= confctl.1 +PLIST_FILES= bin/confctl + +.include <bsd.port.mk> diff --git a/sysutils/confctl/distinfo b/sysutils/confctl/distinfo new file mode 100644 index 000000000000..39a7bd94f98f --- /dev/null +++ b/sysutils/confctl/distinfo @@ -0,0 +1,2 @@ +SHA256 (confctl-1.0.tar.gz) = 02a432e378f1210b7f712365c7470b429cca6dbf9f20ba3ef99fbeac2ec68f7f +SIZE (confctl-1.0.tar.gz) = 191462 diff --git a/sysutils/confctl/pkg-descr b/sysutils/confctl/pkg-descr new file mode 100644 index 000000000000..d2d8a9329674 --- /dev/null +++ b/sysutils/confctl/pkg-descr @@ -0,0 +1,5 @@ +Confctl is a sysctl-like tool to provide access to C-syntax configuration +files, such as /etc/hast.conf. It allows for retrieving, modifying, adding +and removing variables, while preserving comments and formatting. + +WWW: https://github.com/trasz/confctl/ |