mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tth
|
|
PORTVERSION= 3.89
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://hutchinson.belmont.ma.us/tth/tth-noncom/ \
|
|
http://redundancy.redundancy.org/mirror/
|
|
DISTNAME= tth_C
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= lx@FreeBSD.org
|
|
COMMENT= A TeX to HTML translator
|
|
|
|
RUN_DEPENDS= ppmtogif:${PORTSDIR}/graphics/netpbm
|
|
|
|
USE_GHOSTSCRIPT_RUN= yes
|
|
USE_TEX= latex
|
|
|
|
MAN1= tth.1
|
|
|
|
PLIST_FILES= bin/latex2gif bin/ps2gif bin/ps2png bin/tth bin/Xfonts.fix
|
|
PORTDOCS= license.txt tth_manual.html
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
cd ${WRKSRC}; ${CC} ${CFLAGS} tth.c -o tth -ll
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tth ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/latex2gif ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/ps2gif ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/ps2png ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Xfonts.fix ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/tth.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/license.txt ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/tth_manual.html ${DOCSDIR}
|
|
.endif
|
|
@${SED} -e "s,%%PREFIX%%,${PREFIX}," ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|