blob: 6daa04b5c684cd7cd951f2b7dafd2e041b15fbde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: clig
# Date created: 27 July 1998
# Whom: Bill Fumerola <billf@chc-chimes.com>
#
# $FreeBSD$
#
PORTNAME= clig
PORTVERSION= 1.9.11.1
CATEGORIES= devel tcl
MASTER_SITES= http://wsd.iitb.fhg.de/~geg/clighome/ \
http://www.carpetsmoker.net/distfiles/ \
http://www.xs4all.nl/~tournoij/distfiles/
MAINTAINER= carpetsmoker@xs4all.nl
COMMENT= Auto-generate an (argc, argv) processor, usage message, and manpage
NO_BUILD= yes
USE_TCL_BUILD= yes
USE_TCL= yes
MAKEFILE= makefile
WRKSRC= ${WRKDIR}/${PORTNAME}
MAN1= clig.1
MANN= clig_Commandline.n clig_Description.n clig_Double.n clig_Flag.n \
clig_Float.n clig_Int.n clig_Long.n clig_Name.n clig_Rest.n \
clig_String.n clig_Usage.n clig_Version.n clig_parseCmdline.n
post-patch:
@${RM} ${WRKSRC}/example/.cvsignore
@${FIND} -d ${WRKSRC} -type d -and -name CVS -exec ${RM} -r {} \;
@${REINPLACE_CMD} -e 's|prefix =/usr|prefix=${PREFIX}|; \
s|/usr/bin/tclsh|${TCLSH}|; \
s|/doc/|/share/doc/|; \
s|-$$(VERSION)||;' \
${WRKSRC}/makefile
@${REINPLACE_CMD} -e "s|tclsh|${TCLSH}|" \
${WRKSRC}/man/fixman
.include <bsd.port.mk>
|