mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
bdd5623bac
- search dependecy in LOCALBASE, not in PREFIX - fix package with NOPORTDOCS - use DOCSDIR - make portlint happy
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# 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/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= SGML/XML application programming tool
|
|
|
|
LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --with-tcl=${LOCALBASE}/lib/tcl8.2 \
|
|
--with-docdir=${PREFIX}/share/doc/cost --with-charmaps
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" TCL_INCLUDE_SPEC="${LOCALBASE}/include/tcl8.2"
|
|
|
|
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} ${DOCSDIR} && ${CHMOD} a+rx ${DOCSDIR}
|
|
@cd ${WRKDIR}/${DISTNAME}/doc && \
|
|
${INSTALL_MAN} manual.html manual.ps rtflib.html simple.html \
|
|
${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|