mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: texpower
|
|
# Date created: Dec 30, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= texpower
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= print
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMEPREFIX= latex-
|
|
DISTNAME= ${PORTNAME}-0-2
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Creating dynamic online presentations with LaTeX
|
|
|
|
BUILD_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX-base
|
|
RUN_DEPENDS= mktexlsr:${PORTSDIR}/print/teTeX-base
|
|
|
|
PLIST_SUB= TEXMFLOCAL=${TEXMFLOCAL} \
|
|
MKTEXLSR=${MKTEXLSR}
|
|
|
|
TEXMFLOCAL= share/texmf-local
|
|
MKTEXLSR= ${LOCALBASE}/bin/mktexlsr
|
|
DOCFILES= 00readme.txt 01install.txt \
|
|
manual.pdf powersem.pdf texpower.pdf
|
|
|
|
do-build:
|
|
@(cd ${BUILD_WRKSRC} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
@(cd ${BUILD_WRKSRC}/tpslifonts && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/${TEXMFLOCAL}/tex/latex/${PORTNAME}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} *.sty *.cls *.cfg \
|
|
${PREFIX}/${TEXMFLOCAL}/tex/latex/${PORTNAME}
|
|
${MKDIR} ${PREFIX}/${TEXMFLOCAL}/tex/latex/${PORTNAME}/tpslifonts
|
|
cd ${WRKSRC}/tpslifonts && ${INSTALL_DATA} *.sty \
|
|
${PREFIX}/${TEXMFLOCAL}/tex/latex/${PORTNAME}/tpslifonts
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCFILES} ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
${MKTEXLSR}
|
|
|
|
.include <bsd.port.mk>
|