mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
32 lines
818 B
Makefile
32 lines
818 B
Makefile
# Created by: Andreas Braml
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= latex-tipa
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 4
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://www.braml.org/
|
|
DISTNAME= tipa-${PORTVERSION}
|
|
|
|
MAINTAINER= a.strich.b@web.de
|
|
COMMENT= Package which provides T3-encoded fonts to be used with LaTeX2e
|
|
|
|
USE_TEX= latex
|
|
NO_INSTALL_MANPAGES= yes
|
|
NO_BUILD= yes
|
|
LATEX_BIN= ${LOCALBASE}/bin/latex
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local/teTeX/share/texmf|${PREFIX}/share/texmf|' ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/texmf/doc/latex/tipa
|
|
@(cd ${WRKSRC}/doc; ${LATEX_BIN} tipaman; \
|
|
${LOCALBASE}/bin/bibtex tipaman; ${LATEX_BIN} tipaman; ${LATEX_BIN} tipaman)
|
|
${INSTALL_MAN} ${WRKSRC}/doc/tipaman.dvi ${PREFIX}/share/texmf/doc/latex/tipa
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|