Move clo++ in devel, pointed out by ijliao and obrien.

This commit is contained in:
Kevin Lo 2002-06-25 15:21:32 +00:00
parent e5490f30ef
commit 754243546b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=61956
6 changed files with 46 additions and 0 deletions

View File

@ -87,6 +87,7 @@
SUBDIR += clanlib
SUBDIR += clig
SUBDIR += clint
SUBDIR += clo++
SUBDIR += codecrusader
SUBDIR += codemedic
SUBDIR += commoncpp

31
devel/clo++/Makefile Normal file
View File

@ -0,0 +1,31 @@
# New ports collection makefile for: clo++
# Date created: 30 January 2001
# Whom: Kevin Lo <kevlo@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= clo++
PORTVERSION= 0.5.0
CATEGORIES= devel
MASTER_SITES= http://pmade.org/~pjones/software/clo++/download/
MAINTAINER= kevlo@FreeBSD.org
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2
USE_GCC= 3.1
CONFGARGS= --prefix ${PREFIX}
CONFGARGS+= --xml2-config ${PREFIX}/bin/xml2-config
pre-configure:
@(cd ${WRKSRC} && ${ENV} CXX=${CXX} ${PERL5} configure.pl ${CONFGARGS})
post-install:
@${STRIP_CMD} ${PREFIX}/bin/clo++
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/clo++
@${INSTALL_DATA} ${WRKSRC}/docs/manual.txt ${PREFIX}/share/doc/clo++
.endif
.include <bsd.port.mk>

1
devel/clo++/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (clo++-0.5.0.tar.gz) = da5c988fc1e47f1e27259f33d7c319a1

1
devel/clo++/pkg-comment Normal file
View File

@ -0,0 +1 @@
Command line parser generator

9
devel/clo++/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
Clo++ is a command line option parser generator for C++.
It generates a C++ header file with a class that can parse your
command line and supports just about anything that you want to do
with your command line. It also generates usage information and
can handle subcommands that take their own options. clo++ is itself
written in C++ and uses a command line option parser that it
generated.
WWW: http://pmade.org/~pjones/software/clo++/

3
devel/clo++/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
bin/clo++
share/doc/clo++/manual.txt
@dirrm share/doc/clo++