mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
d88566d716
Pure TCL code for command line options parsing. PR: 10661 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
30 lines
620 B
Makefile
30 lines
620 B
Makefile
# New ports collection makefile for: tcl-getopt
|
|
# Version required: 1.0
|
|
# Date created: Mar 18, 1999
|
|
# Whom: mi
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= tclGetOpts
|
|
PKGNAME= tclGetOpts-1.0
|
|
CATEGORIES= devel tcl
|
|
MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/sorted/devel/
|
|
|
|
MAINTAINER= mi@aldan.algebra.com
|
|
|
|
NO_BUILD= YES
|
|
|
|
MANN= getopt.n typedopts.n
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/lib/foxGetOpt
|
|
${INSTALL_SCRIPT} \
|
|
${FILESDIR}/pkgIndex.tcl \
|
|
${WRKSRC}/foxTypedOpts.tcl \
|
|
${WRKSRC}/foxGetOpt.tcl ${PREFIX}/lib/foxGetOpt/
|
|
${INSTALL_MAN} ${WRKSRC}/getopt.n ${WRKSRC}/typedopts.n \
|
|
${PREFIX}/man/mann/
|
|
|
|
.include <bsd.port.mk>
|