diff options
Diffstat (limited to 'textproc/cost/Makefile')
-rw-r--r-- | textproc/cost/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/textproc/cost/Makefile b/textproc/cost/Makefile new file mode 100644 index 000000000000..b5f590cf1b9b --- /dev/null +++ b/textproc/cost/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: costsh +# Date created: May 22, 2000 +# Whom: Allan Bowhill <kosmos@blarg.net> +# +# $FreeBSD$ +# + +PORTNAME= cost +PORTVERSION= 2.2p1 +CATEGORIES= textproc tk82 +MASTER_SITES= http://www.flightlab.com/~joe/cost/ \ + ftp://bowhill.vservers.com/pub/ + +MAINTAINER= kosmos@blarg.net + +LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 +BUILD_DEPENDS= ${WRKDIRPREFIXPORTSDIR}/lang/tcl82/work/tcl-8.2.3/src:${PORTSDIR}/lang/tcl82:patch + +WRKSRC= ${WRKDIR}/${DISTNAME}/src +HAS_CONFIGURE= YES +CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.2 \ + --with-docdir=${PREFIX}/share/doc/cost --with-charmaps + +do-install: + ${MKDIR} ${PREFIX}/lib/cost2.2 + ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/lib/*.tcl ${PREFIX}/lib/cost2.2 + ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/lib/*.spec ${PREFIX}/lib/cost2.2 + ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/lib/*.itcl ${PREFIX}/lib/cost2.2 + ${INSTALL_DATA} ${WRKSRC}/libcost2.2.so ${PREFIX}/lib/cost2.2 + ${INSTALL_PROGRAM} ${WRKSRC}/costsh ${PREFIX}/bin/costsh + +.if !defined(NOPORTDOCS) + @${ECHO} "===> Installing Cost documentation" + @${MKDIR} ${PREFIX}/share/doc/cost && ${CHMOD} a+rx ${PREFIX}/share/doc/cost + @cd ${WRKDIR}/${DISTNAME}/doc; && ${INSTALL_MAN} manual.html manual.ps rtflib.html simple.html \ + ${PREFIX}/share/doc/cost +.endif + +.include <bsd.port.mk> |