View | Details | Raw Unified | Return to bug 206695
Collapse All | Expand All

(-)clig/Makefile (-3 / +2 lines)
Lines 5-19 Link Here
5
PORTVERSION=	1.9.11.1
5
PORTVERSION=	1.9.11.1
6
PORTREVISION=	3
6
PORTREVISION=	3
7
CATEGORIES=	devel tcl
7
CATEGORIES=	devel tcl
8
MASTER_SITES=	http://wsd.iitb.fhg.de/~geg/clighome/
8
MASTER_SITES=	http://BSDforge.com/projects/source/devel/clig/
9
9
10
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	portmaster@BSDforge.com
11
COMMENT=	Auto-generate an (argc, argv) processor, usage message, and manpage
11
COMMENT=	Auto-generate an (argc, argv) processor, usage message, and manpage
12
12
13
LICENSE=	GPLv2
13
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/COPYING-2.0
14
LICENSE_FILE=	${WRKSRC}/COPYING-2.0
15
15
16
BROKEN=		Does not fetch
17
USES=		shebangfix tcl tk
16
USES=		shebangfix tcl tk
18
SHEBANG_FILES=	tcl/*.tcl
17
SHEBANG_FILES=	tcl/*.tcl
19
tk_OLD_CMD=	/usr/bin/wish8.0
18
tk_OLD_CMD=	/usr/bin/wish8.0
(-)clig/pkg-descr (-3 / +3 lines)
Lines 1-10 Link Here
1
Clig generates C code to take apart the typical command-line arguments
1
Clig generates C code to take apart the typical command-line arguments
2
given to a C program.  Input to clig is a simple description file that
2
given to a C program. Input to clig is a simple description file that
3
specifies the name and number of options, their type (Flag, String,
3
specifies the name and number of options, their type (Flag, String,
4
Float, Int) and permissible range, and which options are mandatory.  From
4
Float, Int) and permissible range, and which options are mandatory. From
5
this, clig will generate self-contained C code to include in your program,
5
this, clig will generate self-contained C code to include in your program,
6
a usage message, and a manual page skeleton.
6
a usage message, and a manual page skeleton.
7
7
8
Clig does a lot more than getopt!
8
Clig does a lot more than getopt!
9
9
10
WWW: http://wsd.iitb.fhg.de/~geg/clighome/
10
WWW: http://BSDforge.com/projects/devel/clig

Return to bug 206695